/* Cinepax - TGV-Inspired Modern Design */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary: #c41e3a;
    --primary-hover: #a01830;
    --primary-light: #e63950;
    --accent: #d4af37;
    --accent-hover: #b8962e;
    --bg-dark: #1a1a2e;
    --bg-body: #16213e;
    --bg-card: #1f2937;
    --bg-card-hover: #283548;
    --bg-elevated: #252f45;
    --text-primary: #f5f5f5;
    --text-secondary: #c9c9c9;
    --text-muted: #8b8b9a;
    --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;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: #0a0a12;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
}

/* Cinema Background Image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(10, 10, 18, 0.7) 0%, rgba(10, 10, 18, 0.85) 50%, rgba(10, 10, 18, 0.95) 100%),
        url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    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(196, 30, 58, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(196, 30, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 30%);
    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;
}

.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 - TGV Style */
.navbar {
    background: rgba(22, 33, 62, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    display: flex;
    align-items: center;
    height: 70px;
    gap: 24px;
}

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

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

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-link:hover .nav-logo-img {
    transform: scale(1.05);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 50%, #ffc107 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(229, 9, 20, 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(229, 9, 20, 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%, #ff6b6b 50%, #ffc107 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;
    gap: 8px;
    flex: 1;
    overflow: visible;
    position: relative;
}

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

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

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--primary);
}

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

.nav-more-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    cursor: pointer;
    white-space: nowrap;
    min-width: 80px;
}

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

.nav-more-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-more.open .nav-more-btn i,
.nav-more-btn.active i {
    transform: rotate(180deg);
}

.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(196, 30, 58, 0.1);
    color: var(--primary);
}

/* Desktop: ensure More button is clickable and above any overlay */
@media (min-width: 993px) {
    .nav-more {
        z-index: 500;
    }
    .nav-more-btn {
        position: relative;
        z-index: 501;
        pointer-events: auto;
        cursor: pointer;
    }
}

.nav-right {
    margin-left: auto;
}

.nav-signin {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-signin:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.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 Width TGV Style */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    margin-top: 70px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    max-width: 500px;
}

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

.slide-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.slide-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.slide-buttons {
    display: flex;
    gap: 16px;
}

.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;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--primary);
}

/* Buttons */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    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: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a01830 0%, #6b0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

.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);
}

/* 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%, #ff6b6b 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(229, 9, 20, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(229, 9, 20, 0.5);
    }
}

.section-main-title {
    font-size: 42px;
    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(229, 9, 20, 0.3) 0%, rgba(255, 107, 107, 0.2) 100%);
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-5deg);
}

.section-subtitle {
    font-size: 17px;
    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: 15px;
    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, 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;
}

.movie-rating {
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.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(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 10px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.movie-overlay-btn:hover {
    background: var(--primary-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-info {
    padding: 14px;
}

.movie-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    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;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.movie-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.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 {
    background: white;
    color: var(--primary);
}

.promo-banner .btn-primary:hover {
    background: var(--bg-dark);
    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, #0f0f1a 0%, #0a0a12 100%);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(196, 30, 58, 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-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.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;
}

/* 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);
}

.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: 26px;
    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: 13px;
    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: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.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: 28px;
}

.modal-showtimes h3 {
    font-size: 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-showtimes h3 i {
    color: var(--primary);
}

.cinema-showtime-group {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

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

.cinema-showtime-header h4 {
    font-size: 15px;
    font-weight: 700;
}

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

.screen-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid var(--border-light);
}

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

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

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

.time-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.time-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(10, 10, 18, 0.6) 0%, rgba(10, 10, 18, 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(10, 10, 18, 1) 0%, transparent 100%);
    z-index: 0;
}

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

.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    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(10, 10, 18, 0.5) 0%, rgba(10, 10, 18, 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(10, 10, 18, 0.5) 0%, rgba(10, 10, 18, 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(10, 10, 18, 0.5) 0%, rgba(10, 10, 18, 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(10, 10, 18, 0.5) 0%, rgba(10, 10, 18, 0.9) 100%),
        url('https://images.unsplash.com/photo-1460881680093-7b6c1e93c638?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
    background-size: cover;
    background-position: center;
}

.page-header.events-header::before {
    background: 
        linear-gradient(180deg, rgba(10, 10, 18, 0.5) 0%, rgba(10, 10, 18, 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(10, 10, 18, 0.5) 0%, rgba(10, 10, 18, 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(10, 10, 18, 0.5) 0%, rgba(10, 10, 18, 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(10, 10, 18, 0.5) 0%, rgba(10, 10, 18, 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 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: 1200px) {
    .movies-slider {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .movies-slider {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .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: 992px) {
    .hamburger {
        display: flex !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        background: transparent;
        border: none;
    }
    
    .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;
        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-location {
        display: none;
    }
    
    /* 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);
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-right {
        margin-right: 60px;
    }
    
    .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) {
    .nav-right {
        margin-right: 50px;
    }
    
    .nav-signin {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .nav-link {
        padding: 16px 0;
        font-size: 16px;
    }
    
    .hero-slider {
        height: 50vh;
        min-height: 400px;
    }
    
    .slide-content {
        left: 24px;
        right: 24px;
        max-width: none;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .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;
    }
    
    .events-grid,
    .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: 480px) {
    .movies-slider {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-slider {
        height: 45vh;
    }
    
    .section-main-title {
        font-size: 24px;
    }
}

/* Mobile Overlay - don't block clicks when inactive (fixes desktop More button) */
.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;
    pointer-events: none;
}

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

/* Nav sign in button enhancement */
.nav-signin {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    white-space: nowrap;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.5);
    border-color: rgba(212, 175, 55, 0.5);
}

/* Logo enhancements */
.nav-logo-img {
    height: 48px;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 16px;
}

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

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