/* ====================================================================
   ROOT VARIABLES & BASE RESET
   ==================================================================== */
:root {
    --bg-void: #08080c;
    --bg-surface: #0e0e14; 
    --bg-elevated: #18181e;
    --gold: #FFC000;
    --gold-light: #D4AF37;
    --text-primary: #FFFFFF;
    --text-muted: #C1C1CC;
    --border-faint: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --shadow-sm: 0 8px 20px rgba(0,0,0,0.5);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.8);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --pad-global: clamp(20px, 5vw, 60px);
    --max-width-content: 1400px;
}

*, *::before, *::after { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
body { margin: 0; padding: 0; background-color: var(--bg-void); color: var(--text-primary); font-family: var(--font-body); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.25s ease; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }

/* --- PREMIUM TEXTURE --- */
.bg-premium-texture {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
}

/* --- FLOATING HEADER & NAV --- */
.master-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: background 0.3s ease; background: linear-gradient(to bottom, rgba(8,8,12,0.98) 0%, transparent 100%); }
.master-header.scrolled { background: var(--bg-surface); padding: 12px 0; border-bottom: 1px solid var(--border-faint); box-shadow: var(--shadow-sm); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 var(--pad-global); display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.brand-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo-link img { height: 55px !important; width: auto !important; }
.text-gradient-gold { background: linear-gradient(to right, #FFF, var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-elements { display: flex; align-items: center; gap: 40px; justify-content: flex-end; flex-grow: 1; }
.main-nav { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; list-style: none; margin: 0; padding: 0; gap: 30px; }
.nav-links li a { font-family: var(--font-heading); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-primary); transition: color 0.25s ease; }
.nav-links li a:hover { color: var(--gold-light); }

.search-form { display: flex; align-items: center; background: var(--bg-glass); border: 1px solid var(--border-faint); border-radius: 20px; padding: 6px 16px; transition: border-color 0.25s ease; }
.search-form:focus-within { border-color: var(--gold-light); }
.search-input { background: transparent; border: none; outline: none; color: var(--text-primary); font-family: var(--font-heading); font-size: 13px; font-weight: 500; letter-spacing: 0.5px; width: 160px; transition: width 0.25s ease; }
.search-input::placeholder { color: var(--text-muted); }
.search-btn { background: transparent; border: none; outline: none; color: var(--gold-light); cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; margin-left: 10px; transition: transform 0.25s ease; }
.search-btn:hover { transform: scale(1.08); }

.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 20px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1001; }
.hamburger .bar { height: 2px; width: 100%; background-color: var(--gold-light); border-radius: 2px; transition: all 0.3s ease; }

/* ====================================================================
   HERO SLIDER
   ==================================================================== */
.hero-wrapper { width: 92%; max-width: 1200px; margin: 110px auto 40px auto; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; background: transparent; }
.hero-swiper { width: 100%; height: 100%; }
.hero-slide { position: relative; width: 100%; height: auto; display: flex; justify-content: center; align-items: center; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1600 / 617; }

.hero-pagination, .platform-pagination { 
    display: flex; justify-content: center; gap: 6px; position: absolute; bottom: 15px !important; z-index: 20;
}
.swiper-pagination-bullet { 
    width: 6px; height: 6px; background: var(--text-muted); opacity: 0.3; 
    border-radius: 10px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
}
.swiper-pagination-bullet-active { width: 22px; background: var(--gold-light) !important; opacity: 1; }

/* --- SECTION LAYOUTS --- */
.page-section { padding: 40px 0; position: relative; z-index: 2; border-top: 1px solid var(--border-faint); }
.section-dark { background: var(--bg-void); }
.section-elevated { background: var(--bg-surface); }
.container { max-width: var(--max-width-content); margin: 0 auto; padding: 0 var(--pad-global); }
.centered-intro { text-align: center; max-width: 600px; margin: 0 auto 30px; }
.section-label { font-family: var(--font-mono); font-size: 11px; color: var(--gold-light); letter-spacing: 3px; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; text-transform: uppercase; }
.intro-title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); margin: 0; line-height: 1.2; color: var(--text-primary); }

/* ====================================================================
   BOOKMYSHOW STYLE CATEGORY PILLS
   ==================================================================== */
.category-pills-section { padding: 5px 0 40px 0; }
.category-swiper { padding: 5px 0; overflow: hidden !important; width: 100%; }

.category-swiper .swiper-wrapper { display: flex; justify-content: safe center; }
.category-swiper .swiper-slide { width: auto !important; }

.category-pill {
    position: relative;
    display: inline-flex; flex-direction: row; align-items: center; gap: 8px;
    padding: 10px 22px 10px 28px; background: var(--bg-glass); border: 1px solid var(--border-faint);
    border-radius: 4px 10px 10px 0;
    clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
    color: var(--text-muted); font-family: var(--font-body);
    font-size: 14px; font-weight: 600; white-space: nowrap; letter-spacing: 0.5px;
    transition: all 0.25s ease; cursor: pointer;
}
.category-pill svg { flex-shrink: 0; width: 16px; height: 16px; transition: stroke 0.25s ease; stroke: var(--text-muted); }
.category-pill:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.category-pill:hover svg { stroke: var(--gold-light); }
.category-pill.active { background: var(--gold-light); border-color: var(--gold-light); color: #000; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); transform: translateY(-2px); }
.category-pill.active svg { stroke: #000; }
.category-pill.active::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 50%; transform: translateX(-50%);
    width: 55%;
    border-bottom: 2px dashed var(--gold-light);
}

@media (max-width: 900px) {
    .category-swiper .swiper-wrapper { justify-content: safe center; } 
    .category-pill { padding: 8px 16px 8px 22px; font-size: 12px; }
    .category-pill svg { width: 14px; height: 14px; }
}

/* ====================================================================
   SAFE ZONE PADDING
   ==================================================================== */
.event-swiper {
    padding-top: 25px !important;
    padding-bottom: 60px !important; 
    margin-top: -25px; 
    overflow: hidden !important;
}

/* ====================================================================
   EVENT CARDS & SWIPER
   ==================================================================== */
.event-slider-container { width: 100%; padding: 0 10px; position: relative; }
@media (min-width: 1024px) { .event-slider-container { padding: 0 45px; } }

.event-swiper .swiper-wrapper { display: flex; align-items: stretch; }
.event-swiper .swiper-slide { height: auto !important; display: flex; justify-content: center; align-items: stretch; }

.event-card { 
    width: 100%; height: 100%; display: flex; flex-direction: column; 
    background: var(--bg-elevated); border-radius: 14px; 
    overflow: hidden; cursor: pointer; position: relative; 
    border: 1px solid var(--border-faint); box-shadow: var(--shadow-sm); 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease; 
}
@media(hover:hover) { 
    .event-card:hover { transform: translate3d(0, -8px, 0); box-shadow: 0 15px 30px rgba(0,0,0,0.8), 0 0 15px rgba(212, 175, 55, 0.15); border-color: rgba(212, 175, 55, 0.5); z-index: 10; } 
    .event-card:hover .card-visual img { transform: scale(1.05); } 
}

.card-visual { width: 100%; aspect-ratio: 16 / 9; flex-shrink: 0; position: relative; overflow: hidden; background: var(--bg-void); min-height: 160px; }
.event-card .card-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); }
.card-visual-gradient { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-elevated), transparent 80%); z-index: 1; }

.tags-container { position: absolute; top: 12px; left: 12px; z-index: 5; display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-weight: 700; font-size: 9px; text-transform: uppercase; letter-spacing: 1px; padding: 5px 10px; border: 1px solid var(--border-faint); border-radius: 4px; color: var(--text-primary); background: var(--bg-glass); backdrop-filter: blur(4px); }
.tag.live { color: #000; background: var(--gold-light); border: none; }

.card-body { padding: 20px 20px 0; flex-grow: 1; display: flex; flex-direction: column; z-index: 2; }
.event-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; line-height: 1.3; margin: 0 0 12px 0; text-transform: uppercase; color: var(--text-primary); }
.card-details-block { margin-top: auto; background: var(--bg-glass); padding: 10px; border-radius: 8px; border: 1px solid var(--border-faint); }
.card-detail-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 5px; }
.card-detail-row:last-child { margin-bottom: 0; }

.ticket-perforation {
    position: relative;
    flex-shrink: 0;
    height: 0;
    border-top: 1px dashed rgba(212, 175, 55, 0.35);
    margin: 0 14px;
}
.ticket-perforation .notch-dot {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--bg-void);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.ticket-perforation .notch-dot.left { left: -22px; }
.ticket-perforation .notch-dot.right { right: -22px; }
.ticket-perforation.archived { border-top-color: rgba(255,255,255,0.15); }
.ticket-perforation.archived .notch-dot { background: var(--bg-surface); }
.detail-label { font-family: var(--font-mono); font-size: 9px; color: var(--gold-light); text-transform: uppercase; display: flex; align-items: center; gap: 5px; }
.detail-value { font-size: 0.85rem; font-weight: 500; color: var(--text-primary); font-family: var(--font-body); }

.card-footer-actions { padding: 16px 20px 20px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 10px; z-index: 5; margin-top: auto; }
.card-footer-actions::before {
    content: '';
    grid-column: 1 / -1;
    display: block;
    height: 14px;
    margin-bottom: 4px;
    background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.35) 0 1px, transparent 1px 4px, rgba(255,255,255,0.2) 4px 5px, transparent 5px 8px);
    opacity: 0.35;
}
.btn-action { display: flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 10px 14px; border-radius: 6px; cursor: pointer; transition: all 0.2s ease; width: 100%; border: none; }
.btn-action.outline { background: var(--bg-glass); border: 1px solid var(--border-faint); color: var(--text-primary); }
.btn-action.outline:hover { background: var(--border-faint); }
.btn-action.solid { background: var(--gold-light); color: #000; }
.btn-action.solid:hover { background: #e0b93b; transform: translateY(-2px); }
.btn-action.solid.disabled { background: var(--border-faint); color: var(--text-muted); cursor: not-allowed; }

.card-archived { opacity: 0.6; border-color: var(--border-faint); cursor: default; }
.card-archived .card-visual img { filter: grayscale(80%) brightness(0.8); }
.card-archived .card-details-block { background: transparent; border: none; border-top: 1px solid var(--border-faint); border-radius: 0; padding: 10px 0 0 0; }

.custom-swiper-next, .custom-swiper-prev {
    color: var(--gold-light); top: 50%; transform: translateY(-50%); 
    width: 32px; height: 32px; 
    background: rgba(10, 10, 14, 0.85); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; z-index: 10; opacity: 0; transition: opacity 0.25s ease, background 0.25s ease;
}
.custom-swiper-next:after, .custom-swiper-prev:after { font-size: 12px; font-weight: 900; }
.event-slider-container .custom-swiper-prev { left: 4px; opacity: 0.8; }
.event-slider-container .custom-swiper-next { right: 4px; opacity: 0.8; }
.hero-wrapper:hover .custom-swiper-next, .hero-wrapper:hover .custom-swiper-prev,
.event-slider-container:hover .custom-swiper-next, .event-slider-container:hover .custom-swiper-prev { opacity: 1; }
.custom-swiper-next:hover, .custom-swiper-prev:hover { background: var(--gold-light); color: #000; }

/* ====================================================================
   SPLIDE PLATFORM CARDS
   ==================================================================== */
.platform-splide {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 20px 0 50px 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 120px, black calc(100% - 120px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 120px, black calc(100% - 120px), transparent 100%);
}

.splide__track {
    overflow: visible !important;
}

.splide__slide {
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.5;
}

.splide__slide.is-active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
}

.platform-card.ticket-card {
    position: relative;
    width: 320px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(145deg, rgba(28, 28, 36, 0.92) 0%, rgba(14, 14, 20, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 20px 20px 18px;
    box-shadow: 0 10px 25px -10px rgba(0,0,0,0.75);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.platform-card.ticket-card::before,
.platform-card.ticket-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px; height: 20px;
    background: var(--bg-void);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
    z-index: 2;
}
.platform-card.ticket-card::before { left: -10px; }
.platform-card.ticket-card::after { right: -10px; }

.splide__slide.is-active .platform-card.ticket-card {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 30px -8px rgba(0,0,0,0.85), 0 0 20px rgba(212, 175, 55, 0.12);
}

.ticket-index {
    position: absolute;
    top: 10px; right: 18px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 1.5px;
    color: rgba(212, 175, 55, 0.45);
    z-index: 3;
}

.ticket-icon {
    flex-shrink: 0;
    width: 46px; height: 46px; border-radius: 13px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
    transition: all 0.4s ease;
}
.ticket-icon svg { width: 20px; height: 20px; }

.splide__slide.is-active .ticket-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    transform: scale(1.08);
}

.ticket-divider {
    align-self: stretch;
    width: 1px;
    flex-shrink: 0;
    background-image: linear-gradient(rgba(212, 175, 55, 0.5) 50%, transparent 0%);
    background-size: 1px 8px;
    background-repeat: repeat-y;
}

.ticket-text { text-align: left; min-width: 0; }
.ticket-text h4 { font-family: var(--font-heading); font-size: 15px; margin: 0 0 4px 0; color: var(--text-primary); font-weight: 700; line-height: 1.25; transition: color 0.3s ease; }
.ticket-text p { font-family: var(--font-body); font-size: 11px; color: var(--text-muted); line-height: 1.4; margin: 0; }
.splide__slide.is-active .ticket-text h4 { color: var(--gold-light); }

/* Custom Pagination Dots */
.splide__pagination { bottom: 0px !important; }
.splide__pagination__page {
    background: var(--text-muted) !important;
    opacity: 0.3 !important;
    transition: all 0.3s ease !important;
}
.splide__pagination__page.is-active {
    background: var(--gold-light) !important;
    opacity: 1 !important;
    width: 22px !important;
    border-radius: 10px !important;
}

@media (max-width: 900px) {
    .platform-splide {
        -webkit-mask-image: linear-gradient(to right, transparent 0, black 30px, black calc(100% - 30px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, black 30px, black calc(100% - 30px), transparent 100%);
    }
    .platform-card.ticket-card { width: 270px; padding: 16px 16px 16px 14px; gap: 12px; border-radius: 14px; }
    .ticket-icon { width: 40px; height: 40px; border-radius: 11px; }
    .ticket-icon svg { width: 18px; height: 18px; }
    .ticket-text h4 { font-size: 13px; }
    .ticket-text p { font-size: 10px; }
    .ticket-index { top: 8px; right: 14px; font-size: 8px; }
}

/* ====================================================================
   PREMIUM SECTION DIVIDERS & GRAPHICS
   ==================================================================== */
.premium-divider { display: flex; align-items: center; justify-content: center; padding: 40px 0; max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.premium-divider .line { flex-grow: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3) 50%, transparent); }
.premium-divider svg { margin: 0 20px; opacity: 0.6; }
.floating-graphic { position: absolute; z-index: 0; pointer-events: none; opacity: 0.15; }
.graphic-1 { top: 25%; right: -50px; }
.graphic-2 { bottom: 20%; left: -50px; }

/* ====================================================================
   INNER CIRCLE VIP
   ==================================================================== */
.inner-circle-section { padding: 60px 20px; position: relative; z-index: 2; }
.inner-circle-container {
    max-width: 900px; margin: 0 auto;
    background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-void) 100%);
    border: 1px solid var(--gold-light);
    border-radius: 20px; padding: 50px 30px; position: relative; overflow: hidden; text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7), inset 0 0 0 8px rgba(212, 175, 55, 0.04), inset 0 0 0 9px rgba(212, 175, 55, 0.15);
}
.inner-circle-container::before,
.inner-circle-container::after {
    content: '';
    position: absolute;
    width: 26px; height: 26px;
    border-color: var(--gold-light);
    border-style: solid;
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
}
.inner-circle-container::before { top: 16px; left: 16px; border-width: 1.5px 0 0 1.5px; }
.inner-circle-container::after { bottom: 16px; right: 16px; border-width: 0 1.5px 1.5px 0; }
.seal-watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: auto; opacity: 0.04; z-index: 0; pointer-events: none; }
.inner-circle-content { position: relative; z-index: 1; }
.inner-circle-title { font-family: var(--font-heading); font-size: 36px; color: var(--text-primary); margin: 0 0 15px 0; font-weight: 700; }
.inner-circle-desc { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); max-width: 600px; margin: 0 auto 35px auto; line-height: 1.6; }
.inner-circle-form { display: flex; justify-content: center; gap: 12px; max-width: 500px; margin: 0 auto; }
.inner-circle-form input { flex-grow: 1; background: var(--bg-void); border: 1px solid var(--border-faint); border-radius: 8px; padding: 14px 18px; color: var(--text-primary); font-family: var(--font-body); font-size: 13px; outline: none; transition: border-color 0.25s ease; }
.inner-circle-form input:focus { border-color: var(--gold-light); }
.inner-circle-form .btn-action { width: auto; padding: 14px 26px; }

/* ====================================================================
   MODALS
   ==================================================================== */
.premium-modal-overlay { position: fixed; inset: 0; z-index: 100000; background: rgba(8,8,12,0.96); display: flex; justify-content: center; align-items: center; padding: var(--pad-global); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.premium-modal-container { background: var(--bg-surface); border: 1px solid var(--gold-light); border-radius: 20px; width: 100%; max-width: 900px; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; position: relative; transform: scale(0.95) translateY(10px); box-shadow: var(--shadow-lg); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.modal-grid { display: flex; flex-direction: row; width: 100%; height: 100%; overflow-y: auto; flex: 1; }
.modal-poster-col { width: 45%; background-color: var(--bg-void); display: flex; align-items: center; justify-content: center; padding: 25px; position: relative; flex-shrink: 0; border-right: 1px solid var(--border-faint); }
.modal-poster-col img { width: 100%; height: auto; max-height: 75vh; object-fit: contain; border-radius: 10px; z-index: 2; box-shadow: var(--shadow-sm); }
.modal-poster-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70%; height: 70%; background: var(--gold-light); filter: blur(50px); opacity: 0.1; z-index: 1; pointer-events: none; }
.modal-img-mobile { display: none !important; }
.modal-img-desktop { display: block; }
.modal-info-col { width: 55%; padding: 35px 35px 25px; display: flex; flex-direction: column; justify-content: flex-start; overflow-y: auto; }
.modal-header-info { margin-bottom: 12px; }
#modal-tag { margin-bottom: 10px; display: inline-block; }
#modal-title { font-family: var(--font-heading); font-size: 28px; line-height: 1.15; margin-bottom: 8px; color: var(--text-primary); font-weight: 700; }
.modal-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 1px solid var(--border-faint); border-bottom: 1px solid var(--border-faint); padding: 20px 0; margin-bottom: 20px; }
.meta-item { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; font-family: var(--font-body); }
.meta-label { font-size: 9px; color: var(--gold-light); font-family: var(--font-mono); letter-spacing: 1.5px; text-transform: uppercase; }
.meta-value { font-size: 14px; font-weight: 500; color: var(--text-primary); line-height: 1.4; word-break: break-word; }
.capacity-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; width: 100%; gap: 10px; }
.btn-seat-map { background: transparent; color: var(--gold-light); border: 1px solid var(--gold-light); padding: 6px 12px; border-radius: 4px; font-size: 10px; font-weight: 600; letter-spacing: 0.5px; cursor: pointer; transition: all 0.25s ease; font-family: var(--font-body); }
.btn-seat-map:hover { background: var(--gold-light); color: #000; }
.modal-desc-container { flex-grow: 1; margin-top: 15px; font-family: var(--font-body); }
.modal-desc-container .meta-label { display: block; margin-bottom: 8px; }
#modal-desc { font-size: 13px; line-height: 1.7; color: var(--text-muted); margin: 0; white-space: pre-wrap; word-wrap: break-word; max-height: 200px; overflow-y: auto; padding-right: 5px; }
#modal-desc::-webkit-scrollbar { width: 4px; }
#modal-desc::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 10px; }
.modal-action-bar { margin-top: 25px; }
.modal-action-bar .btn-action { width: 100%; padding: 16px; font-size: 13px; letter-spacing: 2px; border-radius: 10px; }
.modal-close { position: absolute; top: 15px; right: 15px; background: var(--bg-glass); color: var(--text-muted); border: 1px solid var(--border-faint); width: 34px; height: 34px; border-radius: 50%; font-size: 16px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
.modal-close:hover { background: var(--border-faint); transform: rotate(90deg); color: var(--gold-light); }

/* SEAT MATRIX MODAL */
#seat-modal.z-index-fix { z-index: 100001; } 
.seat-modal-container { max-width: 450px !important; min-height: auto !important; display: flex; flex-direction: column; align-items: center; padding: 30px 25px; }
.seat-modal-title { font-family: var(--font-heading); font-size: 22px; color: var(--text-primary); margin-bottom: 5px; text-align: center; }
.seat-modal-subtitle { color: var(--text-muted); font-size: 13px; margin-bottom: 15px; text-align: center; }
.seat-modal-subtitle span { color: var(--text-primary); font-weight: 600; }
.seat-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; font-size: 12px; color: var(--text-primary); }
.seat-legend span { display: flex; align-items: center; gap: 6px; }
.seat-legend .legend-box { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.legend-box.avail { background: #3ae374; }
.legend-box.booked { background: #2a2a2a; opacity: 0.6; }
#seat-modal .seat-modal-container .seat-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 8px !important; max-width: 250px !important; margin: 0 auto !important; width: 100%; padding: 0 !important; }
#seat-modal .seat-modal-container .seat-grid .seat { width: 100%; aspect-ratio: 4 / 3 !important; border-radius: 6px 6px 3px 3px !important; border: none !important; display: flex; justify-content: center; align-items: center; transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease !important; transform-origin: center bottom !important; opacity: 0; animation: seatPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; margin: 0 auto; font-size: 0 !important; line-height: 0 !important; color: transparent !important; }
#seat-modal .seat-modal-container .seat-grid .seat.available { background: linear-gradient(180deg, #3ae374 0%, #1dbe68 100%) !important; border-bottom: 3px solid #138f4d !important; box-shadow: 0 3px 10px rgba(46, 204, 113, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important; cursor: pointer; }
#seat-modal .seat-modal-container .seat-grid .seat.available:hover { transform: scale(1.06) translateY(-3px) !important; box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5) !important; }
#seat-modal .seat-modal-container .seat-grid .seat.available:active { transform: scale(0.96) !important; border-bottom-width: 1px !important; }
#seat-modal .seat-modal-container .seat-grid .seat.booked { background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%) !important; border-bottom: 3px solid #0a0a0a !important; opacity: 0.5 !important; cursor: not-allowed !important; box-shadow: none !important; }
@keyframes seatPopIn { 0% { opacity: 0; transform: scale(0.6) translateY(15px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }
.seat-footer { margin-top: 20px; color: var(--text-muted); font-size: 12px; letter-spacing: 0.5px; text-align: center; }

/* ====================================================================
   RESPONSIVE OVERRIDES (MOBILE)
   ==================================================================== */
@media (max-width: 900px) {
    .brand-logo-link img { height: 32px !important; max-width: 180px !important; }
    .hamburger { display: flex; z-index: 1001; }
    .main-nav { position: fixed; top: 0; right: -100%; width: 100vw; height: 100vh; background: var(--bg-surface); flex-direction: column; align-items: center; justify-content: center; transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1000; }
    .main-nav.active { right: 0; }
    .nav-links { flex-direction: column; align-items: center; gap: 40px; width: 100%; margin-bottom: 40px; }
    .nav-links li a { font-size: 26px; font-family: var(--font-heading); }
    .search-container { width: 80%; max-width: 400px; }
    .search-form { width: 100%; padding: 12px 20px; border-radius: 30px; }
    .search-input { width: 100%; font-size: 16px; text-align: center; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .modal-img-desktop { display: none !important; }
    .modal-img-mobile { display: block !important; }
    .custom-swiper-next, .custom-swiper-prev { display: none !important; }

    .page-section { padding: 20px 0; }
    .centered-intro { margin-bottom: 15px; }
    
    .hero-wrapper { width: 95%; margin: 80px auto 10px auto; border-radius: 14px; }
    .hero-slide { border-radius: 14px; }
    
    .event-slider-container { padding: 0 15px 0 15px !important; }
    .card-body { padding: 16px 16px 0; }
    .event-title { font-size: 1.15rem !important; margin-bottom: 10px; }
    .card-details-block { padding: 12px; }
    .card-detail-row { gap: 6px; margin-bottom: 6px; }
    .detail-label { font-size: 8px; flex-shrink: 0; }
    .detail-value { font-size: 0.8rem !important; text-align: right; }
    .card-footer-actions { padding: 12px 16px 16px; grid-template-columns: 1fr; gap: 8px; }
    .btn-action { font-size: 11px; padding: 12px 10px; }

    .category-pills-section { padding: 0 0 15px 0; }
    .category-pill { padding: 8px 14px 8px 20px; font-size: 11px; gap: 5px; }
    .category-pill svg { width: 12px; height: 12px; }

    .inner-circle-section { padding: 30px 15px; }
    .inner-circle-container { padding: 35px 20px; border-radius: 16px; }
    .inner-circle-title { font-size: 24px; }
    .inner-circle-desc { font-size: 13px; margin-bottom: 25px; }
    .inner-circle-form { flex-direction: column; gap: 10px; }
    .inner-circle-form .btn-action { width: 100%; }

    .floating-graphic { display: none; }
    .premium-divider { padding: 30px 20px; }

    .premium-modal-overlay { background: rgba(8,8,12,0.98); backdrop-filter: none !important; }
    .premium-modal-container { max-height: 90vh; border-radius: 14px; overflow-y: auto; }
    .modal-grid { flex-direction: column; overflow: visible; }
    .modal-poster-col { width: 100%; height: 160px; padding: 10px; border-right: none; border-bottom: 1px solid var(--border-faint); }
    .modal-poster-col img { max-height: 100%; object-fit: contain; width: 100%; height: 100%; }
    .modal-info-col { width: 100%; padding: 20px 15px; }
    #modal-title { font-size: 22px; margin-bottom: 8px; }
    .modal-meta-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px 0; margin-bottom: 12px; }
    .meta-value { font-size: 12px; }
    .capacity-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .btn-seat-map { width: 100%; text-align: center; padding: 8px; }
    .modal-action-bar { margin-top: 15px; }
    .modal-action-bar .btn-action { padding: 14px; }
    .modal-close { top: 8px; right: 8px; width: 30px; height: 30px; font-size: 14px; }
    
    .seat-modal-container { padding: 20px 15px !important; }
    .seat-modal-title { font-size: 20px; }
    .seat-legend { gap: 8px; font-size: 11px; }
    .seat-grid { gap: 8px !important; max-width: 250px !important; }
}

/* ====================================================================
   CINEMATIC TRAILER SECTION
   ==================================================================== */
.trailer-section { position: relative; width: 100%; min-height: 550px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--bg-void); padding: 80px 20px; border-top: 1px solid var(--border-faint); border-bottom: 1px solid var(--border-faint); }
.vimeo-bg-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.vimeo-bg-wrapper iframe { width: 100%; height: 100%; object-fit: cover; border: 0; opacity: 0.8; }
.trailer-overlay { position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(8,8,12,0.85) 80%, rgba(3,3,5,0.95) 100%); }
.relative-z { position: relative; z-index: 2; }
.trailer-content { text-align: center; max-width: 800px; margin: 0 auto; padding: 20px; }
.trailer-title { font-family: var(--font-heading, 'Playfair Display', serif); font-size: clamp(2.8rem, 6vw, 4.2rem); font-weight: 700; margin-bottom: 15px; line-height: 1.1; text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5); background: linear-gradient(to right, #FFF, var(--gold-light) 80%, #FFF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.trailer-divider { display: flex; justify-content: center; align-items: center; margin: 15px auto 25px auto; width: 60%; max-width: 300px; }
.trailer-divider .line { flex-grow: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.trailer-divider svg { margin: 0 15px; opacity: 0.8; flex-shrink: 0; }
.trailer-desc { font-family: var(--font-body, 'Inter', sans-serif); font-size: clamp(1rem, 1.5vw, 1.3rem); color: #FFFFFF; line-height: 1.7; max-width: 650px; margin: 0 auto; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9); font-weight: 400; }
.trailer-graphic { position: absolute; z-index: 1; pointer-events: none; opacity: 0.1; }
.trailer-graphic-1 { top: 10%; left: -50px; }

.trailer-section::before,
.trailer-section::after {
    content: '';
    position: absolute;
    width: 30px; height: 30px;
    border-color: var(--gold-light);
    border-style: solid;
    opacity: 0.5;
    z-index: 3;
    pointer-events: none;
}
.trailer-section::before { top: 22px; left: 22px; border-width: 1.5px 0 0 1.5px; }
.trailer-section::after { bottom: 22px; right: 22px; border-width: 0 1.5px 1.5px 0; }

.film-strip {
    position: absolute;
    left: 0; right: 0;
    height: 14px;
    background-image: repeating-linear-gradient(90deg, rgba(212, 175, 55, 0.4) 0 6px, transparent 6px 22px);
    opacity: 0.55;
    z-index: 3;
    pointer-events: none;
}
.film-strip-top { top: 0; }
.film-strip-bottom { bottom: 0; }

.now-screening-badge {
    position: absolute;
    top: 34px; left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    padding: 8px 20px;
    background: rgba(8, 8, 12, 0.55);
    backdrop-filter: blur(6px);
}
.now-screening-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ff4d4d;
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.8);
    animation: recPulse 1.6s ease-in-out infinite;
}
@keyframes recPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

@media (max-width: 900px) {
    .trailer-section { min-height: 400px; padding: 40px 15px; }
    .vimeo-bg-wrapper iframe { opacity: 0.6; }
    .trailer-overlay { background: radial-gradient(circle at center, rgba(8,8,12,0.6) 0%, rgba(3,3,5,0.95) 100%); backdrop-filter: none; }
    .trailer-title { font-size: 2.2rem; margin-bottom: 10px; }
    .trailer-divider { width: 80%; margin: 10px auto 20px auto; }
    .trailer-desc { font-size: 1rem; line-height: 1.5; }
    .trailer-graphic { display: none; }
    .now-screening-badge { top: 16px; font-size: 9px; letter-spacing: 2px; padding: 6px 14px; }
    .trailer-section::before, .trailer-section::after { width: 20px; height: 20px; }
    .trailer-section::before { top: 12px; left: 12px; }
    .trailer-section::after { bottom: 12px; right: 12px; }
}