:root {
    --bg-color: #121212;
    --font-family: 'Poppins', Helvetica, Arial, sans-serif;
    --card-bg: rgba(255, 255, 255, 0.1);
    --text-color: #ffffff;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    min-height: 100vh;
    background-color: var(--bg-color);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

/* Big Animated Lyrics Overlay */
/* Big Animated Lyrics Overlay */
.lyrics-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    
    /* Solid white for maximum visibility */
    color: #ffffff;
    /* Extra thick, dark shadow to make it pop over ANY background/button */
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.8);
    
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    
    /* Bring to the VERY front, over all the buttons! */
    z-index: 9999;
    
    /* Allows users to still tap buttons straight through the lyrics */
    pointer-events: none;
}

.lyric-pop {
    animation: lyricPop 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes lyricPop {
    0% { 
        transform: translate(-50%, -50%) scale(0.8); 
        opacity: 0; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 1; 
    }
    100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 1; /* Stays solid and highly visible */
    }
                                               
}

.container {
    width: 100%;
    max-width: 680px;
    padding: 40px 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-section { text-align: center; margin-bottom: 20px; }

.pfp-container img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.music-playing .pfp-container img {
    animation: pulseAvatar 2s infinite;
}

@keyframes pulseAvatar {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

h1 { font-size: 1.5rem; margin-bottom: 5px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
p { font-size: 1rem; opacity: 0.9; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

/* Music Player */
.music-player {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    width: fit-content;
}

.music-player.hidden { display: none; }

#play-btn {
    background: white;
    color: black;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.track-info { display: flex; flex-direction: column; }
.song-title { font-weight: 700; font-size: 0.9rem; }
.artist-name { font-size: 0.75rem; opacity: 0.8; }

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.social-icons a:hover { transform: scale(1.2); }

/* Links Container */
.links-container { width: 100%; display: flex; flex-direction: column; gap: 15px; }

.link-btn {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    color: white;
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.link-btn:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* Standard List Style */
.link-btn.standard .link-icon { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; margin-right: 15px; }
.link-btn.standard span { font-weight: 600; flex-grow: 1; text-align: center; padding-right: 60px; }

/* Featured "Fanned Cards" Style */
.link-btn.featured { flex-direction: column; padding: 25px 15px; }
.fanned-container { position: relative; width: 100%; height: 110px; display: flex; justify-content: center; align-items: center; margin-bottom: 15px; }

.fan-card {
    position: absolute;
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-1 { transform: translateX(-35px) rotate(-15deg); z-index: 1; }
.card-2 { transform: translateX(0) rotate(0deg); z-index: 2; }
.card-3 { transform: translateX(35px) rotate(15deg); z-index: 1; }

.link-btn.featured:hover .card-1 { transform: translateX(-65px) rotate(-25deg) scale(1.1); }
.link-btn.featured:hover .card-2 { transform: translateX(0) rotate(0deg) scale(1.2); z-index: 5; }
.link-btn.featured:hover .card-3 { transform: translateX(65px) rotate(25deg) scale(1.1); }

.link-btn.featured span { font-weight: 700; font-size: 1.1rem; }

/* Effects defined in Config */
.effect-glow:hover { box-shadow: 0 0 15px rgba(255,255,255,0.6); border-color: white; }
.effect-pulse { animation: mildPulse 2s infinite; }
@keyframes mildPulse { 0% { transform: scale(1); } 50% { transform: scale(1.02); } 100% { transform: scale(1); } }

.site-footer {
    width: 100%;
    text-align: center;
    padding: 40px 0 20px 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    opacity: 0.7;
    z-index: 1;
}
