* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #000000;
    --text: #ffffff;
    --card-bg: #111111;
    --card-border: #ffffff;
    --shadow-hard: 6px 6px 0 #ffffff;
    --shadow-sm: 3px 3px 0 #ffffff;
    --border-thick: 2px solid #ffffff;
    --transition: all 0.12s ease;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Courier New", Courier, monospace;
    padding: 2rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}

h1,
h2,
.name,
.bio {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.profile {
    text-align: center;
    margin-bottom: 2.5rem;
}

.profile-pic-frame {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border: var(--border-thick);
    background: #ffffff;
    box-shadow: var(--shadow-hard);
    transition: var(--transition);
}
.profile-pic-frame:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #ffffff;
}
.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.2);
}

.name {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.bio {
    font-size: 0.9rem;
    color: #cccccc;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 500;
    border-left: 3px solid #ffffff;
    padding-left: 0.75rem;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0 2rem;
}

.link-btn {
    background: #111111;
    border: var(--border-thick);
    box-shadow: var(--shadow-sm);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
}

.link-btn i {
    font-size: 1.6rem;
    width: 2rem;
    text-align: center;
    color: #ffffff;
    transition: var(--transition);
}

.link-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #ffffff;
    background: #1a1a1a;
}

.link-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #ffffff;
}

.footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    border-top: 1px solid #333333;
    padding-top: 1.2rem;
    color: #888888;
}

.music-player {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 300px;
    background: #0a0a0a;
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    padding: 1rem;
    z-index: 1000;
    transition: transform 0.2s ease;
}

.music-player.minimized {
    transform: translateY(calc(100% - 56px));
}

.player-header {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.8rem;
}

.album-art-sm {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border: 2px solid #ffffff;
    background: #222;
    filter: grayscale(100%);
}

.song-meta {
    flex: 1;
}

.song-title {
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.2;
    color: #ffffff;
}
.artist-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #aaaaaa;
}

.lyrics-box {
    background: #111111;
    border: 1px solid #ffffff;
    padding: 0.5rem;
    margin: 0.7rem 0;
    max-height: 70px;
    overflow-y: auto;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.3;
    white-space: pre-line;
    color: #dddddd;
}
.current-lyric {
    color: #ffffff;
    font-weight: 700;
}

.controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.3rem;
}
.play-pause-btn {
    background: #ffffff;
    border: none;
    color: #000000;
    width: 34px;
    height: 34px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.1s linear;
    font-weight: bold;
}
.play-pause-btn:hover {
    background: #cccccc;
    transform: scale(0.96);
}
.progress-area {
    flex: 1;
}
.progress-bg {
    background: #333333;
    height: 6px;
    border: 1px solid #ffffff;
    cursor: pointer;
}
.progress-fill {
    background: #ffffff;
    width: 0%;
    height: 100%;
}
.time-stamp {
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    margin-top: 0.2rem;
    color: #aaaaaa;
}
.toggle-player {
    position: absolute;
    top: -32px;
    right: 0;
    background: #ffffff;
    border: 2px solid #ffffff;
    color: #000000;
    width: 32px;
    height: 32px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.1s;
}
.toggle-player:hover {
    background: #cccccc;
}

.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition:
        visibility 0.2s,
        opacity 0.2s;
}
.welcome-modal.visible {
    visibility: visible;
    opacity: 1;
}
.welcome-card {
    background: #000000;
    border: 3px solid #ffffff;
    box-shadow: 12px 12px 0 #ffffff;
    padding: 2rem 1.8rem;
    max-width: 380px;
    width: 85%;
    text-align: center;
}
.welcome-card i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.welcome-card h2 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
    color: #ffffff;
}
.welcome-card p {
    color: #cccccc;
}
.welcome-card button {
    background: #ffffff;
    border: none;
    color: #000000;
    font-family: "Courier New", Courier, monospace;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.1s;
}
.welcome-card button:hover {
    background: #cccccc;
    transform: scale(0.98);
}

@media (max-width: 580px) {
    body {
        padding: 1.2rem;
    }
    .music-player {
        width: 270px;
        right: 0.8rem;
        bottom: 0.8rem;
    }
    .link-btn {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    .profile-pic-frame {
        width: 100px;
        height: 100px;
    }
    .name {
        font-size: 1.7rem;
    }
}

@media (max-width: 460px) {
    .music-player {
        width: calc(100% - 1.2rem);
        right: 0.6rem;
        left: 0.6rem;
        bottom: 0.6rem;
    }
}