/* ═══════════════════════════════════════════════════════════════════════════
   MYSTICAL LIGHT — Minimalist Theme
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Colors */
    --bg: #ffffff;
    --text: #1a1a1a;
    --text-muted: #666666;

    /* Accent Gradient (same as main) */
    --accent-1: #a855f7;
    --accent-2: #6366f1;
    --accent-3: #22d3ee;
    --accent-4: #f472b6;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

/* Username - Keep gradient style */
.hero {
    margin-bottom: 8px;
    padding: 0 20px;
}

.username {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.02em;
    padding-right: 0.15em;
    background: linear-gradient(135deg,
            var(--accent-1) 0%,
            var(--accent-2) 25%,
            var(--accent-3) 50%,
            var(--accent-4) 75%,
            var(--accent-1) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 8s ease infinite;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.2));
}

@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.tagline {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 4px;
}

.tagline::before {
    content: '"';
}

.tagline::after {
    content: '"';
}

/* About */
.about {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text);
    letter-spacing: 0.02em;
}

/* Section Titles */
.section-title {
    display: block;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* Games */
.games {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.game {
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
    position: relative;
}

.game::after {
    content: attr(data-id);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    color: var(--accent-1);
}

.game:hover {
    color: transparent;
}

.game:hover::after {
    opacity: 1;
    visibility: visible;
}

.game.copied {
    color: transparent;
}

.game.copied::after {
    content: '[Copied!]';
    color: var(--accent-3);
    opacity: 1;
    visibility: visible;
}

/* Socials & Playlists */
.socials,
.playlists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.link {
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    position: relative;
}

.link[data-id]::after {
    content: attr(data-id);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    color: var(--accent-1);
}

.link[data-id]:hover {
    color: transparent;
    text-decoration: none;
}

.link[data-id]:hover::after {
    opacity: 1;
    visibility: visible;
}

.link:not([data-id]):hover {
    color: var(--accent-1);
}

.link.copied,
.link.notified {
    color: transparent !important;
    text-decoration: none;
}

.link.copied::after {
    content: 'copied!';
    color: var(--accent-3);
    opacity: 1;
    visibility: visible;
}

.link.notified::after {
    content: 'soon!';
    color: var(--accent-3);
    opacity: 1;
    visibility: visible;
}

/* Footer */
.footer {
    margin-top: 20px;
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 40px 16px;
    }

    .games {
        flex-direction: column;
        gap: 12px;
    }

    .socials,
    .playlists {
        flex-direction: column;
        gap: 12px;
    }
}