:root {
    --bg-deep: #0F172A;
    --bg-darker: #0A0F1C;
    --bg-surface: rgba(30, 41, 59, 0.8);
    --bg-glass: rgba(30, 41, 59, 0.4);
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #64748B;
    --accent-gold: #EAB308;
    --accent-gold-dim: rgba(234, 179, 8, 0.15);
    --goelian: #8B5CF6;
    --goelian-dim: rgba(139, 92, 246, 0.15);
    --goelian-glow: rgba(139, 92, 246, 0.4);
    --calixtia: #38BDF8;
    --calixtia-dim: rgba(56, 189, 248, 0.15);
    --calixtia-glow: rgba(56, 189, 248, 0.4);
    --gradient-warm: linear-gradient(135deg, #EAB308 0%, #F59E0B 100%);
    --blur-glass: blur(20px);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

.player-controls .play-pause {
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-controls .play-pause svg {
    width: 20px;
    height: 20px;
    fill: var(--bg-deep);
    display: block;
    margin-left: 2px;
    /* Optical centering */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', Georgia, serif;
    background: var(--bg-deep);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}

.diagnostic-screen {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow-y: auto;
}

.diagnostic-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.diagnostic-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 80% 70%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.diagnostic-content {
    position: relative;
    max-width: 750px;
    margin: auto;
}

.diagnostic-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.2s forwards;
}

.diagnostic-creators {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.35s forwards;
}

.diagnostic-creators .goelian {
    color: var(--goelian);
}

.diagnostic-creators .calixtia {
    color: var(--calixtia);
}

.diagnostic-question {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

.diagnostic-subtitle {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.65s forwards;
}

.diagnostic-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

.diagnostic-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 120px;
    padding: 1.25rem 0.75rem;
    background: var(--bg-glass);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(248, 250, 252, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
}

.diagnostic-btn:hover {
    background: var(--bg-surface);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(234, 179, 8, 0.15);
}

.diagnostic-btn .icon {
    font-size: 1.6rem;
}

.diagnostic-btn .label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.diagnostic-btn .hint {
    font-size: 0.70rem;
    color: var(--text-muted);
    font-style: italic;
}

.skip-diagnostic {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.skip-diagnostic:hover {
    color: var(--text-secondary);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
    transition: background 0.4s;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: var(--blur-glass);
}

.logo-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.logo-tagline .goelian {
    color: var(--goelian);
}

.logo-tagline .calixtia {
    color: var(--calixtia);
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s;
}

nav a:hover {
    color: var(--text-primary);
}

nav a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 75% 70%, rgba(56, 189, 248, 0.08) 0%, transparent 50%), linear-gradient(to bottom, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 850px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: var(--accent-gold-dim);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.35s forwards;
}

.hero-creators {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-creators .goelian {
    color: var(--goelian);
    font-weight: 500;
}

.hero-creators .calixtia {
    color: var(--calixtia);
    font-weight: 500;
}

.hero-tagline {
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.65s forwards;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: var(--gradient-warm);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 0 40px rgba(234, 179, 8, 0.15);
    opacity: 0;
    animation: fadeUp 1s ease 0.95s forwards;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 60px rgba(234, 179, 8, 0.25);
}

.cta-primary svg {
    width: 14px;
    height: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filters-section {
    padding: 4.5rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(10, 15, 28, 0.5));
}

.section-header {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.3rem, 4vw, 1.9rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.filters-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    max-width: 850px;
    margin: 0 auto;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--bg-glass);
    backdrop-filter: var(--blur-glass);
    padding: 0.65rem 1.2rem;
    border: 1px solid rgba(248, 250, 252, 0.08);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none;
}

.filter-pill:hover {
    background: var(--bg-surface);
    border-color: rgba(234, 179, 8, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.filter-pill.active {
    background: var(--accent-gold-dim);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.creator-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(248, 250, 252, 0.05);
    flex-wrap: wrap;
}

.creator-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s;
    border: 1px solid transparent;
    background: transparent;
}

.creator-filter.all {
    color: var(--text-muted);
    border-color: rgba(248, 250, 252, 0.1);
}

.creator-filter.all:hover,
.creator-filter.all.active {
    color: var(--text-primary);
    border-color: rgba(248, 250, 252, 0.3);
    background: rgba(248, 250, 252, 0.05);
}

.creator-filter.goelian {
    color: var(--goelian);
    border-color: rgba(139, 92, 246, 0.3);
}

.creator-filter.goelian:hover,
.creator-filter.goelian.active {
    background: var(--goelian-dim);
    border-color: var(--goelian);
    box-shadow: 0 0 20px var(--goelian-glow);
}

.creator-filter.calixtia {
    color: var(--calixtia);
    border-color: rgba(56, 189, 248, 0.3);
}

.creator-filter.calixtia:hover,
.creator-filter.calixtia.active {
    background: var(--calixtia-dim);
    border-color: var(--calixtia);
    box-shadow: 0 0 20px var(--calixtia-glow);
}

.creator-filter svg {
    width: 14px;
    height: 14px;
}

.tracks-section {
    padding: 2rem 2rem 9rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.track-card {
    position: relative;
    background: var(--bg-glass);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(248, 250, 252, 0.06);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s;
}

.track-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.track-card[data-creator="goelian"]:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--goelian-glow);
}

.track-card[data-creator="calixtia"]:hover {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--calixtia-glow);
}

.track-card[data-creator="eclipse"]:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--goelian-glow), 0 0 30px var(--calixtia-glow);
}

.track-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-deep);
}

.track-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 40%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
    transform-origin: center;
    position: relative;
    z-index: 1;
}

.track-badges {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    right: 0.8rem;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.emotion-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
}

.creator-badge {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.creator-badge.goelian {
    background: rgba(139, 92, 246, 0.3);
    border: 1px solid var(--goelian);
}

.creator-badge.calixtia {
    background: rgba(56, 189, 248, 0.3);
    border: 1px solid var(--calixtia);
}

.creator-badge.eclipse {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(56, 189, 248, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.creator-badge svg {
    width: 12px;
    height: 12px;
}

.creator-badge.goelian svg {
    fill: var(--goelian);
}

.creator-badge.calixtia svg {
    fill: var(--calixtia);
}

.creator-badge.eclipse svg {
    fill: url(#eclipseGradient);
}

.play-btn {
    position: absolute;
    bottom: 0.9rem;
    right: 0.9rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-warm);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
}

.play-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--bg-deep);
    margin-left: 2px;
}



.play-btn:hover {
    transform: scale(1.1) !important;
}

.track-info {
    padding: 1rem 1.25rem 1.25rem;
}

.track-creator-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.track-creator-name.goelian {
    color: var(--goelian);
}

.track-creator-name.calixtia {
    color: var(--calixtia);
}

.track-creator-name.eclipse {
    background: linear-gradient(135deg, var(--goelian), var(--calixtia));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.track-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.track-tagline {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, rgba(10, 15, 28, 0.8), var(--bg-deep));
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(56, 189, 248, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.about-tagline {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
}

.about-tagline .goelian {
    color: var(--goelian);
}

.about-tagline .calixtia {
    color: var(--calixtia);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.creator-card {
    padding: 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(248, 250, 252, 0.06);
    backdrop-filter: var(--blur-glass);
    transition: all 0.4s;
}

.creator-card.goelian {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(30, 41, 59, 0.4) 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

.creator-card.calixtia {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(30, 41, 59, 0.4) 100%);
    border-color: rgba(56, 189, 248, 0.2);
}

.creator-card:hover {
    transform: translateY(-4px);
}

.creator-card.goelian:hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.creator-card.calixtia:hover {
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15);
}

.creator-card-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.creator-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.creator-avatar.goelian {
    background: var(--goelian-dim);
    border: 1px solid var(--goelian);
}

.creator-avatar.calixtia {
    background: var(--calixtia-dim);
    border: 1px solid var(--calixtia);
}

.creator-avatar svg {
    width: 24px;
    height: 24px;
}

.creator-avatar.goelian svg {
    fill: var(--goelian);
}

.creator-avatar.calixtia svg {
    fill: var(--calixtia);
}

.creator-card-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.creator-card.goelian h3 {
    color: var(--goelian);
}

.creator-card.calixtia h3 {
    color: var(--calixtia);
}

.creator-card-header span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.creator-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.creator-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.creator-trait {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.creator-card.goelian .creator-trait {
    color: var(--goelian);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.creator-card.calixtia .creator-trait {
    color: var(--calixtia);
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.about-manifesto {
    text-align: center;
    padding: 2rem;
    background: var(--bg-glass);
    border-radius: 18px;
    border: 1px solid rgba(248, 250, 252, 0.06);
}

.about-manifesto p {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 650px;
    margin: 0 auto;
}

.about-manifesto .highlight {
    color: var(--accent-gold);
    font-weight: 500;
}

.sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 28, 0.92);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(248, 250, 252, 0.08);
    padding: 0.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transform: translateY(100%);
    transition: transform 0.5s;
}

.sticky-player.visible {
    transform: translateY(0);
}

.player-track-info {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 180px;
}

.player-cover {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: cover;
}

.player-meta h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.player-meta span {
    font-size: 0.7rem;
}

.player-meta span.goelian {
    color: var(--goelian);
}

.player-meta span.calixtia {
    color: var(--calixtia);
}

.player-meta span.eclipse {
    background: linear-gradient(135deg, var(--goelian), var(--calixtia));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.player-controls button {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.4rem;
    transition: color 0.3s;
    display: flex;
}

.player-controls button:hover {
    color: var(--text-primary);
}

.player-controls button svg {
    width: 16px;
    height: 16px;
}

.player-controls .play-pause {
    width: 40px;
    height: 40px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-controls .play-pause svg {
    width: 18px;
    height: 18px;
    fill: var(--bg-deep);
    margin-left: 3px;
}

.player-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.player-progress span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    color: var(--text-muted);
    min-width: 32px;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(248, 250, 252, 0.1);
    border-radius: 2px;
    cursor: pointer;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: var(--gradient-warm);
    border-radius: 2px;
}

.btn-notice {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent-gold);
    background: var(--accent-gold-dim);
    border: 1px solid var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-notice:hover {
    background: var(--accent-gold);
    color: var(--bg-deep);
}

.btn-notice svg {
    width: 12px;
    height: 12px;
}

.side-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.side-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 92vw;
    height: 100vh;
    background: var(--bg-darker);
    border-left: 1px solid rgba(248, 250, 252, 0.08);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.5s;
    overflow-y: auto;
}

.side-panel.active {
    transform: translateX(0);
}

.side-panel-header {
    position: sticky;
    top: 0;
    background: var(--bg-darker);
    padding: 1.5rem;
    z-index: 10;
    border-bottom: 1px solid rgba(248, 250, 252, 0.05);
}

.btn-close-panel {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid rgba(248, 250, 252, 0.1);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.btn-close-panel:hover {
    background: var(--bg-surface);
    color: var(--text-primary);
}

.prescription-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: var(--accent-gold-dim);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
}

.panel-track-header {
    display: flex;
    gap: 0.9rem;
}

.panel-cover {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.panel-track-meta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.panel-track-meta .creator-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
}

.panel-track-meta .creator-tag.goelian {
    color: var(--goelian);
}

.panel-track-meta .creator-tag.calixtia {
    color: var(--calixtia);
}

.panel-track-meta .creator-tag.eclipse {
    background: linear-gradient(135deg, var(--goelian), var(--calixtia));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.panel-track-meta .emotion-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.side-panel-content {
    padding: 1rem 1.5rem 2rem;
}

.prescription-section {
    margin-bottom: 1.25rem;
    padding: 1.1rem;
    background: var(--bg-glass);
    border-radius: 12px;
}

.prescription-section h3 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.7rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(234, 179, 8, 0.2);
}

.prescription-section h3 svg {
    width: 12px;
    height: 12px;
    stroke: var(--accent-gold);
}

.prescription-section p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-secondary);
    white-space: pre-wrap;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 0.7rem 0.9rem;
}

.warning-box p {
    font-size: 0.75rem;
    color: #FCA5A5;
}

.warning-box strong {
    color: #F87171;
}

footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(248, 250, 252, 0.05);
    padding: 3.5rem 2rem 7rem;
    text-align: center;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand .logo {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    display: block;
}

.footer-brand .tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.footer-brand .tagline .goelian {
    color: var(--goelian);
}

.footer-brand .tagline .calixtia {
    color: var(--calixtia);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid rgba(248, 250, 252, 0.08);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.copyright {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Contact Section & Form */
.contact-section {
    padding: 3rem 2rem 4rem;
    background: var(--bg-darker);
    border-top: 1px solid rgba(248, 250, 252, 0.05);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.contact-form input,
.contact-form textarea {
    background: var(--bg-glass);
    border: 1px solid rgba(248, 250, 252, 0.1);
    color: var(--text-primary);
    padding: 0.8rem;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.contact-form button {
    margin-top: 0.5rem;
    align-self: flex-start;
}

/* Honeypot Styles */
.altEmail_container {
    display: none;
    /* Also reinforced by inline style in JS, but good to have here */
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.25rem;
    }

    nav {
        display: none;
    }

    .diagnostic-btn {
        width: 47%;
        flex-grow: 1;
        padding: 1.5rem 0.5rem;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .creators-grid {
        grid-template-columns: 1fr;
    }

    .sticky-player {
        flex-wrap: wrap;
        gap: 0.6rem;
        padding: 0.6rem 1rem;
    }

    .player-progress {
        order: 3;
        width: 100%;
    }

    .btn-notice {
        display: none;
    }

    .side-panel {
        /* width: 100%; removed to restore original sizing behavior (480px or 92vw) */
        /* max-width: 100%; */
        padding-bottom: 120px;
        /* Ensure space for sticky player and full scroll */
        z-index: 2100;
        /* Higher than diagnostic */
    }

    .skip-diagnostic {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 3rem;
        width: 100%;
        text-align: center;
        /* Prevent overlapping with absolute buttons */
    }
}

/* Social Icons in Navbar */
.social-icon::after {
    display: none !important;
}

.social-icon {
    padding: 0.4rem;
    opacity: 1;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Nav Socials Container */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-socials {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        gap: 0.6rem;
    }
}