        :root {
            --forest: #2F6B3F;
            --sand: #F2EAE0;
            --dark: #1A1A1A;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Space Mono', monospace; /* Using Space Mono as high-quality alternative for Iosevka Charon */
            background-color: var(--sand);
            color: var(--dark);
            margin: 0;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .mono {
            font-family: 'JetBrains Mono', monospace;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        /* CUSTOM UTILITIES */
        .bg-forest { background-color: var(--forest); }
        .text-forest { color: var(--forest); }
        .bg-sand { background-color: var(--sand); }
        .border-forest { border-color: var(--forest); }

        /* 1️⃣ HEADER & MARQUEE */
        header {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 80px;
            background: var(--sand);
            border-right: 1px solid rgba(47, 107, 63, 0.2);
            z-index: 100;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 40px 0;
        }

        .nav-link {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            text-decoration: none;
            color: var(--forest);
            font-weight: 700;
            font-size: 0.75rem;
            padding: 20px 0;
            transition: 0.3s;
            position: relative;
        }

        .nav-link:hover { color: var(--dark); }
        .nav-link::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 1px;
            height: 0;
            background: var(--forest);
            transition: 0.3s;
        }
        .nav-link:hover::after { height: 100%; }

        .marquee-container {
            position: fixed;
            top: 0;
            left: 80px;
            width: calc(100% - 80px);
            background: var(--forest);
            color: var(--sand);
            padding: 10px 0;
            z-index: 90;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* 2️⃣ HERO SECTION */
        .hero {
            height: 100vh;
            margin-left: 80px;
            position: relative;
            overflow: hidden;
            background: #000;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://i.pinimg.com/736x/45/c2/3b/45c23b4f49e340c23abdaaa8ce3f407d.jpg') center/cover no-repeat;
            filter: brightness(0.6) saturate(0.8);
            transform: scale(1.1);
            animation: slowZoom 20s infinite alternate;
        }

        @keyframes slowZoom {
            to { transform: scale(1); }
        }

        .shape {
            position: absolute;
            border: 2px solid var(--forest);
            opacity: 0.3;
            pointer-events: none;
            animation: float 10s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0); }
            50% { transform: translate(20px, -20px) rotate(10deg); }
        }

        /* 3️⃣ ASYMMETRICAL GRID */
        .lineup-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            padding: 100px 0;
        }

        .artist-card {
            position: relative;
            overflow: hidden;
            background: var(--white);
            transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
        }

        .artist-card:hover { transform: translateY(-10px); box-shadow: 20px 20px 0 var(--forest); }
        .artist-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: 0.5s; }
        .artist-card:hover img { filter: grayscale(0); transform: scale(1.05); }

        /* 4️⃣ HORIZONTAL TIMELINE */
        .timeline-wrapper {
            background: var(--forest);
            padding: 120px 0;
            color: var(--sand);
            overflow-x: auto;
            scrollbar-width: none;
        }

        .timeline-scroll {
            display: flex;
            padding: 0 100px;
            gap: 150px;
            min-width: 2000px;
        }

        .timeline-item {
            position: relative;
            min-width: 300px;
        }

        .timeline-line {
            position: absolute;
            top: 50%;
            left: -150px;
            width: 150px;
            height: 1px;
            background: rgba(242, 234, 224, 0.3);
        }

        /* AUTH MODALS */
        .modal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal.active { display: flex; }

        .auth-card {
            background: var(--sand);
            width: 100%;
            max-width: 450px;
            padding: 60px;
            border: 4px solid var(--forest);
            position: relative;
        }

        /* MASONRY */
        .masonry {
            column-count: 3;
            column-gap: 30px;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 30px;
            background: var(--white);
            padding: 15px;
            transform: rotate(calc(var(--r, 0) * 1deg));
        }

        .page { display: none; margin-left: 80px; padding-top: 50px; }
        .page.active { display: block; }

        .btn-fest {
            background: var(--forest);
            color: var(--sand);
            padding: 15px 35px;
            font-weight: 700;
            transition: 0.3s;
            display: inline-block;
            border: 2px solid var(--forest);
        }

        .btn-fest:hover { background: transparent; color: var(--forest); }

        #quickview {
            position: fixed;
            top: 0;
            right: -100%;
            width: 50vw;
            height: 100vh;
            background: var(--white);
            z-index: 500;
            transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 80px;
            box-shadow: -20px 0 60px rgba(0,0,0,0.1);
            overflow-y: auto;
        }
        #quickview.active { right: 0; }