/* =============================================
   CSS Variables & Reset
   ============================================= */
:root {
    /* Brand Colors - Moonrun 2026 */
    --color-gold: #8796BE;           /* Periwinkle - accent color */
    --color-gold-light: #a3aed0;     /* Light periwinkle */
    --color-gold-dark: #6b7a9e;      /* Dark periwinkle */
    --color-purple: #002750;         /* Navy blue */
    --color-purple-light: #0a3366;   /* Light navy */
    --color-dark: #002750;           /* Navy blue - main background */
    --color-dark-lighter: #161D25;   /* Charcoal */
    --color-dark-card: #161D25;      /* Charcoal - card backgrounds */
    --color-white: #F2F2F1;          /* Off-white */
    --color-white-muted: rgba(242, 242, 241, 0.7);
    --color-white-subtle: rgba(242, 242, 241, 0.5);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
    font-weight: 300;
    color: var(--color-white-muted);
}

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

/* =============================================
   Layout & Container
   ============================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(135, 150, 190, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* =============================================
   Header / Navigation
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-medium);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-md);
}

.header-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: all var(--transition-fast);
}

.header-logo:hover {
    opacity: 1;
}

.header.scrolled .header-logo {
    height: 40px;
}

.header-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* Header Event Info */
.header-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.header-info-icon {
    display: none;
    align-items: center;
    justify-content: center;
}

.header-info-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-gold);
}

.header-date,
.header-location {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.header-divider {
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
}

@media (min-width: 480px) {
    .header-info {
        gap: 0.5rem;
        padding: 0.45rem 1rem;
    }

    .header-info-icon {
        display: flex;
    }

    .header-date,
    .header-location {
        font-size: 0.75rem;
    }
}

@media (min-width: 768px) {
    .header-info {
        gap: 0.6rem;
        padding: 0.5rem 1.25rem;
    }

    .header-info-icon svg {
        width: 16px;
        height: 16px;
    }

    .header-date,
    .header-location {
        font-size: 0.85rem;
    }

    .header-divider {
        width: 4px;
        height: 4px;
    }
}

@media (min-width: 968px) {
    .header-date,
    .header-location {
        font-size: 0.9rem;
    }

    .header-info {
        gap: 0.75rem;
        padding: 0.6rem 1.5rem;
    }

    .header-info-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: calc(var(--spacing-lg) + 60px) var(--spacing-md) var(--spacing-lg);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(135, 150, 190, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(135, 150, 190, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 60%, rgba(37, 9, 20, 0.3) 0%, transparent 40%),
        var(--color-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/background.svg') center/cover no-repeat;
    opacity: 0.4;
    z-index: 0;
}

/* Hero Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.6;
}

.hero-particle--1 {
    top: 20%;
    left: 10%;
    animation: floatParticle 8s ease-in-out infinite;
}

.hero-particle--2 {
    top: 60%;
    left: 5%;
    width: 6px;
    height: 6px;
    animation: floatParticle 10s ease-in-out infinite 1s;
}

.hero-particle--3 {
    top: 30%;
    right: 15%;
    width: 3px;
    height: 3px;
    animation: floatParticle 7s ease-in-out infinite 0.5s;
}

.hero-particle--4 {
    top: 70%;
    right: 10%;
    width: 5px;
    height: 5px;
    animation: floatParticle 9s ease-in-out infinite 2s;
}

.hero-particle--5 {
    top: 45%;
    right: 5%;
    animation: floatParticle 11s ease-in-out infinite 1.5s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.7;
    }
}

/* Hero Decorative Rings */
.hero-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(135, 150, 190, 0.1);
}

.hero-ring--1 {
    width: 800px;
    height: 800px;
    animation: pulseRing 4s ease-in-out infinite;
}

.hero-ring--2 {
    width: 1000px;
    height: 1000px;
    animation: pulseRing 4s ease-in-out infinite 1s;
}

@keyframes pulseRing {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.2) 0%, rgba(135, 150, 190, 0.1) 100%);
    border: 1px solid rgba(135, 150, 190, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-logo {
    max-width: 800px;
    width: 85%;
    margin-bottom: var(--spacing-md);
    animation: fadeIn 1s ease 0.2s both;
    filter: drop-shadow(0 10px 30px rgba(135, 150, 190, 0.2));
}

.hero h1 {
    margin-bottom: var(--spacing-sm);
    animation: fadeIn 1s ease 0.4s both;
}

/* Hero Subtitle */
.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    animation: fadeIn 1s ease 0.6s both;
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.hero-subtitle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subtitle-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gold);
}

.hero-subtitle-divider {
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 880px;
    margin: 0 auto var(--spacing-lg);
    border-radius: 20px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(135, 150, 190, 0.1);
    animation: fadeInUp 1s ease 0.8s both;
    position: relative;
}

/* Video Frame Corners */
.video-frame {
    position: absolute;
    inset: -10px;
    pointer-events: none;
    z-index: 3;
}

.video-frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    opacity: 0.6;
}

.video-frame-corner--tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.video-frame-corner--tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.video-frame-corner--bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.video-frame-corner--br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--color-dark-card);
    border-radius: 20px;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.4), rgba(10, 10, 15, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.video-overlay:hover {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.3), rgba(10, 10, 15, 0.5));
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Play Button */
.play-button {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button-pulse {
    position: absolute;
    inset: 0;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: playPulse 2s ease-out infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-button-inner {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    z-index: 1;
}

.video-overlay:hover .play-button-inner {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(135, 150, 190, 0.5);
}

.play-button-inner svg {
    width: 30px;
    height: 30px;
    fill: var(--color-dark);
    margin-left: 4px;
}

.play-button-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.05em;
    opacity: 0.8;
    transition: all var(--transition-medium);
}

.video-overlay:hover .play-button-text {
    opacity: 1;
}

/* Hero CTA */
.hero-cta {
    animation: fadeIn 1s ease 1s both;
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark), var(--color-gold));
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-medium);
    filter: blur(10px);
}

.btn-glow:hover::before {
    opacity: 0.5;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0.7;
}

.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    position: relative;
}

.scroll-indicator-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% {
        top: 0;
        opacity: 1;
    }
    50% {
        top: 80%;
        opacity: 0.3;
    }
}

/* =============================================
   About Section
   ============================================= */
.about {
    background: var(--color-dark-lighter);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(135, 150, 190, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(135, 150, 190, 0.1);
    border: 1px solid rgba(135, 150, 190, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.about-content h2 {
    margin-bottom: var(--spacing-md);
}

.about-content h2 span {
    display: block;
    color: var(--color-gold);
}

.about-lead {
    font-size: 1.2rem !important;
    color: var(--color-white) !important;
    font-weight: 400;
    line-height: 1.7;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

/* About Features */
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.1) 0%, rgba(135, 150, 190, 0.02) 100%);
    border: 1px solid rgba(135, 150, 190, 0.15);
    border-radius: 12px;
    transition: all var(--transition-medium);
}

.about-feature:hover {
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.15) 0%, rgba(135, 150, 190, 0.05) 100%);
    border-color: rgba(135, 150, 190, 0.3);
    transform: translateY(-2px);
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gold);
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
}

/* About Visual */
.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.about-visual-card {
    position: relative;
    width: 280px;
    height: 280px;
    background: linear-gradient(145deg, var(--color-dark-card) 0%, rgba(22, 29, 37, 0.8) 100%);
    border: 1px solid rgba(135, 150, 190, 0.2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.about-visual-card img {
    width: 60%;
    max-width: 160px;
    opacity: 0.9;
    transition: all var(--transition-medium);
}

.about-visual:hover .about-visual-card img {
    opacity: 1;
    transform: scale(1.05);
}

.about-visual-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(135, 150, 190, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-visual-decoration {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(135, 150, 190, 0.2);
    pointer-events: none;
}

.about-visual-decoration--1 {
    width: 350px;
    height: 350px;
    border-style: dashed;
    animation: rotateSlowly 30s linear infinite;
}

.about-visual-decoration--2 {
    width: 420px;
    height: 420px;
    opacity: 0.5;
    animation: rotateSlowly 45s linear infinite reverse;
}

@keyframes rotateSlowly {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* About Stats */
.about-visual-stats {
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 3;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--color-dark-card) 0%, rgba(22, 29, 37, 0.95) 100%);
    border: 1px solid rgba(135, 150, 190, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--color-white-muted);
    max-width: 100px;
    line-height: 1.3;
}

/* =============================================
   Details Section
   ============================================= */
.details {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(135, 150, 190, 0.08) 0%, transparent 50%),
        var(--color-dark);
}

.details-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.details-header h2 {
    margin-bottom: var(--spacing-sm);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.detail-card {
    background: linear-gradient(145deg, var(--color-dark-card) 0%, rgba(22, 29, 37, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.detail-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(135, 150, 190, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.detail-card:hover {
    transform: translateY(-10px);
    border-color: rgba(135, 150, 190, 0.3);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(135, 150, 190, 0.1);
}

.detail-card:hover::before {
    opacity: 1;
}

.detail-card:hover::after {
    opacity: 1;
}

.detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.15) 0%, rgba(135, 150, 190, 0.05) 100%);
    border: 1px solid rgba(135, 150, 190, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition-medium);
}

.detail-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--color-gold), transparent, var(--color-gold));
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-medium);
}

.detail-card:hover .detail-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.25) 0%, rgba(135, 150, 190, 0.1) 100%);
    box-shadow: 0 10px 30px rgba(135, 150, 190, 0.2);
}

.detail-card:hover .detail-icon::before {
    opacity: 0.3;
}

.detail-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-gold);
    transition: all var(--transition-medium);
}

.detail-card:hover .detail-icon svg {
    stroke: var(--color-gold-light);
}

.detail-card h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.4rem;
    color: var(--color-white);
    position: relative;
}

.detail-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Individual card accents */
.detail-card:nth-child(1) .detail-icon {
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.2) 0%, rgba(197, 140, 100, 0.1) 100%);
}

.detail-card:nth-child(2) .detail-icon {
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.2) 0%, rgba(150, 176, 138, 0.1) 100%);
}

.detail-card:nth-child(3) .detail-icon {
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.2) 0%, rgba(180, 150, 200, 0.1) 100%);
}

/* =============================================
   Schedule Section
   ============================================= */
.schedule {
    background: var(--color-dark-lighter);
}

.schedule-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.schedule-header h2 {
    margin-bottom: var(--spacing-sm);
}

.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-gold), rgba(135, 150, 190, 0.2));
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all var(--transition-medium);
    position: relative;
}

.schedule-item:hover {
    transform: translateX(8px);
    border-color: rgba(135, 150, 190, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-icon {
    position: absolute;
    left: -60px;
    width: 48px;
    height: 48px;
    background: var(--color-dark-card);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.schedule-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gold);
}

.schedule-time {
    min-width: 150px;
    font-weight: 600;
    color: var(--color-gold);
    font-size: 1rem;
    font-family: var(--font-body);
}

.schedule-event {
    flex: 1;
    font-size: 1.1rem;
    color: var(--color-white);
    font-weight: 400;
}

/* Break items - more subtle styling */
.schedule-item--break {
    background: rgba(255, 255, 255, 0.02);
    border-style: dashed;
}

.schedule-item--break .schedule-icon {
    border-style: dashed;
    background: var(--color-dark-lighter);
}

.schedule-item--break .schedule-event {
    color: var(--color-white-muted);
}

/* Highlight item - After Party */
.schedule-item--highlight {
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.15), rgba(135, 150, 190, 0.05));
    border-color: rgba(135, 150, 190, 0.4);
}

.schedule-item--highlight .schedule-icon {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.schedule-item--highlight .schedule-icon svg {
    stroke: var(--color-dark);
}

.schedule-item--highlight .schedule-event {
    color: var(--color-gold-light);
    font-weight: 500;
}

/* =============================================
   Downloads Section
   ============================================= */
.downloads {
    background: var(--color-dark);
}

.downloads-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.downloads-header h2 {
    margin-bottom: var(--spacing-sm);
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.download-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(145deg, var(--color-dark-card) 0%, rgba(22, 29, 37, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: rgba(135, 150, 190, 0.3);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(135, 150, 190, 0.1);
}

.download-card:hover::before {
    opacity: 1;
}

.download-card-icon {
    position: relative;
    width: 60px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-card-icon svg {
    width: 48px;
    height: 56px;
    stroke: var(--color-gold);
    transition: all var(--transition-medium);
}

.download-card:hover .download-card-icon svg {
    stroke: var(--color-gold-light);
}

.download-card-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 8px;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.download-card-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.download-card-content h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
    transition: color var(--transition-medium);
}

.download-card:hover .download-card-content h4 {
    color: var(--color-gold-light);
}

.download-card-content p {
    font-size: 0.85rem;
    color: var(--color-white-muted);
    margin: 0;
}

.download-card-action {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(135, 150, 190, 0.1);
    border: 1px solid rgba(135, 150, 190, 0.2);
    border-radius: 12px;
    transition: all var(--transition-medium);
    position: relative;
    z-index: 1;
}

.download-card-action svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gold);
    transition: all var(--transition-medium);
}

.download-card:hover .download-card-action {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.download-card:hover .download-card-action svg {
    stroke: var(--color-dark);
    animation: downloadBounce 0.6s ease infinite;
}

@keyframes downloadBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

/* =============================================
   Tickets Section
   ============================================= */
.tickets {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(135, 150, 190, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(135, 150, 190, 0.08) 0%, transparent 50%),
        var(--color-dark-lighter);
}

.tickets-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.tickets-header h2 {
    margin-bottom: var(--spacing-sm);
}

.tickets-header p {
    font-size: 1.1rem;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
}

.ticket-card {
    position: relative;
    background: linear-gradient(145deg, var(--color-dark-card) 0%, rgba(22, 29, 37, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-medium);
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(135, 150, 190, 0.1);
}

/* Featured Ticket (VIP) */
.ticket-card--featured {
    background: linear-gradient(145deg, rgba(135, 150, 190, 0.12) 0%, rgba(22, 29, 37, 0.8) 100%);
    border-color: rgba(135, 150, 190, 0.4);
    box-shadow: 0 0 40px rgba(135, 150, 190, 0.15);
}

.ticket-card--featured:hover {
    border-color: rgba(135, 150, 190, 0.6);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(135, 150, 190, 0.25);
}

.ticket-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.25rem;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
}

/* Premium Ticket (Super VIP) */
.ticket-card--premium {
    background: linear-gradient(145deg, rgba(180, 150, 200, 0.08) 0%, rgba(22, 29, 37, 0.7) 100%);
    border-color: rgba(180, 150, 200, 0.3);
}

.ticket-card--premium:hover {
    border-color: rgba(180, 150, 200, 0.5);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(180, 150, 200, 0.15);
}

.ticket-card--premium .ticket-tier {
    background: linear-gradient(135deg, rgba(180, 150, 200, 0.15) 0%, rgba(180, 150, 200, 0.05) 100%);
    border-color: rgba(180, 150, 200, 0.3);
    color: #d4c4e3;
}

.ticket-card-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-tier {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.15) 0%, rgba(135, 150, 190, 0.05) 100%);
    border: 1px solid rgba(135, 150, 190, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-xs);
}

.ticket-card-header h3 {
    font-size: 1.8rem;
    color: var(--color-white);
}

.ticket-features {
    list-style: none;
    flex: 1;
    margin-bottom: var(--spacing-md);
}

.ticket-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--color-white-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--color-gold);
    margin-top: 2px;
}

/* Base features (included from lower tier) - more subtle */
.ticket-feature-base {
    opacity: 0.65;
}

.ticket-feature-base svg {
    stroke: var(--color-white-subtle) !important;
}

/* Feature divider - section label */
.ticket-feature-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0 !important;
    margin-top: 0.5rem;
    border-bottom: none !important;
}

.ticket-feature-divider span {
    padding: 0.3rem 1rem;
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.2) 0%, rgba(135, 150, 190, 0.08) 100%);
    border: 1px solid rgba(135, 150, 190, 0.3);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.ticket-feature-divider--premium span {
    background: linear-gradient(135deg, rgba(180, 150, 200, 0.2) 0%, rgba(180, 150, 200, 0.08) 100%);
    border-color: rgba(180, 150, 200, 0.3);
    color: #d4c4e3;
}

/* Highlighted features - added value */
.ticket-feature-highlight {
    color: var(--color-gold) !important;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(135, 150, 190, 0.08) 0%, transparent 100%);
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    border-radius: 8px;
}

.ticket-feature-highlight svg {
    stroke: var(--color-gold) !important;
}

.ticket-feature-highlight--premium {
    color: #d4c4e3 !important;
    background: linear-gradient(90deg, rgba(180, 150, 200, 0.12) 0%, transparent 100%);
}

.ticket-feature-highlight--premium svg {
    stroke: #d4c4e3 !important;
}

/* Premium badge variant */
.ticket-card-badge--premium {
    background: linear-gradient(135deg, #d4c4e3 0%, #b496c8 100%);
}

.ticket-feature-note {
    font-size: 0.85rem !important;
    color: var(--color-white-subtle) !important;
    font-style: italic;
}

.ticket-feature-note svg {
    stroke: var(--color-white-subtle) !important;
}

.ticket-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Responsive Tickets */
@media (max-width: 968px) {
    .tickets-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .ticket-card--featured {
        order: -1;
    }
}

@media (max-width: 640px) {
    .ticket-card {
        padding: var(--spacing-md);
    }

    .ticket-card-header h3 {
        font-size: 1.5rem;
    }

    .ticket-features li {
        font-size: 0.9rem;
    }
}

/* =============================================
   CTA Section
   ============================================= */
.cta {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(135, 150, 190, 0.15) 0%, transparent 60%),
        var(--color-dark-lighter);
    text-align: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    color: var(--color-gold);
    pointer-events: none;
}

.cta-decoration--left {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    animation: rotateSlow 40s linear infinite;
}

.cta-decoration--right {
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    animation: rotateSlow 50s linear infinite reverse;
}

@keyframes rotateSlow {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: linear-gradient(145deg, rgba(22, 29, 37, 0.8) 0%, rgba(22, 29, 37, 0.4) 100%);
    border: 1px solid rgba(135, 150, 190, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, rgba(135, 150, 190, 0.2) 0%, rgba(135, 150, 190, 0.05) 100%);
    border: 1px solid rgba(135, 150, 190, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-gold);
}

.cta-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(135, 150, 190, 0.15);
    border: 1px solid rgba(135, 150, 190, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.cta h2 {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-white-muted);
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

/* =============================================
   Footer (Minimal)
   ============================================= */
.footer-minimal {
    background: var(--color-dark);
    padding: var(--spacing-lg) 0;
    position: relative;
}

.footer-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(135, 150, 190, 0.2), transparent);
}

.footer-minimal .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-logo-link {
    display: block;
    transition: opacity var(--transition-fast);
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-minimal .footer-logo {
    width: 140px;
    height: auto;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
    display: block;
}

.footer-logo-link:hover .footer-logo {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--color-white-subtle);
    margin: 0;
    letter-spacing: 0.05em;
}

/* =============================================
   Animations
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-visual {
        order: -1;
        min-height: 350px;
    }

    .about-visual-card {
        width: 220px;
        height: 220px;
    }

    .about-visual-decoration--1 {
        width: 280px;
        height: 280px;
    }

    .about-visual-decoration--2 {
        width: 340px;
        height: 340px;
    }

    .about-visual-stats {
        right: 50%;
        transform: translateX(50%);
        bottom: -10px;
    }

    .about-features {
        justify-content: center;
    }

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

    .schedule-timeline {
        padding-left: 50px;
    }

    .schedule-timeline::before {
        left: 18px;
    }

    .schedule-icon {
        left: -50px;
        width: 36px;
        height: 36px;
    }

    .schedule-icon svg {
        width: 16px;
        height: 16px;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .schedule-time {
        min-width: auto;
    }

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

@media (max-width: 640px) {
    .header {
        padding: var(--spacing-xs) var(--spacing-sm);
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .header-logo {
        height: 40px;
    }

    .header.scrolled .header-logo {
        height: 35px;
    }

    .header-info {
        position: static;
        transform: none;
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .header-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .hero {
        padding: var(--spacing-md);
        padding-top: 110px;
        min-height: 100svh;
        justify-content: flex-start;
    }

    .hero-particles {
        display: none;
    }

    .hero-ring--1 {
        width: 400px;
        height: 400px;
    }

    .hero-ring--2 {
        width: 500px;
        height: 500px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .hero-logo {
        max-width: 320px;
    }

    .hero-subtitle-icon svg {
        width: 16px;
        height: 16px;
    }

    .video-container {
        border-radius: 12px;
    }

    .video-frame {
        display: none;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button-inner {
        width: 60px;
        height: 60px;
    }

    .play-button-inner svg {
        width: 22px;
        height: 22px;
    }

    .play-button-text {
        font-size: 0.8rem;
    }

    .scroll-indicator {
        display: none;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .download-card {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }

    .download-card-icon {
        width: 50px;
        height: 60px;
    }

    .download-card-icon svg {
        width: 40px;
        height: 48px;
    }

    .download-card-content h4 {
        font-size: 1rem;
    }

    .download-card-content p {
        font-size: 0.8rem;
    }

    .download-card-action {
        width: 40px;
        height: 40px;
    }

    .cta-decoration {
        width: 200px;
        height: 200px;
    }

    .cta-content {
        padding: var(--spacing-md);
    }

    .cta-icon {
        width: 60px;
        height: 60px;
    }

    .cta-icon svg {
        width: 28px;
        height: 28px;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

}
