/* ============================================
   BFC EVENTS - Pure CSS Animations
   No dependencies, just pure CSS magic
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-card: #151515;
    --color-primary: #e63946;
    --color-secondary: #ff6b35;
    --color-accent: #f4a261;
    --color-crimson: #dc143c;
    --color-crimson-hover: #e43b5c;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-text-dim: #555555;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-crimson: linear-gradient(135deg, var(--color-crimson), var(--color-crimson-hover));
    --gradient-dark: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(80px, 12vw, 150px);
    --container-width: 1400px;
    --container-padding: clamp(20px, 5vw, 60px);
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    
    /* Z-index layers */
    --z-cursor: 11000;
    --z-nav: 1000;
    --z-overlay: 100;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-bg);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    touch-action: pan-y;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: var(--color-text);
}

/* Screen Reader Only - for SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   Noise Overlay
   ============================================ */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-overlay);
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   Custom Cursor
   ============================================ */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate3d(var(--cursor-x, 0px), var(--cursor-y, 0px), 0) translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
    will-change: transform;
}


.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate3d(var(--cursor-x, 0px), var(--cursor-y, 0px), 0) translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
    opacity: 0.5;
    will-change: transform;
    display: none;
}


.cursor.hover {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--color-primary);
    mix-blend-mode: normal;
}

.cursor-follower.hover {
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/* ============================================
   Container
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(1.05);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-img:hover {
    filter: brightness(1.15) drop-shadow(0 0 8px rgba(230, 57, 70, 0.4));
    transform: scale(1.04);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text);
    letter-spacing: 2px;
}

.logo-accent {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-primary);
    letter-spacing: 3px;
}

/* Footer logo */
.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(230, 57, 70, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    padding: 12px 24px !important;
    border-radius: 4px;
    transition: transform 0.3s var(--ease-out-back), box-shadow 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    color: var(--color-text) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.nav-cta-crimson {
    background: var(--gradient-crimson);
}

.nav-cta-crimson:hover {
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.35);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(230, 57, 70, 0.3);
}

.lang-switcher i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--color-text);
}

.lang-btn.active {
    color: var(--color-bg);
    background: var(--gradient-primary);
}

.lang-divider {
    color: var(--color-text-dim);
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .lang-switcher {
        position: absolute;
        top: 20px;
        right: 70px;
        margin-left: 0;
        padding: 6px 10px;
    }

    .lang-switcher i {
        display: none;
    }
}

@media (max-width: 480px) {
    .lang-switcher {
        right: 60px;
        padding: 5px 8px;
    }

    .lang-btn {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.5s var(--ease-out-expo);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-colosseum {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0.12;
    filter: brightness(0.8) contrast(1.2) saturate(0);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.4) 100%),
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(184, 134, 11, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 70%, rgba(184, 134, 11, 0.08) 0%, transparent 40%);
    animation: gradientPulse 10s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: linesMove 20s linear infinite;
}

@keyframes linesMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

/* Gladiator Arena Background */
.octagon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, 95vw);
    height: min(900px, 95vw);
    background:
        conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.03) 45deg, transparent 90deg);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: octagonRotate 40s linear infinite;
}

@keyframes octagonRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Gladiator Shield/Emblem */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(500px, 70vw);
    height: min(500px, 70vw);
    background:
        radial-gradient(circle at center, transparent 30%, rgba(212, 175, 55, 0.02) 31%, rgba(212, 175, 55, 0.02) 32%, transparent 33%),
        radial-gradient(circle at center, transparent 45%, rgba(212, 175, 55, 0.015) 46%, rgba(212, 175, 55, 0.015) 47%, transparent 48%),
        radial-gradient(circle at center, transparent 60%, rgba(230, 57, 70, 0.02) 61%, rgba(230, 57, 70, 0.02) 62%, transparent 63%);
    animation: shieldPulse 6s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Crossed Swords Decoration */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(700px, 85vw);
    height: min(700px, 85vw);
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20 80 L50 20 L80 80 M30 70 L50 30 L70 70' stroke='%23d4af37' stroke-width='0.5' fill='none'/%3E%3Ccircle cx='50' cy='50' r='15' stroke='%23d4af37' stroke-width='0.3' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: swordsRotate 60s linear infinite;
}

@keyframes swordsRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* Light Rays */
.hero-gradient::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background:
        conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            rgba(212, 175, 55, 0.02) 10deg,
            transparent 20deg,
            transparent 70deg,
            rgba(212, 175, 55, 0.015) 80deg,
            transparent 90deg,
            transparent 160deg,
            rgba(230, 57, 70, 0.02) 170deg,
            transparent 180deg,
            transparent 250deg,
            rgba(212, 175, 55, 0.02) 260deg,
            transparent 270deg,
            transparent 340deg,
            rgba(212, 175, 55, 0.015) 350deg,
            transparent 360deg
        );
    animation: raysRotate 30s linear infinite;
}

@keyframes raysRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Hero Poster - Floating Card */
.hero-poster {
    position: relative;
    max-height: 65vh;
    width: auto;
    border-radius: 12px;
    overflow: visible;
    animation: posterReveal 1s var(--ease-out-expo) 0.3s both;
    perspective: 800px;
}

.hero-poster img {
    height: 65vh;
    max-height: 550px;
    width: auto;
    display: block;
    border-radius: 12px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(230, 57, 70, 0.15),
        0 0 80px rgba(212, 175, 55, 0.08);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.hero-poster:hover img {
    transform: scale(1.02);
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(230, 57, 70, 0.25),
        0 0 120px rgba(212, 175, 55, 0.12);
}

/* Glowing border effect */
.hero-poster::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 14px;
    background: linear-gradient(
        160deg,
        rgba(212, 175, 55, 0.6),
        rgba(230, 57, 70, 0.4),
        rgba(212, 175, 55, 0.2),
        rgba(230, 57, 70, 0.6)
    );
    background-size: 300% 300%;
    animation: borderShift 6s ease-in-out infinite;
    z-index: -1;
    opacity: 0.7;
}

/* Subtle light sweep across poster */
.hero-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    z-index: 1;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: lightSweep 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lightSweep {
    0%, 100% {
        background-position: 200% 0;
    }
    50% {
        background-position: -200% 0;
    }
}

/* Ambient glow behind the card */
.poster-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(230, 57, 70, 0.15) 0%,
        rgba(212, 175, 55, 0.06) 40%,
        transparent 70%);
    filter: blur(40px);
    z-index: -2;
    animation: glowPulse 4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes borderShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glowPulse {
    from {
        opacity: 0.5;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes posterReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Poster edge fade - seamless blending into background */
.poster-edge-fade {
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
    background:
        linear-gradient(to bottom, transparent 75%, rgba(10, 10, 10, 0.3) 98%),
        linear-gradient(to top, transparent 85%, rgba(10, 10, 10, 0.3) 100%),
        linear-gradient(to right, transparent 85%, rgba(10, 10, 10, 0.25) 100%),
        linear-gradient(to left, transparent 85%, rgba(10, 10, 10, 0.25) 100%);
}

/* Floating particles around the poster */
.poster-particles {
    position: absolute;
    inset: -60px;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

.poster-particles::before,
.poster-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

/* Ember-like rising particles via radial gradients */
.poster-particles::before {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 10% 90%, rgba(230, 57, 70, 0.9) 50%, transparent 100%),
        radial-gradient(2px 2px at 25% 85%, rgba(212, 175, 55, 0.8) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 92%, rgba(255, 107, 53, 0.7) 50%, transparent 100%),
        radial-gradient(2px 2px at 55% 88%, rgba(230, 57, 70, 0.8) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 70% 91%, rgba(212, 175, 55, 0.9) 50%, transparent 100%),
        radial-gradient(2px 2px at 85% 87%, rgba(255, 107, 53, 0.7) 50%, transparent 100%),
        radial-gradient(1px 1px at 15% 80%, rgba(212, 175, 55, 0.6) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 60% 82%, rgba(230, 57, 70, 0.6) 50%, transparent 100%),
        radial-gradient(1px 1px at 90% 85%, rgba(212, 175, 55, 0.5) 50%, transparent 100%),
        radial-gradient(2px 2px at 35% 95%, rgba(230, 57, 70, 0.7) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 75% 93%, rgba(255, 107, 53, 0.6) 50%, transparent 100%),
        radial-gradient(1px 1px at 50% 96%, rgba(212, 175, 55, 0.8) 50%, transparent 100%);
    animation: particlesRise 4s ease-in-out infinite;
}

.poster-particles::after {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(1.5px 1.5px at 8% 93%, rgba(212, 175, 55, 0.7) 50%, transparent 100%),
        radial-gradient(2px 2px at 20% 88%, rgba(230, 57, 70, 0.6) 50%, transparent 100%),
        radial-gradient(1px 1px at 45% 94%, rgba(255, 107, 53, 0.8) 50%, transparent 100%),
        radial-gradient(2px 2px at 65% 86%, rgba(212, 175, 55, 0.7) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 80% 90%, rgba(230, 57, 70, 0.8) 50%, transparent 100%),
        radial-gradient(1px 1px at 92% 92%, rgba(255, 107, 53, 0.6) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 30% 89%, rgba(212, 175, 55, 0.5) 50%, transparent 100%),
        radial-gradient(2px 2px at 50% 84%, rgba(230, 57, 70, 0.5) 50%, transparent 100%);
    animation: particlesRise 4s ease-in-out 2s infinite;
}

@keyframes particlesRise {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }
    15% {
        opacity: 0.9;
    }
    70% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero-poster img {
        height: auto;
        width: 85vw;
        max-height: none;
    }
    .poster-particles {
        inset: -30px;
    }
    .poster-particles::before,
    .poster-particles::after {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .hero-poster img {
        width: 90vw;
    }
    .poster-particles {
        inset: -20px;
    }
}

/* Roman Temple Frame Overlay */
.hero-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    animation: frameReveal 2s var(--ease-out-expo) 0.5s both;
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: invert(1) sepia(1) hue-rotate(15deg) saturate(2) brightness(2);
    mix-blend-mode: screen;
    opacity: 0.15;
    mask-image: radial-gradient(ellipse 60% 55% at center, transparent 35%, white 75%);
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at center, transparent 35%, white 75%);
}

@keyframes frameReveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .hero-frame img {
        opacity: 0.1;
    }
}

@media (max-width: 600px) {
    .hero-frame img {
        opacity: 0.06;
    }
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 4;
    padding: 0 var(--container-padding);
    gap: 28px;
}

/* Paint splatter gradient behind poster - soft base */
.hero-content::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 70%;
    z-index: -1;
    background:
        radial-gradient(ellipse 25% 40% at 15% 50%, rgba(230, 57, 70, 0.35) 0%, transparent 100%),
        radial-gradient(ellipse 20% 55% at 35% 35%, rgba(212, 175, 55, 0.2) 0%, transparent 100%),
        radial-gradient(ellipse 30% 45% at 50% 55%, rgba(230, 57, 70, 0.25) 0%, transparent 100%),
        radial-gradient(ellipse 22% 50% at 70% 40%, rgba(212, 175, 55, 0.25) 0%, transparent 100%),
        radial-gradient(ellipse 25% 35% at 88% 55%, rgba(230, 57, 70, 0.3) 0%, transparent 100%);
    filter: blur(40px);
    animation: splatterPulse 6s ease-in-out infinite alternate;
}

/* Sharper streaks layer */
.hero-content::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 60%;
    z-index: -1;
    background:
        radial-gradient(ellipse 50% 4% at 5% 40%, rgba(230, 57, 70, 0.45) 0%, transparent 100%),
        radial-gradient(ellipse 45% 3% at 50% 52%, rgba(212, 175, 55, 0.3) 0%, transparent 100%),
        radial-gradient(ellipse 50% 4% at 95% 45%, rgba(230, 57, 70, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 40% 3% at 25% 60%, rgba(255, 107, 53, 0.3) 0%, transparent 100%),
        radial-gradient(ellipse 40% 3% at 75% 38%, rgba(212, 175, 55, 0.28) 0%, transparent 100%);
    filter: blur(6px);
    animation: splatterPulse 6s ease-in-out 3s infinite alternate;
}

/* Defined hard lines - full viewport width */
.splatter-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(172deg, transparent 42%, rgba(230, 57, 70, 0.35) 42.3%, rgba(230, 57, 70, 0.35) 42.8%, transparent 43.1%),
        linear-gradient(175deg, transparent 52%, rgba(212, 175, 55, 0.25) 52.2%, rgba(212, 175, 55, 0.25) 52.7%, transparent 52.9%),
        linear-gradient(168deg, transparent 58%, rgba(230, 57, 70, 0.2) 58.2%, rgba(230, 57, 70, 0.2) 58.6%, transparent 58.8%),
        linear-gradient(178deg, transparent 35%, rgba(255, 107, 53, 0.22) 35.15%, rgba(255, 107, 53, 0.22) 35.45%, transparent 35.6%),
        linear-gradient(170deg, transparent 66%, rgba(212, 175, 55, 0.2) 66.15%, rgba(212, 175, 55, 0.2) 66.45%, transparent 66.6%),
        linear-gradient(183deg, transparent 28%, rgba(230, 57, 70, 0.18) 28.15%, rgba(230, 57, 70, 0.18) 28.35%, transparent 28.5%),
        linear-gradient(176deg, transparent 74%, rgba(184, 134, 11, 0.18) 74.15%, rgba(184, 134, 11, 0.18) 74.35%, transparent 74.5%);
    filter: blur(0.5px);
    opacity: 1;
    animation: linesPulse 5s ease-in-out infinite alternate;
}

@keyframes splatterPulse {
    from {
        opacity: 0.7;
        transform: translateX(-50%) scaleX(1);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.03);
    }
}

@keyframes linesPulse {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s var(--ease-out-expo) 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

/* BFC4 Title Line */
.title-line:first-child {
    color: var(--color-text);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

.char {
    display: inline-block;
    animation: charReveal 0.8s var(--ease-out-expo) both;
    animation-delay: calc(var(--i) * 0.05s + 0.3s);
}

@keyframes charReveal {
    from {
        opacity: 0;
        transform: translateY(100px) rotateX(-90deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

/* Gladiators Title - Clean Golden Style */
.title-outline {
    position: relative;
    color: transparent;
    background: linear-gradient(180deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    animation: titleGlow 3s ease-in-out infinite;
}

.title-outline::before {
    content: 'GLADIATORS';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(212, 175, 55, 1) 20%,
        rgba(184, 134, 11, 1) 50%,
        rgba(212, 175, 55, 1) 80%,
        rgba(255, 255, 255, 0.9) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: titleReveal 1.2s var(--ease-out-expo) 1.2s forwards;
}

.title-outline::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: lineExpand 1s var(--ease-out-expo) 2s forwards;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.5));
    }
}

@keyframes lineExpand {
    to {
        width: 60%;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--color-text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-subtitle .word {
    display: inline-block;
    animation: wordFade 0.6s var(--ease-out-expo) both;
    animation-delay: calc(var(--i) * 0.1s + 1s);
}

.hero-subtitle .accent {
    color: var(--color-primary);
}

@keyframes wordFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-crimson {
    background: var(--gradient-crimson);
}

.btn-crimson::before {
    background: linear-gradient(135deg, var(--color-crimson-hover), var(--color-crimson));
}

.btn-crimson:hover {
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.35);
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-primary i {
    transition: transform 0.3s var(--ease-out-back);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: rgba(230, 57, 70, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}


/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 0.8s var(--ease-out-expo) 2s both;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    left: -1px;
    animation: scrollDown 2s var(--ease-in-out) infinite;
}

@keyframes scrollDown {
    0% {
        top: 0;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: calc(100% - 10px);
        opacity: 0;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    z-index: 4;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1s both;
}

.stat {
    text-align: right;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-text);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-content {
        gap: 20px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 16px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-cta .btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: 2px;
}

.section-title span {
    display: block;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Reveal Animations (Triggered by JS)
   ============================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.reveal-text.revealed span {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text.revealed span:nth-child(2) {
    transition-delay: 0.1s;
}

/* Fade-only reveal — no vertical shift, smooth on mobile */
.reveal-fade {
    opacity: 0;
    transition: opacity 0.5s ease;
    transition-delay: var(--delay, 0s);
}

.reveal-fade.revealed {
    opacity: 1;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--color-bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.about-lead {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text {
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background: var(--color-primary);
    color: var(--color-text);
    transform: scale(1.1);
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* About Visual */
.about-visual {
    position: relative;
    perspective: 800px;
}

.visual-frame {
    position: relative;
    aspect-ratio: 3/4;
    max-width: 450px;
    margin: 0 auto;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    border-radius: 12px;
    cursor: pointer;
}

.visual-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        transparent 40%,
        transparent 60%,
        rgba(230, 57, 70, 0.4)
    );
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.visual-frame:hover::before {
    opacity: 1;
}

.visual-frame::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 24px;
    background: radial-gradient(
        ellipse at center,
        rgba(230, 57, 70, 0.15) 0%,
        transparent 70%
    );
    z-index: -1;
    filter: blur(20px);
    transition: opacity 0.5s ease;
    opacity: 0.6;
}

.visual-frame:hover::after {
    opacity: 1;
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-primary);
    z-index: 0;
    transition: width 0.4s ease, height 0.4s ease, box-shadow 0.4s ease;
}

.visual-frame:hover .frame-corner {
    width: 70px;
    height: 70px;
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.4);
}

.frame-corner.top-left {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.top-right {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bottom-left {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
}

.frame-corner.bottom-right {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
}

.visual-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.visual-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 60px 20px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 3;
}

.visual-image img,
.visual-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo), filter 0.5s ease;
}

.about-visual:hover .visual-image img,
.about-visual:hover .visual-image video {
    transform: scale(1.05);
}

.visual-image.video-paused video {
    filter: brightness(0.4);
}

.video-pause-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 4;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.visual-image.video-paused .video-pause-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.video-mute-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.video-mute-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(to top, var(--color-bg) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

.visual-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--color-bg);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(230, 57, 70, 0.3);
    z-index: 3;
}

.badge-year {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

.badge-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .frame-corner {
        display: none;
    }

    .visual-frame::before {
        display: none;
    }

    .visual-frame::after {
        display: none;
    }

    .visual-frame {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 9/16;
        max-height: 70vh;
        margin: 0 auto;
    }

    .visual-image video {
        object-fit: contain;
        background: #000;
    }

    .about-visual {
        order: -1;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .visual-badge {
        position: relative;
        right: auto;
        bottom: auto;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
        padding: 10px 0;
        border: none;
        background: none;
        margin-bottom: 10px;
    }

    .badge-year {
        display: inline;
    }

    .badge-number {
        font-size: 1.8rem;
    }
}

/* ============================================
   Events Section
   ============================================ */
.events {
    background: var(--color-bg);
    padding-bottom: clamp(50px, 8vw, 90px);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.event-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s var(--ease-out-expo);
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-primary);
    padding: 15px;
    text-align: center;
    z-index: 2;
    border-radius: 8px;
}

.date-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg-card), transparent);
}

.event-content {
    padding: 25px;
}

.event-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.event-meta i {
    color: var(--color-primary);
    margin-right: 5px;
}

.event-glow {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 60px rgba(230, 57, 70, 0.3);
    pointer-events: none;
}

.event-card:hover .event-glow {
    opacity: 1;
}

/* Next Event Placeholder */
.event-card-next {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.08), rgba(255, 255, 255, 0.02));
    text-align: center;
}

.event-next-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
}

.event-next-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.event-next-value {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    letter-spacing: 1px;
    color: var(--color-text);
}

@media (max-width: 900px) {
    .event-card-next {
        min-height: 260px;
    }
}

/* TBA Event Cards */
.event-card-tba {
    opacity: 0.7;
}

.event-card-tba:hover {
    opacity: 0.85;
}

.event-date-tba {
    background: var(--color-text-dim) !important;
}

.event-image-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image-placeholder .placeholder-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.event-image-placeholder .placeholder-content i {
    font-size: 4rem;
    color: var(--color-text-dim);
    opacity: 0.5;
}

.events-cta {
    text-align: center;
}

/* ============================================
   Past Events Section
   ============================================ */
.past-events {
    background: var(--color-bg);
    padding-top: clamp(50px, 8vw, 90px);
}

.past-event {
    margin-bottom: 60px;
}

.past-event:last-child {
    margin-bottom: 0;
}

.past-event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.past-event-info {
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
}

.past-event-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--color-text);
}

.past-event-date {
    font-size: 0.9rem;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.past-event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.past-event-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.past-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo), filter 0.3s ease;
    filter: grayscale(20%);
}

.past-event-image:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(230, 57, 70, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay i {
    font-size: 2rem;
    color: var(--color-text);
    transform: scale(0.5);
    transition: transform 0.4s var(--ease-out-back);
}

.past-event-image:hover .image-overlay {
    opacity: 1;
}

.past-event-image:hover .image-overlay i {
    transform: scale(1);
}

@media (max-width: 768px) {
    .past-event-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
    }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.active .lightbox-image {
    opacity: 1;
    transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}


/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, transparent 50%),
        linear-gradient(315deg, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
    animation: ctaPulse 5s ease-in-out infinite alternate;
}

@keyframes ctaPulse {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(230, 57, 70, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s var(--ease-out-expo);
}

.faq-item:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-2px);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.faq-answer {
    padding-left: 35px;
}

.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .faq-answer {
        padding-left: 0;
        margin-top: 10px;
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--color-bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.contact-text {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-text-muted);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    background: var(--color-bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Form Status Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    animation: slideDown 0.4s ease;
}

.form-message i {
    font-size: 1.2rem;
}

.form-success {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

.form-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    outline: none;
    transition: border-color 0.3s ease;
}

/* Fix browser autofill background */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group select:-webkit-autofill,
.form-group textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--color-bg-card) inset !important;
    -webkit-text-fill-color: var(--color-text) !important;
    caret-color: var(--color-text);
    transition: background-color 5000s ease-in-out 0s;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.form-group select option {
    background: var(--color-bg-card);
    color: var(--color-text);
    padding: 10px;
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--color-primary);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s var(--ease-out-expo);
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--color-text-dim);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BFC Museum Section
   ============================================ */
.museum-section {
    background: var(--color-bg);
    padding-top: clamp(50px, 8vw, 90px);
    padding-bottom: clamp(40px, 6vw, 80px);
}

.museum-entry {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.museum-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.museum-enter-btn {
    position: relative;
    overflow: hidden;
}

.museum-enter-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* ============================================
   Museum Overlay (Full-screen Experience)
   ============================================ */
.museum-overlay {
    position: fixed;
    inset: 0;
    background: #050508;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

.museum-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Ambient Effects */
.museum-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.museum-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 10% 80%, rgba(212,175,55,0.15) 0%, transparent 100%),
        radial-gradient(2px 2px at 90% 40%, rgba(230,57,70,0.1) 0%, transparent 100%);
    background-size: 250px 250px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-250px); }
}

.museum-fog {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(10,10,15,0.9) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(230,57,70,0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(212,175,55,0.03) 0%, transparent 40%);
    animation: fogPulse 8s ease-in-out infinite;
}

@keyframes fogPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.museum-spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background:
        conic-gradient(from 180deg at 50% 0%,
            transparent 40%,
            rgba(255,255,255,0.02) 45%,
            rgba(255,255,255,0.04) 50%,
            rgba(255,255,255,0.02) 55%,
            transparent 60%);
    animation: spotlightSway 10s ease-in-out infinite;
}

@keyframes spotlightSway {
    0%, 100% { transform: translateX(-50%) rotate(-2deg); }
    50% { transform: translateX(-50%) rotate(2deg); }
}

/* Close Button */
.museum-close {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text);
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.museum-close:hover {
    background: rgba(230,57,70,0.2);
    border-color: var(--color-primary);
}

.museum-close i {
    font-size: 1rem;
}

/* 3D Corridor - Complete Redesign for Depth Illusion */
.museum-corridor {
    position: absolute;
    inset: 0;
    z-index: 10;
    transition: opacity 0.5s ease, transform 0.5s ease;
    overflow: hidden;
}

.museum-corridor.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

/* Corridor Wrapper - Creates the 3D space */
.corridor-wrapper {
    position: absolute;
    inset: 0;
    perspective: 800px;
    perspective-origin: 50% 45%;
}

/* Corridor Floor - Tiled floor receding into distance */
.corridor-floor {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 55%;
    background:
        /* Floor fade to darkness at horizon */
        linear-gradient(to top,
            rgba(8,8,12,0) 0%,
            rgba(8,8,12,0.3) 40%,
            rgba(8,8,12,0.95) 85%,
            rgba(8,8,12,1) 100%),
        /* Tile pattern */
        repeating-linear-gradient(90deg,
            rgba(20,20,28,1) 0px,
            rgba(20,20,28,1) 80px,
            rgba(30,30,40,1) 80px,
            rgba(30,30,40,1) 160px),
        repeating-linear-gradient(0deg,
            rgba(20,20,28,1) 0px,
            rgba(20,20,28,1) 80px,
            rgba(30,30,40,1) 80px,
            rgba(30,30,40,1) 160px);
    transform: rotateX(70deg);
    transform-origin: center bottom;
    background-color: #14141c;
}

/* Floor highlight/reflection */
.corridor-floor::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(212,175,55,0.03) 0%,
        transparent 30%);
}

/* Corridor Ceiling */
.corridor-ceiling {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 35%;
    background:
        linear-gradient(to bottom,
            rgba(5,5,8,1) 0%,
            rgba(5,5,8,0.9) 50%,
            transparent 100%),
        radial-gradient(ellipse at 50% 100%, rgba(212,175,55,0.08) 0%, transparent 60%);
    transform: rotateX(-60deg);
    transform-origin: center top;
    background-color: #050508;
}

/* Side Walls - The key to the corridor illusion */
.corridor-wall {
    position: absolute;
    top: 10%;
    height: 80%;
    width: 45%;
    transform-style: preserve-3d;
}

.corridor-wall-left {
    left: 0;
    transform-origin: left center;
    transform: rotateY(75deg) translateZ(0);
    background:
        /* Wall panels */
        repeating-linear-gradient(to bottom,
            #12121a 0px,
            #12121a 2px,
            #18182a 2px,
            #18182a 150px,
            #12121a 150px,
            #12121a 152px),
        /* Vertical trim lines */
        repeating-linear-gradient(to right,
            transparent 0px,
            transparent 148px,
            rgba(212,175,55,0.1) 148px,
            rgba(212,175,55,0.15) 150px,
            transparent 150px,
            transparent 300px);
    background-color: #15152a;
    box-shadow: inset -50px 0 80px rgba(0,0,0,0.8);
}

.corridor-wall-right {
    right: 0;
    transform-origin: right center;
    transform: rotateY(-75deg) translateZ(0);
    background:
        /* Wall panels */
        repeating-linear-gradient(to bottom,
            #12121a 0px,
            #12121a 2px,
            #18182a 2px,
            #18182a 150px,
            #12121a 150px,
            #12121a 152px),
        /* Vertical trim lines */
        repeating-linear-gradient(to left,
            transparent 0px,
            transparent 148px,
            rgba(212,175,55,0.1) 148px,
            rgba(212,175,55,0.15) 150px,
            transparent 150px,
            transparent 300px);
    background-color: #15152a;
    box-shadow: inset 50px 0 80px rgba(0,0,0,0.8);
}

/* Vanishing point / End of corridor */
.corridor-end {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 200px;
    background:
        radial-gradient(ellipse at center,
            rgba(212,175,55,0.15) 0%,
            rgba(212,175,55,0.05) 40%,
            transparent 70%);
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow:
        0 0 60px rgba(212,175,55,0.1),
        inset 0 0 40px rgba(0,0,0,0.5);
}

.corridor-end::before {
    content: 'BFC';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: rgba(212,175,55,0.4);
    letter-spacing: 4px;
}

/* Wall Sconces / Lights */
.corridor-wall-left::before,
.corridor-wall-right::before {
    content: '';
    position: absolute;
    top: 15%;
    width: 30px;
    height: 60px;
    background: linear-gradient(to bottom,
        rgba(212,175,55,0.6) 0%,
        rgba(212,175,55,0.1) 100%);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 20px 60px rgba(212,175,55,0.3);
}

.corridor-wall-left::before {
    right: 20%;
}

.corridor-wall-right::before {
    left: 20%;
}

/* Museum Frames Container */
.museum-frames {
    position: absolute;
    inset: 0;
    pointer-events: none;
    perspective: 1000px;
    perspective-origin: 50% 45%;
}

/* Individual Museum Frames */
.museum-frame {
    position: absolute;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.4s var(--ease-out-expo);
    transform-style: preserve-3d;
}

.museum-frame:hover .frame-light {
    opacity: 1;
}

.museum-frame:hover .frame-border {
    box-shadow:
        0 0 40px rgba(212,175,55,0.5),
        inset 0 0 20px rgba(212,175,55,0.1);
}

.museum-frame:hover .frame-image img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Frame Positions - Creating depth illusion */
.frame-left {
    width: 200px;
    height: 280px;
    left: 8%;
    top: 42%;
    transform: translateY(-50%) perspective(800px) rotateY(25deg);
}

.frame-left:hover {
    transform: translateY(-50%) perspective(800px) rotateY(20deg) scale(1.1);
    z-index: 10;
}

.frame-right {
    width: 200px;
    height: 280px;
    right: 8%;
    top: 42%;
    transform: translateY(-50%) perspective(800px) rotateY(-25deg);
}

.frame-right:hover {
    transform: translateY(-50%) perspective(800px) rotateY(-20deg) scale(1.1);
    z-index: 10;
}

/* Frame in the distance (center/far) */
.frame-far {
    width: 140px;
    height: 200px;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.85;
    filter: brightness(0.7);
}

.frame-far:hover {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
    filter: brightness(1);
    z-index: 10;
}

/* Frame shadow on floor */
.museum-frame::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse at center,
        rgba(0,0,0,0.4) 0%,
        transparent 70%);
    transform: rotateX(60deg);
}

/* Frame Border (Golden Frame) */
.frame-border {
    position: absolute;
    inset: -15px;
    border: 4px solid;
    border-image: linear-gradient(135deg, #d4af37, #b8860b, #d4af37, #f4e4ba, #d4af37) 1;
    box-shadow:
        0 0 20px rgba(212,175,55,0.2),
        inset 0 0 15px rgba(0,0,0,0.5);
    transition: box-shadow 0.4s ease;
}

.frame-border::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(212,175,55,0.3);
}

/* Frame Image */
.frame-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111;
}

.frame-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.85) contrast(1.1);
}

.museum-frame:hover .frame-image img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

/* Frame Spotlight */
.frame-light {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100px;
    background: linear-gradient(to bottom,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.02) 50%,
        transparent 100%);
    opacity: 0.5;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Frame Label */
.frame-label {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--color-text);
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Museum Hint */
.museum-hint {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    animation: hintPulse 2s ease-in-out infinite;
}

.museum-hint i {
    font-size: 1.2rem;
    color: var(--color-primary);
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================
   Museum Detail View
   ============================================ */
.museum-detail {
    position: absolute;
    inset: 0;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: rgba(5,5,8,0.95);
}

.museum-detail.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.museum-detail-back {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text);
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.museum-detail-back:hover {
    background: rgba(230,57,70,0.2);
    border-color: var(--color-primary);
}

.museum-detail-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.museum-detail-poster {
    position: relative;
}

.museum-detail-poster::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 3px solid;
    border-image: linear-gradient(135deg, #d4af37, #b8860b, #d4af37) 1;
    box-shadow: 0 0 40px rgba(212,175,55,0.2);
}

.museum-detail-poster img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.museum-detail-info {
    padding: 20px 0;
}

.museum-detail-date {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

.museum-detail-date::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-primary);
}

.museum-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.museum-detail-description {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.9;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 20px;
}

.museum-detail-description::-webkit-scrollbar {
    width: 4px;
}

.museum-detail-description::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.museum-detail-description::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.museum-detail-description p {
    margin-bottom: 20px;
}

.museum-detail-description p:last-child {
    margin-bottom: 0;
}

.museum-detail-description strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Fight Card Table */
.fight-card-table {
    margin-top: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.fight-card-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    min-width: 580px;
}

.fight-card-table thead {
    background: rgba(212, 175, 55, 0.15);
}

.fight-card-table th {
    padding: 10px 12px;
    text-align: left;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.fight-card-table td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-text-muted);
}

.fight-card-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.fight-card-table td:first-child {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    width: 30px;
}

.fight-card-table td:nth-child(2) {
    color: var(--color-text);
    font-weight: 500;
}

.fight-card-table .flag {
    width: 18px;
    height: 13px;
    margin-right: 5px;
    vertical-align: middle;
    border-radius: 1px;
    object-fit: cover;
}

.fight-card-note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    font-style: italic;
}

/* ============================================
   Mobile Carousel (Hidden on Desktop)
   ============================================ */
.museum-carousel {
    display: none;
}

/* Museum Responsive */
@media (max-width: 1024px) {
    .frame-left {
        width: 170px;
        height: 240px;
        left: 5%;
    }

    .frame-right {
        width: 170px;
        height: 240px;
        right: 5%;
    }

    .frame-far {
        width: 120px;
        height: 170px;
    }

    .corridor-end {
        width: 100px;
        height: 160px;
    }

    .museum-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .museum-detail-poster {
        max-width: 350px;
        margin: 0 auto;
    }

    .museum-detail-date {
        padding-left: 0;
    }

    .museum-detail-date::before {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Hide 3D corridor on mobile, show carousel */
    .corridor-wrapper,
    .museum-frames-desktop,
    .museum-hint {
        display: none;
    }

    .museum-carousel {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 80px 0 60px;
    }

    /* Carousel Track */
    .carousel-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
        padding: 20px 0;
        gap: 0;
    }

    .carousel-track::-webkit-scrollbar {
        display: none;
    }

    /* Carousel Slides */
    .carousel-slide {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 0 10px;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .carousel-slide:first-child {
        margin-left: 7.5%;
    }

    .carousel-slide:last-child {
        margin-right: 7.5%;
    }

    /* Carousel Card */
    .carousel-card {
        position: relative;
        background: linear-gradient(145deg, #151520, #0a0a10);
        border-radius: 16px;
        overflow: hidden;
        transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
    }

    .carousel-slide.active .carousel-card {
        transform: scale(1.02);
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    }

    /* Card Glow Effect */
    .carousel-card-glow {
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.3) 0%,
            transparent 50%,
            rgba(212, 175, 55, 0.2) 100%);
        border-radius: 18px;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .carousel-slide.active .carousel-card-glow {
        opacity: 1;
    }

    /* Card Border */
    .carousel-card-border {
        position: absolute;
        inset: 0;
        border: 2px solid rgba(212, 175, 55, 0.2);
        border-radius: 16px;
        pointer-events: none;
        transition: border-color 0.4s ease;
    }

    .carousel-slide.active .carousel-card-border {
        border-color: rgba(212, 175, 55, 0.5);
    }

    /* Card Image */
    .carousel-card-image {
        width: 100%;
        aspect-ratio: 3/4;
        overflow: hidden;
    }

    .carousel-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease, filter 0.4s ease;
        filter: brightness(0.8);
    }

    .carousel-slide.active .carousel-card-image img {
        filter: brightness(1);
    }

    /* Card Info */
    .carousel-card-info {
        padding: 20px;
        text-align: center;
        background: linear-gradient(to top, rgba(5,5,10,0.95) 0%, rgba(5,5,10,0.8) 100%);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .carousel-card-date {
        font-size: 0.75rem;
        color: var(--color-primary);
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .carousel-card-title {
        font-family: var(--font-display);
        font-size: 1.8rem;
        color: var(--color-text);
        margin: 5px 0;
        letter-spacing: 2px;
    }

    .carousel-card-subtitle {
        font-size: 0.8rem;
        color: var(--color-text-muted);
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .carousel-slide.active .carousel-card-subtitle {
        opacity: 1;
        transform: translateY(0);
    }

    /* Carousel Dots */
    .carousel-dots {
        display: flex;
        gap: 12px;
        margin-top: 25px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 2px solid rgba(212, 175, 55, 0.4);
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .carousel-dot.active {
        background: #d4af37;
        border-color: #d4af37;
        transform: scale(1.2);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    }

    /* Carousel Hint */
    .carousel-hint {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        color: var(--color-text-muted);
        font-size: 0.85rem;
        animation: carouselHintPulse 2s ease-in-out infinite;
    }

    .carousel-hint i {
        color: var(--color-primary);
        animation: swipeHint 1.5s ease-in-out infinite;
    }

    @keyframes swipeHint {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(5px); }
    }

    @keyframes carouselHintPulse {
        0%, 100% { opacity: 0.6; }
        50% { opacity: 1; }
    }

    /* Museum Close & Back buttons */
    .museum-close {
        top: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .museum-close span {
        display: none;
    }

    /* Detail View Mobile Fixes */
    .museum-detail {
        padding: 0;
        overflow-y: auto;
        align-items: flex-start;
    }

    .museum-detail-content {
        gap: 20px;
        align-items: center;
        padding: 80px 20px 40px;
        margin-top: 0;
    }

    .museum-detail-back {
        position: fixed;
        top: 15px;
        left: 15px;
        padding: 10px 16px;
        z-index: 30;
    }

    .museum-detail-back span {
        display: none;
    }

    .museum-detail-poster {
        max-width: 220px;
        margin-top: 20px;
    }

    .museum-detail-poster::before {
        inset: -10px;
    }

    .museum-detail-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .museum-detail-description {
        font-size: 0.9rem;
        max-height: none;
        padding-right: 0;
        line-height: 1.8;
    }

    .museum-detail-info {
        padding: 0 5px;
    }

    .museum-detail-date {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .museum-carousel {
        padding: 70px 0 50px;
    }

    .carousel-slide {
        flex: 0 0 88%;
    }

    .carousel-slide:first-child {
        margin-left: 6%;
    }

    .carousel-slide:last-child {
        margin-right: 6%;
    }

    .carousel-card-title {
        font-size: 1.5rem;
    }

    .carousel-card-info {
        padding: 15px;
    }

    .carousel-dots {
        margin-top: 20px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .museum-detail-content {
        padding: 70px 15px 30px;
    }

    .museum-detail-poster {
        max-width: 180px;
        margin-top: 25px;
    }

    .museum-detail-poster::before {
        inset: -8px;
        border-width: 2px;
    }

    .museum-detail-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .museum-detail-description {
        font-size: 0.85rem;
        line-height: 1.75;
    }

    .museum-detail-description p {
        margin-bottom: 15px;
    }

    .museum-detail-date {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .museum-detail-info {
        padding: 0;
    }
}

/* ============================================
   Global Mobile Overflow Prevention
   ============================================ */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        max-width: 100%;
        overflow-x: hidden;
    }

    section {
        overflow-x: hidden;
    }

    img, video {
        max-width: 100%;
        height: auto;
    }

    .about-grid {
        overflow: hidden;
    }

    .hero {
        max-width: 100vw;
    }

    .hero-content {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .hero-stats {
        max-width: 100%;
        padding: 0 10px;
    }
}
