:root {
    /* Color Palette - Dark Techno / Primal Theme */
    --bg-dark: #050505;
    --bg-darker: #020202;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent-green: #39FF14; /* Neon Jungle Green */
    --accent-purple: #B026FF; /* Electric Purple */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #050505;
    background-image: 
        linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.95) 40%, #000000 100%),
        url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scaffolding & Red LED Edge Glow */
body::before {
    content: '';
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    /* Underground Scaffold Grid */
    background-image: 
        linear-gradient(rgba(200, 0, 0, 0.15) 2px, transparent 2px),
        linear-gradient(90deg, rgba(200, 0, 0, 0.15) 2px, transparent 2px);
    background-size: 100px 100px;
    /* Strong Red LED strip glow from the edges */
    box-shadow: 
        inset 0 0 150px rgba(255, 0, 0, 0.3), 
        inset 0 0 60px rgba(255, 0, 0, 0.2);
}

/* Abstract Background */
.bg-abstract {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    opacity: 0.4;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    opacity: 0.15;
}

.blob-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    animation-delay: -10s;
    opacity: 0.1;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 100px) scale(1.2); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: var(--section-padding);
}

/* Navigation */
.confidential-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #d60000;
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 3px;
    z-index: 1000;
    text-transform: uppercase;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    z-index: 100;
    background: rgba(5, 5, 5, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-green);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    background: transparent; /* Now uses the global body background */
}

@media (max-width: 768px) {
    .hero-content {
        transform: translateY(-8vh);
    }
}

.subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Main Title Animation */
.glitch {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    color: white;
    animation: cinematicEntrance 2.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

@keyframes cinematicEntrance {
    0% {
        transform: scale(0.95);
        filter: blur(10px);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        filter: blur(0);
        opacity: 1;
    }
}

.theme-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 10px;
    margin-top: 1rem;
    animation: slowPulseGlow 4s infinite ease-in-out;
}

@keyframes slowPulseGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 0 0 5px rgba(255, 255, 255, 0.2);
        opacity: 0.8;
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.9), 0 0 15px rgba(255, 255, 255, 0.6);
        opacity: 1;
    }
}

.genre-tags {
    margin-top: 2rem;
    font-size: 1rem;
    letter-spacing: 5px;
    color: var(--text-muted);
}

.genre-tags .dot {
    margin: 0 15px;
    color: var(--accent-purple);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    color: var(--text-main);
    font-size: 1.5rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s;
}

.scroll-down:hover {
    opacity: 1;
    color: var(--accent-green);
}

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

/* Typography & Headings */
.section-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

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

/* Pitch Section */
.pitch-section {
    background: transparent;
    border: none;
}

.pitch-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(5, 5, 5, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.15);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 
        inset 0 0 50px rgba(255, 0, 0, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.5);
}

.pitch-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.vision-facts {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-facts .timeline-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    position: relative;
}

.vision-facts .timeline-list::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 20px;
    left: 4px;
    width: 2px;
    background: rgba(255, 0, 0, 0.4);
}

.vision-facts .timeline-list li {
    display: block;
    position: relative;
    padding: 0 0 1rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.05rem;
    color: #fff;
    align-items: initial;
}

.vision-facts .timeline-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: #000;
    border: 2px solid rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.vision-facts li {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    gap: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.vision-facts li:hover {
    transform: translateX(10px);
    border-color: var(--accent-purple);
}

.vision-facts i {
    font-size: 2.5rem;
    color: var(--accent-green);
    min-width: 50px;
    text-align: center;
}

.vision-facts div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.vision-facts strong {
    color: var(--accent-purple);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.vision-facts span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
}

.pitch-text .highlight {
    font-size: 1.8rem;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.4;
    border-left: 4px solid var(--accent-green);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

/* Lineup Section */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.artist-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s;
    backdrop-filter: blur(5px);
    text-align: center;
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Card Glow Effect on Hover */
.card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.headliner .card-glow {
    background: radial-gradient(circle, rgba(57, 255, 20, 0.15) 0%, transparent 70%);
    width: 600px;
    height: 600px;
}

.artist-card:hover .card-glow {
    opacity: 1;
}

/* Stages Section */
.stages-section {
    background: transparent;
}

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

.stage-card {
    background: #111;
    border-radius: 10px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s;
}

.stage-card:hover {
    transform: scale(1.02);
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent, rgba(57, 255, 20, 0.03), transparent);
    z-index: 0;
}

.stage-card.terrace::before {
    background: linear-gradient(45deg, transparent, rgba(176, 38, 255, 0.03), transparent);
}

.stage-info {
    position: relative;
    z-index: 1;
    text-align: center;
}

.stage-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: white;
}

.capacity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.capacity i {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.stage-card.terrace .capacity i {
    color: var(--accent-purple);
}

.capacity .number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.capacity .label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* Schedule Section */
.production-notice {
    text-align: center;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin: -1rem auto 4rem;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.production-notice i {
    color: var(--accent-green);
    font-size: 1.5rem;
}

.production-notice p {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stage-schedule {
    position: relative;
}

.stage-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-green);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

.terrace-title {
    color: var(--accent-purple);
}

.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(57, 255, 20, 0.3);
}

.terrace-timeline::before {
    background: rgba(176, 38, 255, 0.3);
}

.timeline-item {
    margin-bottom: 2.5rem;
    position: relative;
}

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

.timeline-item::after {
    content: '';
    position: absolute;
    left: -25px; /* Centers the dot on the left line */
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.terrace-timeline .timeline-item::after {
    background: var(--accent-purple);
    box-shadow: 0 0 10px var(--accent-purple);
}

.time {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.event {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
}

.highlight-event {
    color: var(--accent-green);
    font-weight: 900;
}

.terrace-timeline .highlight-event {
    color: var(--accent-purple);
}

/* Footer */
footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.sponsors p {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.sponsor-logos .dot {
    color: var(--accent-green);
}

.contact-info {
    margin-top: 3rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

/* Responsive */
@media (max-width: 900px) {
    .roster-grid {
        grid-template-columns: 1fr;
    }
    .sub-head {
        grid-column: span 1fr;
    }
    .stages-grid {
        grid-template-columns: 1fr;
    }
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    .logo {
        font-size: 0.9rem;
    }
    .nav-links {
        text-align: right;
        width: auto;
        font-size: 0.55rem !important;
        padding: 0.3rem 0.5rem !important;
        letter-spacing: 1px !important;
    }
    .nav-links i {
        font-size: 0.55rem !important;
    }
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .genre-tags {
        font-size: 0.65rem;
        gap: 0.3rem;
        flex-wrap: nowrap;
        white-space: nowrap;
        letter-spacing: 1px;
    }
    .genre-tags span {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .pitch-content {
        padding: 1.5rem 1rem;
    }
    .pitch-text p.highlight {
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }
    .pitch-text p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin-bottom: 2rem !important;
    }
    .vision-facts {
        gap: 1rem;
    }
    .vision-facts li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }
    .vision-facts li i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .vision-facts li strong {
        font-size: 1rem;
    }
    .vision-facts li span {
        font-size: 0.9rem !important;
    }
    .vision-facts .timeline-list {
        margin-left: 0.2rem;
        margin-top: 0.5rem;
    }
    .vision-facts .timeline-list li {
        font-size: 0.85rem !important;
        padding: 0 0 0.75rem 1.2rem;
    }
    .vision-facts .timeline-list li::before {
        top: 4px;
        width: 8px;
        height: 8px;
    }
    .vision-facts .timeline-list::before {
        top: 6px;
        bottom: 15px;
        left: 3px;
    }
}
