:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #db0000;
    /* Cinema Red */
    --gold-color: #d4af37;
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --spacing-md: 4rem;
    --spacing-lg: 8rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* Backgrounds */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg-texture.png');
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: overlay;
}

.bg-accent {
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background-image: url('img/bg-accent.png');
    background-size: cover;
    opacity: 0.4;
    pointer-events: none;
    z-index: -2;
    animation: drift 20s infinite alternate ease-in-out;
}

@keyframes drift {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.05) translate(20px, 10px);
    }
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

/* UI Elements */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-sub {
    font-family: var(--font-display);
    opacity: 0.7;
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
}

.hero-statement {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.main-cta {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    font-weight: bold;
}

.main-cta:hover {
    background: transparent;
    color: var(--accent-color);
}

/* Manifesto */
.manifesto {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.manifesto h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0.5;
}

.manifesto-text p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.manifesto-text .highlight {
    color: white;
    opacity: 1;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.signature {
    margin-top: 4rem;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent-color);
}

/* Awards */
.awards {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(to bottom, transparent, rgba(20, 20, 20, 0.8));
}

.awards h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.section-intro {
    text-align: center;
    opacity: 0.6;
    margin-bottom: 4rem;
    font-family: var(--font-display);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.award-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: 0.4s;
    background: rgba(0, 0, 0, 0.3);
}

.award-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.award-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.award-card p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.grand-statement {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(45deg, rgba(229, 9, 20, 0.1), transparent);
    border-color: rgba(229, 9, 20, 0.3);
}

.grand-statement h3 {
    font-size: 3rem;
    color: var(--accent-color);
}

.audience-award {
    margin-top: 4rem;
    text-align: center;
    border: 1px solid var(--gold-color);
    padding: 3rem;
    color: var(--gold-color);
}

/* Gallery */
.gallery {
    padding: var(--spacing-lg) 0;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    /* Larger thumbnails */
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 16/9;
    overflow: hidden;
    transition: 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    /* Clickable */
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--accent-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rules */
.rules {
    padding: var(--spacing-lg) 0;
    opacity: 0.8;
}

.rules-list {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.rule-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Venue */
.venue {
    padding: var(--spacing-lg) 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('img/venue-bg.png');
    background-size: cover;
    background-attachment: fixed;
    /* Parallax */
    background-position: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.venue-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.venue-info {
    flex: 1;
    min-width: 300px;
}

.venue-name {
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.venue-address {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.venue-map {
    flex: 1;
    min-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Timeline */
.timeline {
    padding: var(--spacing-lg) 0;
    background-image: linear-gradient(to top, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0.8)), url('img/timeline-bg.png');
    background-size: cover;
    background-attachment: fixed;
    /* Parallax */
    background-position: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-event {
    text-align: center;
    margin-bottom: 4rem;
    border: 1px solid var(--accent-color);
    padding: 2rem;
    display: inline-block;
    width: 100%;
}

.timeline-event .t-date {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.timeline-event .t-name {
    font-size: 2.5rem;
    font-family: var(--font-display);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
}

.t-item {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 1rem;
    transition: 0.3s;
}

.t-item:hover {
    border-left-color: var(--accent-color);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
}

.t-date {
    font-family: var(--font-display);
    font-size: 1.2rem;
    opacity: 0.6;
}

.t-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.2rem 0;
}

.t-sub {
    font-size: 0.8rem;
    opacity: 0.4;
    text-transform: uppercase;
}

.t-item.highlight {
    border-left-color: var(--accent-color);
}

.t-item.highlight .t-date {
    color: var(--accent-color);
    opacity: 1;
}

/* FAQ */
.faq {
    padding: var(--spacing-lg) 0;
}

.faq h2 {
    margin-bottom: 4rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.faq-item h3 {
    font-family: var(--font-body);
    /* Question style */
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.faq-item p {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.c-earn {
    opacity: 0.5;
    margin-bottom: 2rem;
    font-style: italic;
}

.contact a {
    color: var(--text-color);
    border-bottom: 1px solid var(--accent-color);
}

.copyright {
    margin-top: 4rem;
    font-size: 0.8rem;
    opacity: 0.3;
}

/* Tickets */
.tickets {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.tickets h2 {
    margin-bottom: 2rem;
}

.ticket-box p {
    margin-bottom: 2rem;
    opacity: 0.6;
}

.ticket-btn {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    border-style: dashed;
    opacity: 0.5;
    cursor: not-allowed;
}

.ticket-btn:hover {
    background: transparent;
    color: inherit;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid var(--text-color);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .nav-cta {
        display: none;
    }

    /* Hide CTA in nav on mobile */
    .grand-statement {
        grid-column: auto;
    }
}