/* Prime Cinemas - Modern Design */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff0000;
    --primary-hover: #cc0000;
    --primary-light: #ff3333;
    --accent: #ff0000;
    --accent-hover: #cc0000;
    --bg-dark: #000000;
    --bg-body: #000000;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-elevated: #141414;
    --text-primary: #f5f5f5;
    --text-secondary: #c9c9c9;
    --text-muted: #93908f;
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --transition: 0.3s ease;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --btn-gradient: linear-gradient(31deg, #000000 0%, #cc0000 100%);
    --btn-gradient-hover: linear-gradient(31deg, #1a1a1a 0%, #ff0000 100%);
    --navbar-height: 88px;
}

/* CMS marketing pages: hide legacy placeholder HTML until live content renders */
body[data-cms-page] #cms-legacy-content {
    display: none;
}

body[data-cms-page] #cms-page-mount.cms-page-loading {
    min-height: 200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: #000000;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
}

/* Cinema Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    pointer-events: none;
    z-index: -2;
}

/* Ambient Light Effects */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 10%, rgba(255, 0, 0, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 20%, rgba(255, 0, 0, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Landing Page Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.hidden {
    display: none;
}

/* First-visit location picker */
.location-welcome-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.location-welcome-modal {
    width: min(560px, 100%);
    max-height: min(90vh, 760px);
    overflow: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 24px 24px;
    box-shadow: var(--shadow-lg);
}

.location-welcome-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(225, 29, 72, 0.15);
    color: var(--primary);
    font-size: 22px;
}

.location-welcome-modal h2 {
    text-align: center;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.location-welcome-lead {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 15px;
}

.location-detect-btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.location-detect-status {
    min-height: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.location-detect-status.loading { color: var(--text-secondary); }
.location-detect-status.success { color: #34d399; }
.location-detect-status.error { color: #fbbf24; }

.location-welcome-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 14px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.location-welcome-divider::before,
.location-welcome-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.location-welcome-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.location-welcome-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.location-welcome-option:hover,
.location-welcome-option.nearest {
    border-color: var(--primary);
    background: rgba(225, 29, 72, 0.08);
}

.location-welcome-option i {
    color: var(--primary);
    font-size: 16px;
}

.location-welcome-option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.location-welcome-option-text strong {
    font-size: 14px;
    line-height: 1.3;
}

.location-welcome-option-text small {
    color: var(--text-muted);
    font-size: 12px;
}

.location-nearest-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #34d399;
    white-space: nowrap;
}

.location-welcome-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.location-welcome-all {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
}

.location-welcome-all:hover {
    color: var(--primary);
}

.location-default-btn {
    width: 100%;
    justify-content: center;
}

.location-welcome-loading,
.location-welcome-empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    padding: 12px 0;
}

.booking-leave-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-leave-modal {
    width: min(460px, 100%);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.booking-leave-modal h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.booking-leave-modal p {
    margin: 0 0 20px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.booking-leave-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.popup-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.popup-image {
    height: 200px;
    overflow: hidden;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-body {
    padding: 28px;
    text-align: center;
}

.popup-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.popup-body h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.popup-body p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.promo-code {
    background: var(--bg-elevated);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
    font-size: 16px;
}

.popup-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.popup-buttons .btn {
    min-width: 140px;
}

/* Navigation - VOX-style sticky frosted bar over hero */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(24px) saturate(1.15);
    -webkit-backdrop-filter: blur(24px) saturate(1.15);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    height: var(--navbar-height);
    gap: 16px 20px;
    position: relative;
}

.nav-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    grid-column: 1;
}

/* Logo Design */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    display: flex;
    align-items: center;
    overflow: visible;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 68px;
    width: auto;
    min-width: 0;
    max-width: 200px;
    object-fit: contain;
    transform: none;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link:hover .nav-logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.55));
}

.nav-location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    min-height: 42px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-location-btn:hover {
    border-color: rgba(255, 51, 51, 0.65);
    background: rgba(255, 0, 0, 0.18);
}

.nav-location-btn i.fa-map-marker-alt {
    color: var(--primary-light);
    font-size: 14px;
}

.nav-location {
    position: relative;
    flex-shrink: 0;
}

.nav-location-chevron {
    font-size: 11px;
    opacity: 0.75;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.nav-location.open .nav-location-chevron {
    transform: rotate(180deg);
}

.nav-location-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    max-width: min(340px, calc(100vw - 32px));
    background: rgba(12, 12, 18, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 10002;
    overflow: hidden;
    pointer-events: none;
}

.nav-location.open .nav-location-dropdown,
.nav-location-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-location-dropdown-header {
    padding: 14px 16px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-location-list {
    max-height: 280px;
    overflow-y: auto;
    padding: 8px;
}

.nav-location-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: transparent;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.nav-location-option i {
    color: var(--primary-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.nav-location-option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.nav-location-option-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.nav-location-option-text small {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.3;
}

.nav-location-option:hover,
.nav-location-option.active {
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.25);
}

.nav-location-all {
    display: block;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--primary-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.nav-location-all:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.nav-location-loading,
.nav-location-empty {
    padding: 16px;
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
}

.nav-location-btn i {
    color: var(--primary-light);
    font-size: 14px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff3333 50%, #cc0000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: logo-shine 3s ease-in-out infinite;
}

@keyframes logo-shine {
    0%, 100% {
        transform: translateX(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) rotate(45deg);
    }
}

.logo-link:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.logo-accent {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, #ff3333 50%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.nav-logo .logo {
    height: 36px;
    object-fit: contain;
}

.nav-location .location-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.nav-location .location-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.nav-location .location-btn i:first-child {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2px;
    justify-content: flex-end;
    overflow: visible;
    position: relative;
    margin: 0;
    padding: 0;
    min-width: 0;
    grid-column: 2;
}

.nav-item {
    flex-shrink: 0;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    color: #fff;
    background: rgba(229, 9, 20, 0.18);
    box-shadow: inset 0 -2px 0 var(--primary);
}

.nav-item.active > .nav-link {
    color: #fff;
}

/* More Dropdown */
.nav-more {
    position: relative;
    flex-shrink: 0;
    z-index: 100;
}

.nav-more-btn {
    padding: 12px 14px;
    min-width: auto;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
}

.nav-more-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.more-bars {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 26px;
}

.more-bar {
    display: block;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.more-bar-1 { width: 26px; }
.more-bar-2 { width: 20px; }
.more-bar-3 { width: 13px; }

.nav-more-btn:hover .more-bar {
    background: var(--primary);
}

.nav-more.open .nav-more-btn {
    background: rgba(255, 0, 0, 0.12);
}

.nav-more.open .more-bar {
    background: var(--primary);
}

.nav-more-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 9999;
    padding: 8px 0;
    pointer-events: none;
    display: none;
}

.nav-more.open .nav-more-dropdown,
.nav-more-dropdown.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.nav-more-dropdown .nav-link {
    display: block;
    padding: 12px 20px;
    border-radius: 0;
    width: 100%;
    text-align: left;
}

.nav-more-dropdown .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-more-dropdown .nav-link.active {
    background: rgba(255, 0, 0, 0.1);
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    grid-column: 3;
    justify-self: end;
}

.nav-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(204, 0, 0, 0.35);
    background: var(--btn-gradient);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    min-height: 42px;
    box-sizing: border-box;
}

.nav-signin:hover {
    color: #fff;
    background: var(--btn-gradient-hover);
    border-color: rgba(255, 0, 0, 0.45);
    transform: translateY(-1px);
}

.nav-signin i {
    font-size: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Slider - full-bleed under frosted navbar (VOX-like) */
.hero-slider {
    position: relative;
    height: 88vh;
    min-height: 620px;
    max-height: 900px;
    margin-top: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 50% 55%, rgba(255, 0, 0, 0.14) 0%, transparent 62%),
        #000;
}

.hero-slider-3d {
    perspective: 1400px;
    perspective-origin: 50% 48%;
}

.hero-slider-viewport {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--navbar-height) * 0.35);
    overflow: hidden;
}

.hero-slider-viewport::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8%;
    width: min(70vw, 900px);
    height: 40px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.22) 0%, transparent 70%);
    filter: blur(18px);
    pointer-events: none;
    z-index: 1;
}

.hero-slider-stage {
    position: relative;
    width: min(92vw, 1180px);
    height: min(74vh, 680px);
    transform-style: preserve-3d;
    z-index: 2;
}

.hero-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 18px;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, -420px) rotateY(0deg) scale(0.72);
    transition:
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s ease,
        box-shadow 0.75s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.slide.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 90px) rotateY(0deg) scale(1);
    z-index: 3;
    pointer-events: auto;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.65);
}

.slide.is-prev {
    opacity: 0.82;
    transform: translate3d(-56%, 0, -80px) rotateY(32deg) scale(0.9);
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.slide.is-next {
    opacity: 0.82;
    transform: translate3d(56%, 0, -80px) rotateY(-32deg) scale(0.9);
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.slide.is-hidden {
    opacity: 0;
    transform: translate3d(0, 0, -520px) rotateY(0deg) scale(0.65);
    z-index: 1;
}

.slide:not(.is-active) .slide-content {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.slide.is-active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease 0.15s, transform 0.45s ease 0.15s;
}

.slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.slide-buttons .btn {
    width: auto;
    max-width: 100%;
}

.movie-logo {
    max-width: 400px;
    margin-bottom: 24px;
}

.slide-poster {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: none;
}

.slide-poster img {
    width: 100%;
    height: auto;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.15) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 35%, transparent 70%);
}

.slide-content {
    position: absolute;
    left: max(24px, 4vw);
    bottom: max(24px, 4vh);
    top: auto;
    transform: none;
    max-width: min(520px, 58%);
    padding-top: 0;
    z-index: 2;
}

.slide-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.slide-title {
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.05;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
}

.slide-subtitle {
    font-size: 19px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
    line-height: 1.5;
}

.slider-nav {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    max-width: min(92vw, 320px);
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 6px;
    -webkit-overflow-scrolling: touch;
}

.slider-nav::-webkit-scrollbar {
    display: none;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.slider-dot.active {
    width: 28px;
    border-radius: 999px;
    background: var(--primary);
}

.slider-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.75);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.slider-arrow:hover {
    background: rgba(255, 0, 0, 0.75);
    border-color: var(--primary);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

@media (prefers-reduced-motion: reduce) {
    .hero-slider-3d {
        perspective: none;
    }

    .slide,
    .slide.is-active,
    .slide.is-prev,
    .slide.is-next,
    .slide.is-hidden {
        transform: none !important;
        transition: opacity 0.35s ease;
    }

    .slide.is-active {
        opacity: 1;
    }

    .slide.is-prev,
    .slide.is-next {
        opacity: 0;
    }
}

/* Buttons */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: none;
}

.btn-primary {
    background: var(--btn-gradient);
    color: white;
    border: 1px solid rgba(204, 0, 0, 0.35);
}

.btn-primary:hover {
    background: var(--btn-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
    border-color: rgba(255, 0, 0, 0.45);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: white;
    color: var(--bg-dark);
    border-color: white;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* Movie Showtimes Section with Tabs */
.showtimes-section {
    padding: 60px 0;
    background: var(--bg-body);
}

.top10-section {
    padding: 56px 0 24px;
    background: var(--bg-body);
}

.top10-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.top10-header h2 {
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.2;
    margin: 0;
}

.top10-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.top10-slider {
    overflow: hidden;
    width: 100%;
}

.top10-track {
    display: flex;
    gap: 20px;
    transition: transform 0.35s ease;
}

.top10-nav {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}

.top10-nav:hover {
    background: var(--primary);
}

.top10-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.top10-card {
    position: relative;
    /* Fixed fraction of the row so cards keep the same size regardless of count */
    flex: 0 0 calc((100% - 80px) / 5);
    min-width: 0;
    max-width: calc((100% - 80px) / 5);
    padding-top: 28px;
}

.top10-rank {
    position: absolute;
    left: -6px;
    bottom: 28px;
    font-size: clamp(96px, 12vw, 190px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.13);
    text-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
    filter: blur(1px);
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}

.top10-movie-card {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.top10-movie-info {
    padding: 10px 0 0;
}

.top10-poster-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.top10-poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
}

.top10-badges {
    position: absolute;
    top: 8px;
    left: 8px;
}

.top10-info {
    margin-top: 10px;
}

.top10-title {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.top10-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top10-language {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Section Header Design */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #ff3333 100%);
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 0, 0, 0.5);
    }
}

.section-main-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -1px;
}

.title-accent {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8a80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3) 0%, rgba(255, 107, 107, 0.2) 100%);
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-5deg);
}

.section-subtitle {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tab Navigation */
.tabs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.tabs-nav {
    display: flex;
    gap: 0;
}

.tab-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: none;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--text-primary);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.view-all-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
}

.view-all-link:hover {
    color: var(--primary);
}

.view-all-link i {
    font-size: 12px;
    transition: var(--transition);
}

.view-all-link:hover i {
    transform: translateX(4px);
}

/* Tab Content */
.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Movies Slider/Grid */
.movies-slider {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

/* Movie Card - Clean & Modern */
.movie-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.movie-poster {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}

.movie-poster > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover .movie-poster > img {
    transform: scale(1.05);
}

.movie-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
    pointer-events: none;
}

.movie-rating-icon {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 22px;
    padding: 0 7px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
    line-height: 1;
    text-transform: uppercase;
}

.rating-badge--u { background: linear-gradient(135deg, #2f9e44, #1b6b2d); }
.rating-badge--pg { background: linear-gradient(135deg, #1d7fd8, #155fa3); }
.rating-badge--m { background: linear-gradient(135deg, #9c36b5, #702282); }
.rating-badge--plus15 { background: linear-gradient(135deg, #e67700, #c25a00); }
.rating-badge--plus18 { background: linear-gradient(135deg, #c92a2a, #8f1f1f); }
.rating-badge--a { background: linear-gradient(135deg, #c92a2a, #8f1f1f); }

.rating-warning-overlay {
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: rgba(8, 8, 12, 0.96);
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.rating-warning-panel {
    width: min(100%, 760px);
    height: 100%;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.rating-warning-header {
    padding: 28px 28px 16px;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.rating-warning-header .rating-badge {
    margin-bottom: 14px;
    font-size: 14px;
    padding: 6px 14px;
}

.rating-warning-header h2 {
    margin: 0 0 8px;
    font-size: clamp(22px, 4vw, 30px);
    line-height: 1.25;
}

.rating-warning-subtitle {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.rating-warning-movie {
    margin: 12px 0 0;
    color: var(--accent);
    font-weight: 600;
}

.rating-warning-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.rating-warning-body ul {
    margin: 12px 0;
    padding-left: 20px;
}

.rating-warning-body li {
    margin-bottom: 8px;
}

.rating-warning-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0 28px 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    cursor: pointer;
}

.rating-warning-checkbox input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.rating-warning-actions {
    display: flex;
    gap: 12px;
    padding: 20px 28px 28px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-elevated);
}

.rating-warning-actions .btn {
    flex: 1;
    min-height: 48px;
}

@media (max-width: 640px) {
    .rating-warning-panel {
        width: 100%;
        border: none;
    }

    .rating-warning-actions {
        flex-direction: column-reverse;
    }
}

.slide-media-video,
.slide-media-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinema-hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cinema-detail-hero {
    position: relative;
    min-height: 220px;
    overflow: hidden;
}

.cinema-description,
.cinema-extra {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.movie-formats {
    display: flex;
    gap: 4px;
}

.format-badge {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.format-badge.imax {
    background: #1d4ed8;
}

.movie-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

.movie-overlay-btns {
    display: flex;
    gap: 8px;
}

.movie-overlay-btn {
    flex: 1;
    background: var(--btn-gradient);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px;
    border: 1px solid rgba(204, 0, 0, 0.35);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.movie-overlay-btn:hover {
    background: var(--btn-gradient-hover);
}

.movie-overlay-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.movie-overlay-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.movie-overlay-btn[data-action="trailer"] {
    flex: 0 0 auto;
    min-width: 44px;
    padding: 10px 12px;
}

.movie-info {
    padding: 14px;
}

.movie-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 15px;
    color: var(--text-muted);
}

.movie-meta span {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1.4;
}

.movie-meta span i {
    margin-top: 2px;
    flex-shrink: 0;
}

.movie-cast {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Special Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.events-list .event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.events-list .event-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.events-list .event-info .btn {
    margin-top: auto;
    align-self: flex-start;
}

.events-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.category-header h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-header h3 i {
    color: var(--primary);
}

.event-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.event-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

.event-info {
    padding: 20px;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 10px;
}

.event-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.event-info p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 24px 0;
}

.promo-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-banner-text {
    display: flex;
    align-items: center;
    gap: 24px;
}

.promo-banner-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}

.promo-banner-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.promo-banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.promo-banner .btn-primary {
    color: white;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-dark {
    background: var(--bg-dark);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--primary);
    border-radius: 2px;
}

/* Cinemas Grid */
.cinemas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cinema-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.cinema-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.cinema-image {
    height: 180px;
    overflow: hidden;
}

.cinema-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cinema-card:hover .cinema-image img {
    transform: scale(1.05);
}

.cinema-info {
    padding: 20px;
}

.cinema-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cinema-location {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cinema-location i {
    color: var(--primary);
}

.cinema-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    background: var(--bg-elevated);
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(255, 0, 0, 0.3);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    height: 36px;
    margin-bottom: 16px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-container {
    justify-content: flex-start;
}

.footer-logo .logo-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    border-radius: 14px;
}

.footer-logo .logo-main {
    font-size: 22px;
}

.footer-logo .logo-accent {
    font-size: 12px;
    letter-spacing: 7px;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}


.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
}

.footer-credit {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.4;
    color: var(--text-muted);
    opacity: 0.7;
}

.footer-credit a {
    color: inherit;
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* Loading */
.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading p {
    color: var(--text-muted);
}

.global-page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 18, 0.72);
    backdrop-filter: blur(4px);
    transition: opacity 0.2s ease;
}

.global-page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.global-loader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 28px 36px;
    border-radius: var(--radius-lg);
    background: rgba(31, 41, 55, 0.95);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.global-loader-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
}

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}

.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

.section-loading {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-loading .loading {
    padding: 24px;
}

.no-movies {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
}

.no-movies h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.no-movies p {
    color: var(--text-muted);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.modal-movie-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    padding: 28px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    border-bottom: 1px solid var(--border-light);
}

.modal-movie-poster {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.modal-movie-poster img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.modal-movie-info h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.modal-movie-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.modal-movie-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    padding: 6px 12px;
    border-radius: 50px;
}

.modal-movie-meta i {
    color: var(--primary);
}

.modal-movie-desc {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-trailer-btn {
    margin-bottom: 20px;
}

.trailer-modal-content {
    max-width: 960px;
    width: min(96vw, 960px);
}

.trailer-modal-title {
    margin: 0 0 16px;
    font-size: 22px;
}

.trailer-embed-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
}

.trailer-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.modal-movie-cast {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.modal-movie-formats {
    display: flex;
    gap: 8px;
}

.modal-format-badge {
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
}

.modal-showtimes {
    padding: 30px;
    background: #07090f;
    border-top: 1px solid var(--border-light);
}

.modal-showtimes h3 {
    font-size: 30px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.01em;
}

.modal-showtimes h3 i {
    color: var(--primary);
    font-size: 26px;
}

.cinema-showtime-group {
    background: #020305;
    border-radius: 18px;
    padding: 26px 24px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cinema-showtime-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cinema-showtime-header h4 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.cinema-showtime-header span {
    font-size: 14px;
    color: var(--text-muted);
}

.modal-day-group {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
    scroll-margin-top: calc(var(--navbar-height, 88px) + 18px);
}

.showtime-date-toolbar {
    margin-bottom: 24px;
}

.showtime-date-toolbar[hidden] {
    display: none !important;
}

.showtime-quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.showtime-quick-filter-btn {
    padding: 11px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(8, 11, 16, 0.95);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.showtime-quick-filter-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.showtime-quick-filter-btn.active {
    border-color: rgba(255, 0, 0, 0.7);
    background: rgba(255, 0, 0, 0.12);
    color: #fff;
}

.showtime-quick-filter-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.modal-showtimes .date-selector {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.modal-showtimes .date-btn {
    min-width: 92px;
    padding: 14px 12px;
    background: rgba(8, 11, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    font: inherit;
    color: inherit;
}

.modal-showtimes .date-btn:hover {
    border-color: var(--primary);
}

.modal-showtimes .date-btn.selected {
    border-color: rgba(255, 0, 0, 0.95);
    background: rgba(255, 0, 0, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 0, 0, 0.35);
}

.modal-showtimes .date-btn .day {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: capitalize;
}

.modal-showtimes .date-btn .date {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
}

.modal-showtimes .date-btn .month {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1;
}

.modal-day-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-day-label {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.screen-row {
    display: block;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
}

.screen-row:first-child {
    border-top: none;
    padding-top: 0;
}

.screen-row .screen-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    min-width: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ff1e1e;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.screen-row .screen-times {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.screen-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    min-width: 90px;
}

.screen-times {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.time-btn {
    background: #11161f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.time-btn:hover {
    background: #171d27;
    border-color: rgba(255, 0, 0, 0.55);
}

.experience-attributes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0 12px;
}

.experience-attributes.compact {
    gap: 6px;
    margin: 0;
}

.experience-attributes-hint {
    font-size: 13px;
    color: var(--text-muted);
}

.experience-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.experience-group-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    min-width: 52px;
}

.experience-group-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.experience-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: help;
}

.experience-chip.compact {
    padding: 3px 8px;
    font-size: 10px;
}

.experience-chip-image {
    width: 16px;
    height: 16px;
    object-fit: contain;
    border-radius: 3px;
}

.experience-chip-label {
    line-height: 1;
}

.experience-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    min-width: 180px;
    max-width: 260px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 30;
    white-space: normal;
}

.experience-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(15, 23, 42, 0.96);
}

.experience-chip:hover .experience-tooltip,
.experience-chip:focus .experience-tooltip,
.experience-chip:focus-within .experience-tooltip {
    opacity: 1;
    visibility: visible;
}

.time-btn-with-attrs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 148px;
    text-align: left;
}

.time-btn-time {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.time-btn-attrs .experience-chip {
    pointer-events: auto;
}

.time-btn-attrs .experience-attributes {
    pointer-events: none;
}

.page-header {
    position: relative;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: var(--navbar-height);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1517604931442-7e0c8ed2963c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 100%);
    z-index: 0;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.page-header-subtitle {
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.page-breadcrumb span:last-child {
    color: var(--primary);
}

/* Page-specific header backgrounds */
.page-header.movies-header::before {
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2025&q=80');
    background-size: cover;
    background-position: center;
}

.page-header.cinemas-header::before {
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1595769816263-9b910be24d5f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2079&q=80');
    background-size: cover;
    background-position: center;
}

.page-header.fooddrinks-header::before {
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1585647347483-22b66260dfff?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.page-header.promotions-header::before {
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.88) 100%),
        url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2025&q=80');
    background-size: cover;
    background-position: center;
}

.page-header.events-header::before {
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1514533212735-5df27d970db0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
}

.page-header.about-header::before {
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1478720568477-152d9b164e26?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.page-header.contact-header::before {
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1557683316-973673baf926?ixlib=rb-4.0.3&auto=format&fit=crop&w=2029&q=80');
    background-size: cover;
    background-position: center;
}

.page-header.fungames-header::before {
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1511882150382-421056c89033?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
    background-size: cover;
    background-position: center;
}

/* Filter Bar */
.filter-bar {
    background: var(--bg-card);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-end;
    border: 1px solid var(--border-light);
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group--wide {
    flex: 2;
    min-width: 0;
}

.filter-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.filter-select,
.filter-search {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 13px;
    transition: var(--transition);
}

.filter-select:focus,
.filter-search:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-search::placeholder {
    color: var(--text-muted);
}

/* Contact Form */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.contact-info-card > p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

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

.contact-info-item i {
    width: 44px;
    height: 44px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 0;
}

.contact-form {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* About Page */
.about-hero {
    text-align: center;
    padding: 40px 0;
}

.about-hero h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-hero p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.about-feature {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-4px);
}

.about-feature i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-feature h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.about-feature p {
    color: var(--text-secondary);
    font-size: 13px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 50px 0;
    text-align: center;
}

.stat-item h3 {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Promotions Grid */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promo-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.promo-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.05);
}

.promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

.promo-content {
    padding: 20px;
}

.promo-content h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.promo-content p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.promo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.promo-validity {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive */
@media (max-width: 1400px) {
    .movies-slider {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1280px) {
    .nav-link {
        padding: 10px 10px;
        font-size: 15px;
    }

    .nav-signin {
        padding: 10px 14px;
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .movies-slider {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .events-grid,
    .events-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-link {
        padding: 10px 8px;
        font-size: 14px;
    }

    .nav-location-btn {
        padding: 8px 14px;
        font-size: 14px;
    }

    .nav-signin {
        padding: 8px 14px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .movies-slider {
        grid-template-columns: repeat(3, 1fr);
    }
    .top10-card {
        flex-basis: calc((100% - 40px) / 3);
        max-width: calc((100% - 40px) / 3);
    }
    
    .events-grid,
    .events-list,
    .cinemas-grid,
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features,
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-movie-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modal-movie-poster {
        max-width: 180px;
        margin: 0 auto;
    }
    
    .promo-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .promo-banner-text {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 1100px) {
    .hamburger {
        display: flex !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        background: transparent;
        border: none;
        grid-column: 3;
        justify-self: end;
    }
    
    .hamburger .bar {
        background: var(--text-primary);
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 85% !important;
        max-width: 350px !important;
        height: 100vh !important;
        background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-body) 100%) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 100px 30px 30px !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5) !important;
        display: flex !important;
        transform: translateX(-100%) !important;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1) !important;
    }
    
    .nav-menu.active.show {
        transform: translateX(0) !important;
    }
    
    .nav-menu .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 16px;
        width: 100%;
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .nav-header-left {
        flex: 1;
        gap: 10px;
        min-width: 0;
    }
    
    .nav-logo-img {
        height: 64px;
        max-width: 176px;
        transform: none;
    }

    .nav-location-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .nav-location-btn span {
        max-width: 110px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-link:hover .nav-logo-img {
        transform: scale(1.04);
    }
    
    /* On mobile, show More items inline */
    .nav-more {
        display: block !important;
        border-bottom: none !important;
    }
    
    .nav-more-btn {
        display: none !important;
    }
    
    .nav-more-dropdown {
        position: static !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        min-width: auto !important;
        pointer-events: auto !important;
    }
    
    .nav-more-dropdown .nav-link {
        display: block;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    :root {
        --navbar-height: 80px;
    }

    .nav-container {
        height: var(--navbar-height);
        gap: 10px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar .nav-container.container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }

    .slide-overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.94) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 100%);
    }

    .slide-content {
        left: 16px;
        right: 16px;
        bottom: 72px;
        max-width: none;
        padding-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slide-buttons {
        justify-content: center;
        align-items: center;
    }

    .slide-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
        line-height: 1.45;
    }

    .slide-buttons .btn {
        padding: 12px 22px;
        font-size: 14px;
    }
    
    .nav-right {
        margin-left: auto;
        margin-right: 52px;
        align-self: center;
    }
    
    .mobile-overlay {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        background: rgba(0, 0, 0, 0.7) !important;
        z-index: 999 !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-signin span {
        display: none;
    }
    
    .nav-signin {
        padding: 10px 12px;
    }
    
    
    .nav-menu.active .nav-item {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        animation: slideInLeft 0.4s ease forwards;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu.active .nav-item:nth-child(7) { animation-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(8) { animation-delay: 0.45s; }
    
    .nav-menu.active .nav-link {
        padding: 18px 0;
        font-size: 17px;
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-primary);
    }
    
    .nav-menu.active .nav-link i {
        display: inline-block !important;
        width: 24px;
        text-align: center;
        color: var(--accent);
    }
    
    .nav-menu.active .nav-link:hover {
        color: var(--accent);
        padding-left: 10px;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-right {
        margin-right: 44px;
    }
    
    .nav-signin {
        padding: 8px 10px;
        font-size: 14px;
        min-height: 38px;
        min-width: 38px;
    }

    .nav-location-btn {
        padding: 8px 12px;
        font-size: 13px;
        max-width: 100%;
    }

    .nav-location-btn span {
        max-width: min(34vw, 120px);
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-link {
        padding: 16px 0;
        font-size: 16px;
    }
    
    .hero-slider {
        height: min(72vh, 640px);
        min-height: 460px;
    }

    .hero-slider-stage {
        width: min(94vw, 100%);
        height: min(62vh, 520px);
    }

    .slide.is-prev {
        transform: translate3d(-48%, 0, -100px) rotateY(24deg) scale(0.86);
        opacity: 0.65;
    }

    .slide.is-next {
        transform: translate3d(48%, 0, -100px) rotateY(-24deg) scale(0.86);
        opacity: 0.65;
    }
    
    .slide-content {
        left: 16px;
        right: 16px;
        bottom: 68px;
        max-width: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slide-buttons {
        justify-content: center;
        align-items: center;
    }
    
    .slide-title {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 10px;
    }

    .slide-badge {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }

    .slider-nav {
        bottom: 20px;
        gap: 6px;
        max-width: min(88vw, 260px);
    }

    .slider-dot {
        width: 6px;
        height: 6px;
    }

    .slider-dot.active {
        width: 22px;
    }
    
    .tabs-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .tabs-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .tab-btn {
        padding: 12px 16px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .movies-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .top10-card {
        flex-basis: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
    .top10-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .events-grid,
    .events-list,
    .cinemas-grid,
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .section-title::before {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .about-features,
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        flex-direction: column;
    }
    
    .popup-content {
        margin: 16px;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .nav-header-left {
        gap: 8px;
        min-width: 0;
        flex: 1;
    }

    .nav-logo-img {
        height: 69px;
        max-width: 140px;
    }

    .nav-location-btn {
        padding: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        justify-content: center;
        gap: 0;
        flex-shrink: 0;
    }

    .nav-location-btn span {
        display: none;
    }

    .nav-location-chevron {
        display: none;
    }

    .nav-location-btn i.fa-map-marker-alt {
        margin: 0;
        font-size: 15px;
    }

    :root {
        --navbar-height: 72px;
    }

    .nav-container {
        height: var(--navbar-height);
    }

    .hamburger {
        right: 14px;
    }

    .nav-right {
        margin-right: 40px;
    }
}

@media (max-width: 480px) {
    .movies-slider {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .top10-track {
        gap: 12px;
    }
    .top10-card {
        flex-basis: calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
    }

    .slide-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .hero-slider {
        height: min(68vh, 560px);
        min-height: 440px;
    }

    .slider-arrow {
        display: none;
    }

    .slide-content {
        padding-right: 0;
        bottom: 62px;
        text-align: center;
        align-items: center;
    }
    
    .section-main-title {
        font-size: 24px;
    }
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.footer-logo-img {
    height: 84px;
    width: auto;
    object-fit: contain;
    transform: none;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sub-page header (movies, booking, etc.) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--border-light);
}

.site-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 120px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-logo {
    display: flex;
    align-items: center;
    overflow: visible;
    flex-shrink: 0;
}

.site-logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transform: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.site-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #fff;
    background: rgba(255, 0, 0, 0.12);
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-actions .btn-ghost,
.site-actions .btn-book {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
}

.site-actions .btn-book {
    background: var(--btn-gradient);
    color: #fff;
    border: 1px solid rgba(204, 0, 0, 0.35);
}

.section-padding {
    padding: 48px 0;
}

.filter-bar label {
    font-size: 15px;
    font-weight: 600;
}

.filter-bar input,
.filter-bar select {
    font-size: 16px;
}

/* Bank card promotions (CMS-controlled) */
.bank-promos {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.bank-promos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.bank-promos-header {
    text-align: center;
    margin-bottom: 40px;
}

.bank-promos-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.bank-promos-header p {
    color: var(--text-secondary);
}

.bank-promos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bank-promo-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bank-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.bank-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.bank-logo {
    height: 40px;
    margin-bottom: 16px;
    filter: grayscale(1) brightness(2);
    transition: filter 0.3s ease;
}

.bank-promo-card:hover .bank-logo {
    filter: none;
}

.bank-promo-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.bank-promo-card .discount {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.bank-promo-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.bank-promo-card .validity {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bank-promo-strip {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15) 0%, rgba(26, 26, 46, 0.95) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.bank-promo-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.bank-promo-strip-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

.bank-promo-strip-text i {
    color: var(--accent);
    font-size: 20px;
}

.bank-offers {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
}

.bank-offers h5 {
    font-size: 13px;
    color: #10b981;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-offer-item {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-offer-item i {
    color: #10b981;
}

@media (max-width: 1100px) {
    .bank-promos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bank-promos-grid {
        grid-template-columns: 1fr;
    }

    .bank-promo-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Floating WhatsApp chat (CMS-managed) */
.whatsapp-chat-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9990;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.whatsapp-chat-fab:hover {
    background: #1ebe57;
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .whatsapp-chat-fab {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
}

/* ==========================================================================
   Site-wide mobile responsive enhancements
   ========================================================================== */

html,
body {
    overflow-x: clip;
    max-width: 100%;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .nav-header-left {
        flex: 1;
        min-width: 0;
    }

    .nav-right {
        flex-shrink: 0;
    }

    .page-header {
        margin-top: var(--navbar-height);
        padding: 72px 0 48px;
    }

    .page-header h1 {
        font-size: clamp(30px, 6vw, 42px);
        line-height: 1.15;
    }

    .page-header-subtitle,
    .page-breadcrumb {
        font-size: 14px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .filter-bar {
        padding: 16px;
        gap: 12px;
    }

    .cinema-experiences-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cinema-experiences-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .featured-events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-event-card:first-child {
        grid-column: span 2;
    }

    .quick-booking-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .page-header {
        margin-top: var(--navbar-height);
        padding: 48px 0 32px;
    }

    .page-header h1 {
        font-size: clamp(26px, 7.5vw, 34px);
        padding: 0 8px;
    }

    .page-header h1 i {
        margin-right: 10px !important;
    }

    .page-breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        padding: 0 12px;
    }

    .section-padding {
        padding: 32px 0;
    }

    .filter-group,
    .filter-group--wide {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }

    .filter-bar {
        margin-bottom: 24px;
    }

    .tabs-container {
        align-items: stretch;
        margin-bottom: 20px;
        gap: 12px;
    }

    .tabs-nav {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
    }

    .tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex: 0 0 auto;
        padding: 12px 14px;
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .movies-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px;
    }

    .movie-title {
        font-size: 14px;
        line-height: 1.35;
    }

    .movie-meta {
        font-size: 12px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .movie-info {
        padding: 12px;
    }

    .events-grid,
    .events-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .experiences-grid,
    .screens-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-features {
        grid-template-columns: 1fr !important;
    }

    .event-image {
        height: 160px;
    }

    .cinema-experiences {
        padding: 40px 0;
    }

    .cinema-experiences-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .featured-events-grid {
        grid-template-columns: 1fr;
    }

    .featured-event-card:first-child {
        grid-column: span 1;
        min-height: 220px;
    }

    .modal-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .modal-content {
        max-height: 92vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .modal-movie-header {
        padding: 20px 16px;
        gap: 16px;
    }

    .modal-movie-info h2 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .modal-movie-meta {
        justify-content: center;
        gap: 8px;
    }

    .modal-movie-desc {
        font-size: 14px;
        line-height: 1.55;
    }

    .modal-showtimes {
        padding: 16px;
    }

    .modal-showtimes h3 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .cinema-showtime-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .screen-row {
        padding: 12px 0;
    }

    .screen-name {
        min-width: 0;
        width: 100%;
    }

    .screen-times,
    .screen-row .screen-times {
        width: 100%;
        gap: 8px;
    }

    .time-btn {
        padding: 10px 12px;
        font-size: 16px;
        min-width: 72px;
    }

    .screen-row .screen-name {
        font-size: 16px;
    }

    .showtime-date-toolbar {
        margin-bottom: 14px;
    }

    .showtime-quick-filters {
        gap: 8px;
    }

    .showtime-quick-filter-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .modal-showtimes .date-btn {
        min-width: 64px;
        padding: 10px 8px;
    }

    .modal-showtimes .date-btn .date {
        font-size: 24px;
    }

    .modal-showtimes .date-btn .month {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .contact-form .form-row,
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form input[type="email"] {
        min-width: 0 !important;
        width: 100%;
    }

    .btn,
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
    }

    .booking-nav-actions {
        flex-direction: column;
    }

    .booking-nav-actions .btn {
        width: 100%;
        flex: 1 1 auto !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .page-header {
        padding: 40px 0 28px;
    }

    .movies-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px;
    }

    .movie-overlay-btn {
        padding: 10px 12px;
        font-size: 12px;
    }

    .movie-overlay-btns {
        gap: 8px;
        flex-direction: column;
        width: 100%;
        padding: 0 12px;
    }

    .tab-btn {
        padding: 10px 12px;
        font-size: 10px;
    }

    .modal-overlay {
        padding: 0;
    }

    .modal-content {
        width: 100%;
        max-height: 96vh;
        border-radius: 16px 16px 0 0;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .filter-select,
    .filter-search {
        font-size: 16px;
    }

    .promo-banner .btn {
        width: 100%;
    }

    .view-all-link {
        align-self: center;
    }
}
