:root {
    --accent-blue: #00B4DB;
    --accent-cyan: #0083B0;
    --accent-purple: #8E2DE2;
    --accent-pink: #4A00E0;
    --temple-glow: rgba(255, 152, 0, 0.4);
    --shield-glow: rgba(0, 180, 219, 0.4);
    --aristote-glow: rgba(142, 45, 226, 0.4);
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1a1a1a;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --gold-glow: rgba(255, 215, 0, 0.4);
    --bg-dark: #050505;
    --green-spotify: #1DB954;
    --orange-soundcloud: #FF5500;
    --accent-purple: #9B59B6;
    --accent-pink: #E91E63;
    --accent-cyan: #00BCD4;
    --accent-blue: #3498DB;
    --neon-green: #39FF14;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-primary: 'Outfit', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
    --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Starry Background */
#starry-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: transparent;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: transform 0.2s ease-out;
}

/* Typewriter Cursor */
.typewriter::after {
    content: '|';
    animation: blink 0.7s infinite;
    margin-left: 2px;
    color: var(--gold);
}

.typewriter.done::after {
    display: none;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000 !important;
    border-bottom: none;
    border-top: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    filter: none;
    opacity: 1;
}

#navbar.scrolled {
    background: #000000 !important;
    box-shadow: none;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 101px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 769px) {
    .nav-inner {
        height: 151px;
        overflow: visible;
    }
    .nav-logo {
        overflow: visible;
        flex-shrink: 0;
    }
    .nav-logo-video {
        height: 152px !important;
        width: 152px !important;
        min-height: 152px;
        min-width: 152px;
        border-radius: 18px;
        flex-shrink: 0;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    border-radius: 12px;
}

.nav-logo-video {
    height: 90px;
    width: 90px;
    border-radius: 14px;
    object-fit: cover;
    background: #000;
    transform: translateZ(0) translateX(-12px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    image-rendering: auto;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-top: 0;
}

.brand-accent {
    color: var(--gold);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.lang-toggle:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}

.lang-option {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 16px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    cursor: pointer;
    user-select: none;
    letter-spacing: 0.5px;
}

.lang-option.active {
    color: #0A0A0A;
}

.lang-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: var(--gold);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.lang-toggle[data-active="en"] .lang-slider {
    left: calc(50%);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 2000;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
    width: 0%;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Parallax Tilt */
.parallax-target {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-cta::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    transition: none;
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -150%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   HERO
   ============================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

@media (min-width: 769px) {
    #hero {
        padding-top: 175px;
        align-items: flex-start;
    }
}

/* ============================================
   SCROLLING BACKGROUNDS (5 layers)
   ============================================ */
.page-backgrounds {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    pointer-events: none;
}

.page-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.page-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.84) 40%,
            rgba(10, 10, 10, 0.78) 70%,
            rgba(10, 10, 10, 0.90) 100%);
}

.page-bg.active {
    opacity: 1;
}

.page-bg-1 {
    background-image: url('images/hero_bg_test1.png');
}

.page-bg-2 {
    background-image: url('images/hero_bg_test2.png');
}

.page-bg-3 {
    background-image: url('images/hero_bg_test3.png');
}

.page-bg-4 {
    background-image: url('images/hero_bg_test4.png');
}

.page-bg-5 {
    background-image: url('images/hero_bg_test5.png');
}

.page-bg-6 {
    background-image: url('images/hero_bg_test6.png');
}

/* Mobile: lighter WebP backgrounds */
@media (max-width: 768px) {
    .page-bg-1 { background-image: url('images/hero_bg_test1_mobile.webp'); }
    .page-bg-2 { background-image: url('images/hero_bg_test2_mobile.webp'); }
    .page-bg-3 { background-image: url('images/hero_bg_test3_mobile.webp'); }
    .page-bg-4 { background-image: url('images/hero_bg_test4_mobile.webp'); }
    .page-bg-5 { background-image: url('images/hero_bg_test5_mobile.webp'); }
    .page-bg-6 { background-image: url('images/hero_bg_test6_mobile.webp'); }
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(155, 89, 182, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: floatParticle 6s ease-in-out infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh);
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translateY(-20vh);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-spotify);
    animation: blink 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 10px;
    line-height: 1;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-gold {
    background: linear-gradient(135deg, var(--gold), #FFA500, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-spotify), #15a047);
    color: #fff;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(29, 185, 84, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, var(--gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Phone Frame */
.hero-phone {
    flex: 0 0 auto;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        var(--shadow-card),
        0 0 60px rgba(155, 89, 182, 0.1);
    overflow: hidden;
    perspective: 1000px;
    transition: transform 0.1s ease-out;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

.phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.1), transparent 60%);
    pointer-events: none;
    animation: phoneGlow 3s ease-in-out infinite;
}

@keyframes phoneGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.phone-frame-small {
    width: 336px;
    height: 672px;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--green-spotify), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-pink {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: var(--gold);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   FEATURES
   ============================================ */
#features {
    padding: 120px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.feature-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    padding: 0;
    overflow: hidden;
}

.feature-visual {
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, var(--bg-card));
}

.feature-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-square-video {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    display: block;
}

.feature-square-video:first-child {
    margin-top: -10px;
}

.feature-square-video:last-child {
    margin-top: 48px;
    margin-bottom: -10px;
    object-position: 50% 30%;
}

.feature-video-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 16px;
    position: relative;
}

.feature-video-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--bg-card));
    z-index: 2;
}

.feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Background video filling the feature-content area */
.feature-content-video {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.feature-content-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 50%, transparent 100%);
    padding: 32px;
    margin: 0 -32px -32px;
    padding-bottom: 32px;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gradient-spotify {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.2), rgba(29, 185, 84, 0.05));
    color: var(--green-spotify);
}

.gradient-soundcloud {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.2), rgba(255, 85, 0, 0.05));
    color: var(--orange-soundcloud);
}

.gradient-voice {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(155, 89, 182, 0.05));
    color: var(--accent-purple);
}

.gradient-share {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 188, 212, 0.05));
    color: var(--accent-cyan);
}

.gradient-modules {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.05));
    color: var(--accent-blue);
}

.gradient-goldenor {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
    color: var(--gold);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font-mono);
    letter-spacing: 1px;
    color: var(--gold);
    padding: 4px 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 100px;
}

/* ============================================
   GENRES
   ============================================ */
#genres {
    padding: 80px 0 120px;
}

.genres-carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.genre-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: #000;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.08), inset 0 0 12px rgba(255, 215, 0, 0.03);
}

.genre-pill:hover {
    border-color: var(--genre-color);
    box-shadow: 0 0 30px color-mix(in srgb, var(--genre-color) 40%, transparent);
    transform: translateY(-5px) scale(1.05);
    background: #000;
}

.genre-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
    transition: var(--transition);
}

.genre-pill:hover .genre-img {
    transform: scale(1.1);
    border-color: var(--genre-color);
}

/* ============================================
   GOLDENOR
   ============================================ */
#goldenor {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#goldenor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   GOLDENOR SECTION - FULL WIDTH LAYOUT
   ============================================ */
.goldenor-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100% !important;
    max-width: none !important;
    padding: 0 5%;
    text-align: center;
}

.goldenor-content {
    max-width: 800px;
}

.goldenor-desc {
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.goldenor-desc strong {
    color: var(--gold);
    font-weight: 700;
}

.goldenor-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .goldenor-steps {
        grid-template-columns: 1fr;
    }
}

.step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: var(--transition);
}

.step:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #000;
    border-radius: 10px;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* GoldenOr Card */
.goldenor-visual {
    width: 100%;
}

/* GoldenOr Ticker (Second Band) */
.goldenor-ticker {
    width: 100vw;
    height: 235px;
    /* Increased by another ~15% */
    background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.goldenor-ticker::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.03) 45%, rgba(255, 215, 0, 0.08) 50%, rgba(255, 215, 0, 0.03) 55%, transparent 100%);
    background-size: 200% 100%;
    animation: tickerSweep 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.goldenor-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: borderFlow 4s linear infinite;
    z-index: 3;
}

.goldenor-ticker-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    gap: 15px;
    text-align: center;
    height: 100%;
    /* Ensure full height for vertical centering */
    width: 100%;
}

/* Ensure coin and amount don't have margins throwing off centering */
.goldenor-ticker .goldenor-coin {
    margin: 0;
    display: flex;
    /* Ensure inner content centers */
    justify-content: center;
}

.goldenor-ticker .goldenor-amount {
    margin: 0;
    width: 100%;
    /* Ensure full width for text align center */
}

/* Adjust coin/amount margins inside ticker */
.goldenor-ticker .goldenor-coin {
    margin-bottom: 0;
}

.goldenor-ticker .goldenor-amount {
    margin-bottom: 0;
}

.goldenor-card {
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    width: 100%;
}

.goldenor-card-glow {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
    animation: cardGlow 5s ease-in-out infinite;
}

@keyframes cardGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

.goldenor-coin {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* Video Coin Replacement */
.video-coin-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    /* Optional: if video background needs masking, but usually video is square or mask */
    overflow: visible;
}

.coin-video {
    width: 130px;
    /* Increased by 30% from 100px */
    height: 130px;
    object-fit: cover;
    /* Changed to cover to ensure loop fills circle if needed, or contain if preferred */
    border-radius: 50%;
    /* Rounded video corners */
    /* Optional: maintain shadow or glow effect */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    mix-blend-mode: screen;

    /* Anti-aliasing improvements */
    transform: translateZ(0);
    /* Force GPU rendering */
    backface-visibility: hidden;
    /* Smoother edges */
    border: 1px solid transparent;
    /* Forces edge smoothing */
    will-change: transform;
    /* Helps integrate if video has black background */
}

/* Original coin styles kept for fallback reference or if user reverts
.coin-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    animation: coinSpin 8s linear infinite;
    position: relative;
    overflow: hidden;
}
*/

.coin-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: shimmer 4s infinite;
}

@keyframes coinSpin {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.coin-symbol {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
}

.goldenor-amount {
    text-align: center;
    margin-bottom: 40px;
}

.amount-value {
    display: inline-block;
    font-size: 2rem;
    /* Reduced from 2.5rem */
    font-weight: 950;
    font-family: var(--font-mono);
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(180deg, #fff 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    top: 35px;
    /* Lowered further to +35px total */
}

.amount-value::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

.amount-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 20px;
    /* Increased from 10px to lower label */
    position: relative;
    /* Add position to ensure it moves with top if needed, but margin works */
    top: 15px;
    /* Added nudge +10px */
}

.goldenor-progress {
    margin-bottom: 50px;
    width: 100%;
}

/* Full Width Progress Bar */
.goldenor-progress-full-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 40px;
    margin-bottom: 40px;
}

.goldenor-progress-full {
    width: 100%;
}

.goldenor-progress-full .progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    /* More visible track */
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.goldenor-progress-full .progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), #FFA500, #FFF, var(--gold));
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 20px var(--gold);
    position: relative;
    transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.goldenor-progress-full .progress-fill::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #fff 0%, rgba(255, 215, 0, 0) 70%);
    box-shadow: 0 0 20px #fff;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 2;
}

@keyframes progressShimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.progress-labels-container {
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 0 24px;
}

/* Original constrained bar styles (kept for reference or safety, though unused in HTML now) */
.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), #FFA500);
    border-radius: 20px;
    transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* GoldenOr Daily (Gift Section) */
.goldenor-daily {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 30px;
    padding: 20px 30px;
    width: 100%;
}

/* Hidden per user request */
.daily-icon {
    display: none;
    /* 
    width: 50px;
    height: 50px;
    background: url('images/goldenor/daily-gift-3d-transparent.png') no-repeat center center;
    background-size: contain;
    text-indent: -9999px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    animation: floatGift 3s ease-in-out infinite; 
    */
}

.daily-text {
    text-align: center;
    /* Center text since icon is gone */
    width: 100%;
}

@keyframes floatGift {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.daily-title {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.daily-amount {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-mono);
}

/* ============================================
   MODULES
   ============================================ */
#modules {
    padding: 120px 0;
}

.modules-showcase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
}

.modules-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.module-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.module-category:hover {
    border-color: var(--border-hover);
}

.category-title {
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-mono);
    letter-spacing: 2px;
    color: var(--cat-color);
    margin-bottom: 16px;
}

.category-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.module-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    background: #000;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.module-chip:hover {
    border-color: #fff;
    background: #0a0a0a;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.chip-img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    filter: grayscale(1) brightness(1.1);
    transition: var(--transition);
}

.module-chip:hover .chip-img {
    filter: grayscale(0) brightness(1.2);
    border-color: #fff;
    transform: scale(1.1);
}

/* ============================================
   ECOSYSTEM CARDS
   ============================================ */
#ecosystem {
    padding: 120px 0;
    position: relative;
}

.ecosystem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.eco-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.eco-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--border-hover);
}

.eco-card:hover .eco-temple {
    box-shadow: 0 0 30px var(--temple-glow);
    opacity: 0.15;
}

.eco-card:hover .eco-shield {
    box-shadow: 0 0 30px var(--shield-glow);
    opacity: 0.15;
}

.eco-card:hover .eco-aristote {
    box-shadow: 0 0 30px var(--aristote-glow);
    opacity: 0.15;
}

.eco-card:hover h3 {
    color: var(--gold);
}

.eco-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.eco-temple {
    background: linear-gradient(135deg, #FF9800, #FF5722);
}

.eco-shield {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
}

.eco-aristote {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
}

.eco-card-content {
    padding: 20px 28px 32px;
    position: relative;
    z-index: 1;
}

.eco-video-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    position: relative;
}

.eco-video-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--bg-card));
    z-index: 2;
}

.eco-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eco-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.eco-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.eco-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.eco-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.eco-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    padding-left: 4px;
}

.eco-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

/* Old Timeline removed to prevent conflict */

/* ============================================
   GALLERY
   ============================================ */
#gallery {
    padding: 120px 0;
    overflow: hidden;
}

.gallery-scroll {
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: scrollGallery 30s linear infinite;
    width: max-content;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    flex-shrink: 0;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ============================================
   DOWNLOAD
   ============================================ */
#download {
    padding: 120px 0;
}

.download-card {
    background: #000;
    border: none;
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.download-bg {
    display: none;
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-logo {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    margin: 0 auto 32px;
    object-fit: cover;
    display: block;
}

.download-card h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.download-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.store-btn:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.store-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Logo footer handled by shared nav-logo classes */
.footer-video-logo {
    height: 60px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    background: #000;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: scale(1.2);
    color: var(--gold);
}

.footer-social a svg {
    display: block;
}

/* Footer Newsletter */
.footer-newsletter {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    margin-bottom: 32px;
}

.footer-nl-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-nl-text {
    flex: 1;
}

.footer-nl-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(180deg, #ffb347 0%, #ff5e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.footer-nl-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-nl-form {
    position: relative;
    display: flex;
    flex: 1;
    max-width: 380px;
}

.footer-nl-form input[type="email"] {
    width: 100%;
    padding: 14px 55px 14px 18px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    outline: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    transition: 0.3s;
    box-sizing: border-box;
}

.footer-nl-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-nl-form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-nl-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.footer-nl-btn:hover {
    background: rgba(255, 179, 71, 0.2);
    border-color: #ffb347;
    color: #ffb347;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   ANIMATIONS (AOS-like scroll reveal)
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(50px) translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px) translateY(0);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-large {
        grid-column: 1 / -1;
    }

    .goldenor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .modules-showcase {
        grid-template-columns: 1fr;
    }

    .modules-phone {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ecosystem-cards {
        grid-template-columns: 1fr;
    }

    .eco-card-content {
        padding: 32px;
    }

    .genres-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 100px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-phone {
        order: -1;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
    }

    .hero-scroll {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .lang-toggle {
        align-self: center;
        margin: 8px 0;
        padding: 4px;
    }

    .lang-option {
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-large {
        grid-template-columns: 1fr;
    }

    .feature-visual {
        min-height: 240px;
    }

    .feature-overlay {
        background: linear-gradient(to bottom, transparent 60%, var(--bg-card));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-track {
        flex-direction: column;
        padding-top: 0;
        padding-left: 40px;
    }

    .timeline-track::before {
        top: 0;
        bottom: 0;
        left: 8px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .timeline-item {
        text-align: left;
    }

    .timeline-dot {
        top: 50%;
        left: -40px;
        transform: translateY(-50%);
    }

    .timeline-content {
        margin-bottom: 16px;
    }

    .genres-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-nl-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-nl-form {
        max-width: 100%;
        width: 100%;
    }

    .download-card {
        padding: 48px 24px;
    }

    .goldenor-card {
        padding: 32px 24px;
    }

    /* GoldenOr mobile perf: disable heavy GPU effects */
    .goldenor-card-glow {
        display: none;
    }

    .coin-video {
        filter: none;
        mix-blend-mode: normal;
        will-change: auto;
    }

    .goldenor-progress-full .progress-fill {
        animation: none;
        background: linear-gradient(90deg, var(--gold), #FFA500);
        background-size: 100% 100%;
        box-shadow: none;
    }

    .goldenor-progress-full .progress-fill::after {
        display: none;
    }

    /* Vault logo: hide desktop version, show mobile version */
    .vault-logo-desktop {
        display: none !important;
    }

    .vault-logo-mobile {
        display: block !important;
    }
}

/* ============================================
   THE VAULT (Classified Modules)
   ============================================ */
.vault-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    background: #000;
    border-radius: 16px;
    perspective: 1000px;
    cursor: pointer;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    transition: transform 0.3s;
}

.vault-wrapper:hover {
    transform: translateY(-5px);
}

.vault-door {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50, #000000);
    border: 2px solid #555;
    border-radius: 16px;
    transform-origin: left center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 5px 0 15px rgba(0, 0, 0, 0.5);
    backface-visibility: hidden;
}

/* Metallic texture overlay */
.vault-door::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 10px);
    pointer-events: none;
    border-radius: 14px;
}

.vault-lock {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b);
    border: 4px solid #555;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.5s;
}

.lock-center {
    width: 15px;
    height: 15px;
    background: #000;
    border-radius: 50%;
    z-index: 2;
}

.lock-dial {
    position: absolute;
    width: 40px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    transform: rotate(45deg);
    transition: transform 0.8s ease;
}

.vault-handle {
    width: 80px;
    height: 12px;
    background: linear-gradient(to bottom, #999, #333);
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.vault-details {
    text-align: center;
}

.vault-details span {
    font-family: var(--font-mono);
    color: #ff3333;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    display: block;
    margin-bottom: 5px;
}

.warning-stripe {
    width: 100px;
    height: 4px;
    background: repeating-linear-gradient(45deg,
            #ff3333,
            #ff3333 5px,
            #000 5px,
            #000 10px);
    margin: 0 auto;
}

/* Interior Content */
.vault-interior {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 16px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    box-shadow: inset 0 0 50px rgba(0, 229, 255, 0.1);
    overflow: visible;
    /* Changed from hidden to avoid clipping date */
}

.vault-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.vault-secret {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    color: #00e5ff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    position: relative;
    z-index: 2;
}

/* vault-date cleaned */

/* Open State */
.vault-wrapper.open .vault-door {
    transform: rotateY(-110deg);
}

.vault-wrapper.open .lock-dial {
    transform: rotate(405deg);
}

.vault-wrapper.open .vault-secret {
    opacity: 1;
    transform: scale(1);
}

.vault-wrapper.open .vault-date,
.vault-wrapper.open .vault-glow {
    opacity: 1;
}

/* Hover effects */
.vault-wrapper:hover .vault-door {
    transform: rotateY(-5deg);
}

.vault-wrapper.open:hover .vault-door {
    transform: rotateY(-110deg);
}

.vault-wrapper:hover .vault-lock {
    transform: scale(1.05);
}

/* ============================================
   VAULT POLISH (EMBLEMS & CORES)
   ============================================ */
.vault-emblem {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 20px;
    right: 20px;
    background: radial-gradient(circle at 30% 30%, #444, #111);
    border: 3px solid #00e5ff;
    border-radius: 20px;
    transform: rotate(45deg);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3), inset 0 0 15px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    overflow: hidden;
}

.emblem-inner {
    width: 60%;
    height: 60%;
    background: #000;
    border: 2px solid #00e5ff;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.5);
    position: relative;
    animation: emblemPulse 2s infinite alternate;
}

@keyframes emblemPulse {
    from {
        opacity: 0.6;
        box-shadow: inset 0 0 5px rgba(0, 229, 255, 0.4);
    }

    to {
        opacity: 1;
        box-shadow: inset 0 0 15px rgba(0, 229, 255, 0.8);
    }
}

.genesis-core {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-center {
    width: 40px;
    height: 40px;
    background: #00e5ff;
    border-radius: 50%;
    box-shadow: 0 0 50px #00e5ff, 0 0 100px rgba(0, 229, 255, 0.5);
    animation: corePulse 3s infinite ease-in-out;
    z-index: 5;
}

.core-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 50%;
    animation: rotateCore 4s linear infinite;
}

.core-orbit::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px #fff;
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes rotateCore {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustment for classified */
@media (max-width: 768px) {
    .module-category.category-classified {
        grid-column: 1;
    }
}

/* Relay System Reverted */



/* ============================================
   VAULT ULTIMATE REFINEMENT
   ============================================ */
.vault-lock {
    width: 70px;
    height: 70px;
    background: #111;
    border: 3px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 1);
}

.neon-lock-inner {
    width: 22px !important;
    height: 22px !important;
    transform: rotate(45deg) !important;
    border: 2px solid #00e5ff !important;
    box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.4) !important;
    animation: lockSpin 4s infinite linear;
}

@keyframes lockSpin {
    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(405deg);
    }
}

.genesis-static-logo {
    width: 180px;
    /* Resetting to majestic size as text is gone */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
    position: relative;
    z-index: 5;
    border-radius: 20px;
}

.vault-interior {
    background: #050505;
}

.vault-interior {
    background: #050505;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Put back to keep halo inside the frame */
}

.vault-interior::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Cleaning up old vault styles that are now handled by images */
.vault-emblem,
.genesis-core,
.vault-secret,
.vault-date {
    display: none !important;
}

/* Relay System Cleaned */
/* ============================================
   GOLDENOR WEALTH TICKER
   ============================================ */
.wealth-ticker-wrap {
    width: 100%;
    height: 130px;
    background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
    padding: 0;
    margin-bottom: 0px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.wealth-ticker-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(255, 215, 0, 0.03) 45%,
            rgba(255, 215, 0, 0.08) 50%,
            rgba(255, 215, 0, 0.03) 55%,
            transparent 100%);
    background-size: 200% 100%;
    animation: tickerSweep 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.wealth-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: borderFlow 4s linear infinite;
    z-index: 3;
}

@keyframes tickerSweep {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes borderFlow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes movingTickerBackground {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.wealth-ticker-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.wealth-ticker-content {
    display: flex;
    flex-direction: column;
    /* Stack label and value vertically */
    align-items: center;
    justify-content: center;
    gap: 5px;
    /* Spacing between label and value */
    z-index: 2;
    text-align: center;
}

.wealth-ticker-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    opacity: 0.8;
}

.wealth-ticker-value {
    font-size: 3rem;
    font-weight: 950;
    color: #fff;
    font-family: var(--font-mono);
    display: flex;
    align-items: baseline;
    gap: 12px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(180deg, #fff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Wealth Ticker Coin (Mini GoldenOr Coin Replica) */
.wealth-coin {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    animation: coinSpin 8s linear infinite;
    position: relative;
    overflow: hidden;
    margin-right: -10px;
}

.wealth-coin::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: shimmer 4s infinite;
}

.wealth-coin-symbol {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
}

.wealth-ticker-unit {
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.7;
}

.wealth-ticker-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   RELAY SYSTEM (ROADMAP)
   ============================================ */
.relay-system-container {
    padding: 80px 0;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

.relay-track {
    width: calc(100% - 100px);
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 15px;
    /* Aligned with dots */
    left: 50px;
    z-index: 1;
}

.relay-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    /* Initial progress */
    background: linear-gradient(90deg, var(--green-spotify), var(--gold));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    z-index: 2;
}

.relay-cards {
    display: flex !important;
    justify-content: space-between !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.relay-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-top: 60px;
    flex: 1;
    min-width: 0;
}

.relay-card.active {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.relay-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #222;
    border: 2px solid #444;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    transition: all 0.3s ease;
}

.relay-card.active .relay-dot {
    background: var(--green-spotify);
    border-color: #fff;
    box-shadow: 0 0 15px var(--green-spotify);
    transform: translateX(-50%) scale(1.2);
}

.relay-period {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.relay-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.relay-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.relay-status {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.status-free {
    background: rgba(29, 185, 84, 0.1);
    color: var(--green-spotify);
    border: 1px solid rgba(29, 185, 84, 0.2);
}

.status-unlock {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.status-premium {
    background: rgba(155, 89, 182, 0.1);
    color: #9B59B6;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.status-next {
    background: rgba(100, 200, 255, 0.1);
    color: #64C8FF;
    border: 1px solid rgba(100, 200, 255, 0.2);
}

@media (max-width: 1024px) {
    .relay-cards {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

    .relay-track {
        display: none;
    }
}

@media (max-width: 640px) {
    .relay-cards {
        grid-template-columns: 1fr;
    }
}