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

        :root {
            --gold: #d4a84b;
            --dark-gold: #a67c00;
            --light-gold: #f0d890;
            --deep-purple: #1e1333;
            --purple: #462b6b;
            --light-purple: #8b6aad;
            --lavender: #c9b8d9;
            --emerald: #0d6b4e;
            --dark-emerald: #053d2d;
            --light-emerald: #2ea37d;
            --mint: #7dd4b8;
            --pale-mint: #d4f0e7;
            --cream: #f8f5f0;
            --dark-bg: #0f0a18;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            background: var(--dark-bg);
            color: var(--cream);
            overflow-x: hidden;
            font-size: 18px;
            line-height: 1.7;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(15, 10, 24, 0.95);
            padding: 0.75rem 2rem;
            border-bottom: 1px solid rgba(212, 168, 75, 0.2);
        }

        .nav-logo {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.3rem;
            color: var(--gold);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-family: 'Cinzel', serif;
            font-size: 0.8rem;
            color: var(--cream);
            text-decoration: none;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

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

        .nav-links a:hover,
        .nav-links a:focus {
            color: var(--gold);
        }

        .nav-links a:hover::after,
        .nav-links a:focus::after {
            width: 100%;
        }

        .nav-cta {
            font-family: 'Cinzel', serif;
            font-size: 0.8rem;
            padding: 0.6rem 1.5rem;
            background: transparent;
            color: var(--gold);
            border: 1px solid var(--gold);
            border-radius: 2px;
            text-decoration: none;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .nav-cta:hover,
        .nav-cta:focus {
            background: var(--gold);
            color: var(--deep-purple);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            max-width: 100%;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(70, 43, 107, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(13, 107, 78, 0.3) 0%, transparent 50%),
                linear-gradient(180deg, var(--deep-purple) 0%, var(--dark-bg) 50%, var(--dark-emerald) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4a84b' fill-opacity='0.03'%3E%3Cpath d='M40 0L40 80M0 40L80 40' stroke='%23d4a84b' stroke-opacity='0.03'/%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        /* Hero background video rotator */
        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 1s ease;
        }

        .hero-video.active {
            opacity: 1;
        }

        /* Unknown-7 is shot vertically; on wide desktop crops, shift up so the stilt walker's face isn't cut off */
        @media (min-width: 1025px) {
            .hero-video-stilts {
                object-position: center 20%;
            }
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(70, 43, 107, 0.45) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(13, 107, 78, 0.35) 0%, transparent 50%),
                linear-gradient(180deg, rgba(15, 10, 24, 0.55) 0%, rgba(15, 10, 24, 0.65) 50%, rgba(5, 61, 45, 0.6) 100%);
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 100%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            padding: 4rem 5rem;
            padding-bottom: 5rem;
            max-width: 900px;
        }

        .hero-eyebrow {
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            color: var(--mint);
            letter-spacing: 0.4em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .festival-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: clamp(2.8rem, 7vw, 5rem);
            font-weight: 400;
            color: var(--gold);
            text-shadow: 0 0 60px rgba(212, 168, 75, 0.3);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
        }

        .hero-divider span {
            width: 80px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .hero-divider .diamond {
            width: 8px;
            height: 8px;
            background: var(--gold);
            transform: rotate(45deg);
        }

        .subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-style: italic;
            color: var(--lavender);
            margin-bottom: 2rem;
        }

        /* Countdown Timer */
        .countdown {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .countdown-item {
            text-align: center;
        }

        .countdown-number {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2.5rem;
            color: var(--gold);
            line-height: 1;
            display: block;
        }

        .countdown-label {
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            color: var(--lavender);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-top: 0.5rem;
        }

        .dates {
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            color: var(--cream);
            margin-bottom: 2rem;
            letter-spacing: 0.15em;
        }

        .dates strong {
            color: var(--light-gold);
            display: block;
            font-size: 1.4rem;
            margin-top: 0.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            padding: 1rem 2.5rem;
            border-radius: 2px;
            text-decoration: none;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--deep-purple);
            border: 2px solid var(--gold);
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--light-gold);
            border-color: var(--light-gold);
            box-shadow: 0 0 30px rgba(212, 168, 75, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--cream);
            border: 1px solid var(--cream);
        }

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

        .scroll-indicator {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--lavender);
            font-family: 'Cinzel', serif;
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .scroll-indicator span {
            width: 1px;
            height: 30px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 1; height: 30px; }
            50% { opacity: 0.5; height: 20px; }
        }

        /* Purple Fire Effect */
        .fire-container {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 450px;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        /* Dim the fire effect when it sits over a hero video background so it doesn't obscure the footage */
        .hero-video-bg ~ .fire-container {
            opacity: 0.35;
        }

        .fire {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 120%;
        }

        .fire-flame {
            position: absolute;
            bottom: 0;
            border-radius: 50% 50% 30% 30%;
            filter: blur(15px);
            mix-blend-mode: screen;
        }

        .fire-flame:nth-child(1) {
            left: 5%;
            width: 180px;
            height: 320px;
            background: linear-gradient(to top, rgba(191, 64, 191, 1), rgba(138, 43, 226, 0.8), rgba(75, 0, 130, 0.4), transparent);
            animation: flicker1 1.5s ease-in-out infinite;
        }

        .fire-flame:nth-child(2) {
            left: 18%;
            width: 150px;
            height: 280px;
            background: linear-gradient(to top, rgba(186, 85, 211, 1), rgba(148, 0, 211, 0.7), rgba(128, 0, 128, 0.3), transparent);
            animation: flicker2 1.8s ease-in-out infinite;
        }

        .fire-flame:nth-child(3) {
            left: 32%;
            width: 200px;
            height: 380px;
            background: linear-gradient(to top, rgba(218, 112, 214, 1), rgba(186, 85, 211, 0.8), rgba(148, 0, 211, 0.4), transparent);
            animation: flicker3 1.3s ease-in-out infinite;
        }

        .fire-flame:nth-child(4) {
            left: 48%;
            width: 170px;
            height: 340px;
            background: linear-gradient(to top, rgba(238, 130, 238, 1), rgba(218, 112, 214, 0.8), rgba(186, 85, 211, 0.4), transparent);
            animation: flicker1 1.6s ease-in-out infinite;
            animation-delay: 0.2s;
        }

        .fire-flame:nth-child(5) {
            left: 62%;
            width: 190px;
            height: 360px;
            background: linear-gradient(to top, rgba(186, 85, 211, 1), rgba(153, 50, 204, 0.8), rgba(128, 0, 128, 0.4), transparent);
            animation: flicker2 1.4s ease-in-out infinite;
            animation-delay: 0.3s;
        }

        .fire-flame:nth-child(6) {
            left: 78%;
            width: 160px;
            height: 300px;
            background: linear-gradient(to top, rgba(148, 0, 211, 1), rgba(138, 43, 226, 0.7), rgba(75, 0, 130, 0.3), transparent);
            animation: flicker3 1.7s ease-in-out infinite;
            animation-delay: 0.1s;
        }

        .fire-flame:nth-child(7) {
            left: 12%;
            width: 120px;
            height: 250px;
            background: linear-gradient(to top, rgba(255, 0, 255, 0.9), rgba(191, 64, 191, 0.6), transparent);
            animation: flicker2 1.2s ease-in-out infinite;
            animation-delay: 0.4s;
        }

        .fire-flame:nth-child(8) {
            left: 42%;
            width: 140px;
            height: 290px;
            background: linear-gradient(to top, rgba(255, 20, 147, 0.8), rgba(199, 21, 133, 0.5), transparent);
            animation: flicker1 1.1s ease-in-out infinite;
            animation-delay: 0.5s;
        }

        .fire-flame:nth-child(9) {
            left: 70%;
            width: 130px;
            height: 270px;
            background: linear-gradient(to top, rgba(255, 0, 255, 0.85), rgba(186, 85, 211, 0.5), transparent);
            animation: flicker3 1.4s ease-in-out infinite;
            animation-delay: 0.2s;
        }

        .fire-flame:nth-child(10) {
            left: 88%;
            width: 140px;
            height: 260px;
            background: linear-gradient(to top, rgba(218, 112, 214, 0.9), rgba(148, 0, 211, 0.5), transparent);
            animation: flicker2 1.5s ease-in-out infinite;
        }

        .fire-glow {
            position: absolute;
            bottom: -30px;
            left: 0;
            right: 0;
            height: 200px;
            background: radial-gradient(ellipse at bottom, rgba(186, 85, 211, 0.6) 0%, rgba(138, 43, 226, 0.4) 30%, rgba(75, 0, 130, 0.2) 60%, transparent 80%);
            animation: glowPulse 2s ease-in-out infinite;
        }

        @keyframes flicker1 {
            0%, 100% { transform: scaleY(1) scaleX(1) translateY(0) rotate(-1deg); opacity: 0.9; }
            25% { transform: scaleY(1.15) scaleX(0.9) translateY(-20px) rotate(1deg); opacity: 1; }
            50% { transform: scaleY(0.9) scaleX(1.1) translateY(-10px) rotate(-2deg); opacity: 0.85; }
            75% { transform: scaleY(1.1) scaleX(0.95) translateY(-25px) rotate(2deg); opacity: 0.95; }
        }

        @keyframes flicker2 {
            0%, 100% { transform: scaleY(1) scaleX(1) translateY(0) rotate(1deg); opacity: 0.85; }
            30% { transform: scaleY(1.2) scaleX(0.85) translateY(-30px) rotate(-1deg); opacity: 1; }
            60% { transform: scaleY(0.85) scaleX(1.15) translateY(-15px) rotate(2deg); opacity: 0.9; }
        }

        @keyframes flicker3 {
            0%, 100% { transform: scaleY(1) scaleX(1) translateY(0) rotate(0deg); opacity: 0.9; }
            20% { transform: scaleY(1.1) scaleX(0.92) translateY(-15px) rotate(-1deg); opacity: 0.95; }
            40% { transform: scaleY(1.25) scaleX(0.88) translateY(-35px) rotate(1deg); opacity: 1; }
            70% { transform: scaleY(0.95) scaleX(1.08) translateY(-20px) rotate(-2deg); opacity: 0.88; }
        }

        @keyframes glowPulse {
            0%, 100% { opacity: 0.8; transform: scaleX(1); }
            50% { opacity: 1; transform: scaleX(1.05); }
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-eyebrow {
            font-family: 'Cinzel', serif;
            font-size: 0.8rem;
            color: var(--mint);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--lavender);
            max-width: 600px;
            margin: 0 auto;
            font-style: italic;
        }

        .section-dark {
            background: linear-gradient(180deg, transparent 0%, rgba(30, 19, 51, 0.5) 50%, transparent 100%);
        }

        .section-accent {
            position: relative;
            background: linear-gradient(180deg, transparent 0%, rgba(70, 43, 107, 0.2) 20%, rgba(70, 43, 107, 0.2) 80%, transparent 100%);
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            height: 400px;
            background: linear-gradient(145deg, var(--purple), var(--dark-emerald));
            border-radius: 4px;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(212, 168, 75, 0.3);
            border-radius: 4px;
        }

        .about-image-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cinzel', serif;
            color: var(--gold);
            font-size: 1.2rem;
            letter-spacing: 0.1em;
        }

        .about-content h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            color: var(--pale-mint);
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(212, 168, 75, 0.2);
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2.5rem;
            color: var(--gold);
            line-height: 1;
        }

        .stat-label {
            font-family: 'Cinzel', serif;
            font-size: 0.8rem;
            color: var(--lavender);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-top: 0.5rem;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: rgba(70, 43, 107, 0.3);
            border: 1px solid #3a3a3a;
            border-radius: 4px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 168, 75, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

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

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--gold);
            border-radius: 50%;
            font-size: 1.8rem;
        }

        .feature-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            color: var(--cream);
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }

        .feature-card p {
            font-size: 1rem;
            color: var(--lavender);
            line-height: 1.6;
        }

        /* Performers Section */
        .performers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .performer-card {
            background: linear-gradient(160deg, rgba(70, 43, 107, 0.3) 0%, rgba(15, 10, 24, 0.8) 100%);
            border: 1px solid rgba(139, 106, 173, 0.3);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .performer-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .performer-image {
            height: 200px;
            background: linear-gradient(145deg, var(--purple), var(--dark-emerald));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .performer-info {
            padding: 1.5rem;
            text-align: center;
        }

        .performer-info h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .performer-info p {
            font-size: 0.9rem;
            color: var(--lavender);
        }

        /* Vendors Section */
        .vendors-categories {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .vendor-category {
            background: linear-gradient(160deg, rgba(70, 43, 107, 0.4) 0%, rgba(13, 107, 78, 0.2) 100%);
            border: 1px solid rgba(212, 168, 75, 0.15);
            border-radius: 4px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

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

        .vendor-category-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .vendor-category h4 {
            font-family: 'Cinzel', serif;
            color: var(--cream);
            margin-bottom: 0.5rem;
        }

        .vendor-category p {
            font-size: 0.9rem;
            color: var(--lavender);
        }

        .vendor-cta {
            text-align: center;
            padding: 2rem;
            background: rgba(70, 43, 107, 0.3);
            border-radius: 4px;
            border: 1px dashed rgba(212, 168, 75, 0.3);
        }

        .vendor-cta h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .vendor-cta p {
            color: var(--lavender);
            margin-bottom: 1.5rem;
        }

        /* Costume Contest Section */
        .contest-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contest-info h3 {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .contest-info p {
            color: var(--pale-mint);
            margin-bottom: 1.5rem;
        }

        .contest-categories {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 2rem 0;
        }

        .contest-category {
            background: rgba(70, 43, 107, 0.3);
            padding: 1rem;
            border-radius: 4px;
            border-left: 3px solid var(--gold);
        }

        .contest-category h5 {
            font-family: 'Cinzel', serif;
            color: var(--cream);
            font-size: 0.9rem;
        }

        .contest-category p {
            font-size: 0.85rem;
            color: var(--lavender);
            margin: 0;
        }

        .contest-image {
            height: 400px;
            background: linear-gradient(145deg, var(--purple), var(--dark-emerald));
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 168, 75, 0.3);
        }

        .contest-image span {
            font-family: 'Cinzel', serif;
            color: var(--gold);
            font-size: 1.2rem;
        }

        /* Entertainment Schedule Section */
        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .schedule-card {
            border: 1px solid rgba(139, 106, 173, 0.3);
            border-radius: 4px;
            overflow: hidden;
            background: linear-gradient(160deg, rgba(70, 43, 107, 0.3) 0%, rgba(15, 10, 24, 0.8) 100%);
            transition: all 0.3s ease;
        }

        .schedule-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .schedule-card img {
            width: 100%;
            display: block;
        }

        .schedule-card h4 {
            font-family: 'Cinzel', serif;
            color: var(--gold);
            text-align: center;
            padding: 1rem;
            font-size: 1.2rem;
        }

        /* Parking Section */
        .parking-text {
            max-width: 800px;
            margin: 0 auto 3rem;
            text-align: center;
        }

        .parking-text p {
            color: var(--lavender);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .parking-photos {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .parking-photo {
            border: 1px solid rgba(139, 106, 173, 0.3);
            border-radius: 4px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.3);
        }

        .parking-photo img {
            width: 100%;
            height: 360px;
            object-fit: contain;
            display: block;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid rgba(139, 106, 173, 0.3);
            border-radius: 4px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(160deg, rgba(70, 43, 107, 0.4) 0%, rgba(13, 107, 78, 0.2) 100%);
            border: none;
            color: var(--cream);
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(160deg, rgba(70, 43, 107, 0.6) 0%, rgba(13, 107, 78, 0.3) 100%);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--gold);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: rgba(15, 10, 24, 0.5);
        }

        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
        }

        .faq-answer p {
            color: var(--lavender);
        }

        /* Tickets Section */
        .tickets-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .ticket-card {
            background: linear-gradient(160deg, rgba(70, 43, 107, 0.3) 0%, rgba(15, 10, 24, 0.8) 100%);
            border: 1px solid rgba(139, 106, 173, 0.3);
            border-radius: 4px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .ticket-card.featured {
            border-color: var(--gold);
            transform: scale(1.05);
        }

        .ticket-card.featured::before {
            content: 'Best Value';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--deep-purple);
            font-family: 'Cinzel', serif;
            font-size: 0.7rem;
            padding: 0.3rem 1rem;
            border-radius: 2px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .ticket-card:hover {
            border-color: var(--gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .ticket-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .ticket-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            color: var(--cream);
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }

        .ticket-price {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .ticket-description {
            font-size: 0.9rem;
            color: var(--lavender);
            margin-bottom: 1.5rem;
            min-height: 50px;
        }

        .ticket-card .btn {
            width: 100%;
            padding: 0.8rem 1rem;
            font-size: 0.8rem;
        }

        /* Location Section */
        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .location-info h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .location-address {
            font-size: 1.3rem;
            color: var(--cream);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .location-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .location-detail {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--lavender);
        }

        .location-detail strong {
            color: var(--mint);
            min-width: 80px;
        }

        .location-map {
            height: 350px;
            background: linear-gradient(145deg, rgba(70, 43, 107, 0.4), rgba(13, 107, 78, 0.3));
            border: 1px solid rgba(212, 168, 75, 0.2);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-map span {
            font-family: 'Cinzel', serif;
            color: var(--gold);
            letter-spacing: 0.1em;
        }

        /* Sponsors Section */
        .sponsors-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .sponsor-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 168, 75, 0.15);
            border-radius: 4px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .sponsor-card:hover {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.08);
        }

        .sponsor-card span {
            font-family: 'Cinzel', serif;
            color: var(--lavender);
            font-size: 0.9rem;
        }

        .sponsors-cta {
            text-align: center;
        }

        .sponsors-cta p {
            color: var(--lavender);
            margin-bottom: 1.5rem;
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(160deg, rgba(70, 43, 107, 0.4) 0%, rgba(13, 107, 78, 0.2) 100%);
            border: 1px solid rgba(212, 168, 75, 0.2);
            border-radius: 4px;
            padding: 3rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        .newsletter h4 {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .newsletter p {
            color: var(--lavender);
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            background: rgba(15, 10, 24, 0.8);
            border: 1px solid rgba(139, 106, 173, 0.3);
            border-radius: 2px;
            color: var(--cream);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
        }

        .newsletter-form input::placeholder {
            color: var(--lavender);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--gold);
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(30, 19, 51, 0.8) 100%);
            border-top: 1px solid rgba(212, 168, 75, 0.1);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(212, 168, 75, 0.1);
        }

        .footer-brand h4 {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: var(--lavender);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(212, 168, 75, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cream);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            display: block;
        }

        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(212, 168, 75, 0.1);
        }

        .footer-column h5 {
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            color: var(--cream);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--lavender);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            font-size: 0.85rem;
            color: var(--lavender);
        }

        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            opacity: 0;
            top: 100vh;
            animation: float 20s infinite;
        }

        .particle.gold { background: var(--gold); }
        .particle.purple { background: var(--light-purple); }
        .particle.green { background: var(--mint); }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); opacity: 0; }
            10% { opacity: 0.4; }
            90% { opacity: 0.4; }
            100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
        }

        /* Focus states */
        a:focus, button:focus {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .features-grid, .performers-grid, .vendors-categories {
                grid-template-columns: repeat(2, 1fr);
            }
            .tickets-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .ticket-card.featured {
                transform: none;
            }
            .sponsors-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .navbar { padding: 1rem; }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(15, 10, 24, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid rgba(212, 168, 75, 0.2);
            }
            .nav-links.active { display: flex; }
            .nav-cta { display: none; }
            .mobile-toggle { display: flex; }
            .hero-content {
                padding: 2rem 1.5rem;
                padding-bottom: 4rem;
            }
            .countdown { gap: 1rem; }
            .countdown-number { font-size: 1.8rem; }
            .fire-container { height: 300px; }
            .fire-flame { filter: blur(12px); transform: scale(0.7); }
            .about-grid, .location-grid, .contest-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .about-image, .contest-image { height: 250px; }
            .features-grid, .performers-grid, .vendors-categories, .tickets-grid, .schedule-grid, .parking-photos {
                grid-template-columns: 1fr;
            }
            .sponsors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .btn {
                font-size: 0.75rem;
                padding: 0.85rem 1.5rem;
                letter-spacing: 0.08em;
                white-space: nowrap;
            }
            .newsletter-form {
                flex-direction: column;
            }
            .footer-top {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-social { justify-content: center; }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .events-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Events (splash page) */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .event-card {
            display: flex;
            flex-direction: column;
            background: linear-gradient(160deg, rgba(70, 43, 107, 0.3) 0%, rgba(15, 10, 24, 0.85) 100%);
            border: 1px solid rgba(212, 168, 75, 0.2);
            border-radius: 6px;
            overflow: hidden;
            text-decoration: none;
            transition: all 0.35s ease;
        }

        .event-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
        }

        .event-card-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            height: auto;
            object-fit: cover;
            display: block;
        }

        .event-card-body {
            padding: 2rem;
            text-align: center;
        }

        .event-card-date {
            font-family: 'Cinzel', serif;
            font-size: 0.85rem;
            color: var(--mint);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .event-card h3 {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.6rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .event-card p {
            color: var(--lavender);
            margin-bottom: 1.5rem;
        }
