/* =============================================
   NEON CINEMA - Custom Stylesheet
   Premium Dark Cinematic Theme
   ============================================= */

/* ===================================
   1. CSS VARIABLES & ROOT
   =================================== */
:root {
    --primary: #E50914;
    --primary-dark: #B20710;
    --primary-light: #FF1A25;
    --secondary: #F5C518;
    --secondary-dark: #D4A80F;
    --bg-body: #121212;
    --bg-card: #1A1A1A;
    --bg-elevated: #1E1E1E;
    --bg-input: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-muted: #666666;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --glow-red: 0 0 20px rgba(229, 9, 20, 0.3);
    --glow-gold: 0 0 20px rgba(245, 197, 24, 0.3);
    --glow-red-strong: 0 0 40px rgba(229, 9, 20, 0.5);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
    --border-card: 1px solid rgba(255, 255, 255, 0.06);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ===================================
   2. RESET & BASE
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ===================================
   3. TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
}

.font-heading { font-family: var(--font-heading) !important; }
.font-body { font-family: var(--font-body) !important; }
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--text-secondary) !important; }
.text-gold { color: var(--secondary) !important; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================================
   4. NAVBAR
   =================================== */
.neon-navbar {
    background: rgba(18, 18, 18, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 0;
    z-index: 1050;
    transition: var(--transition);
}

.neon-navbar.scrolled {
    background: rgba(18, 18, 18, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.neon-logo {
    font-family: var(--font-heading) !important;
    font-size: 1.4rem !important;
    color: var(--primary) !important;
    letter-spacing: 2px;
    font-weight: 400;
}

.neon-navbar .nav-link {
    color: var(--text-secondary) !important;
    font-size: 13.5px;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-fast);
}

.neon-navbar .nav-link:hover {
    color: var(--text-primary) !important;
}

.neon-navbar .nav-link.active {
    color: var(--text-primary) !important;
}

.neon-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.navbar-spacer {
    height: 56px;
}

.user-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.dropdown-menu-dark {
    background: var(--bg-elevated) !important;
    border: var(--border-subtle);
}

.dropdown-menu-dark .dropdown-item {
    color: var(--text-secondary);
    font-size: 13px;
    padding: 8px 16px;
}

.dropdown-menu-dark .dropdown-item:hover {
    background: rgba(229, 9, 20, 0.15);
    color: var(--text-primary);
}

/* ===================================
   5. BUTTONS
   =================================== */
.btn-neon-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 10px 24px;
    transition: var(--transition);
    font-size: 13.5px;
    letter-spacing: 0.5px;
}

.btn-neon-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: var(--glow-red);
    transform: translateY(-1px);
}

.btn-neon-secondary {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 10px 24px;
    transition: var(--transition);
    font-size: 13.5px;
}

.btn-neon-secondary:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: var(--glow-gold);
}

.btn-neon-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 500;
    padding: 10px 24px;
    transition: var(--transition);
    font-size: 13.5px;
}

.btn-neon-outline:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-cta-seats {
    background: var(--primary);
    color: var(--secondary) !important;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 3px;
    border: none;
    border-radius: var(--radius);
    padding: 18px 40px;
    width: 100%;
    transition: var(--transition);
}

.btn-cta-seats:hover {
    background: var(--primary-dark);
    box-shadow: var(--glow-red-strong);
    transform: translateY(-2px);
}

/* ===================================
   6. CARDS
   =================================== */
.neon-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.neon-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
}

/* ===================================
   7. HERO SECTION (Landing Page)
   =================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, var(--bg-body) 0%, rgba(18,18,18,0.8) 40%, transparent 100%);
    z-index: 1;
}

.hero-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(18,18,18,0.6), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
}

.hero-label {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.3rem;
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-badge {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}

.hero-badge.gold {
    border-color: var(--secondary);
    color: var(--secondary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--text-primary);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 14px;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===================================
   8. MOVIE CARDS (Now Playing)
   =================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.view-all {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-fast);
}

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

.movie-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

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

.movie-card .poster-wrap {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-card);
}

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

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

.movie-card .poster-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-imax { background: var(--primary); color: #fff; }
.badge-scifi { background: #0ea5e9; color: #fff; }
.badge-horror { background: #7c3aed; color: #fff; }
.badge-action { background: var(--primary); color: #fff; }
.badge-adventure { background: #059669; color: #fff; }
.badge-drama { background: #d97706; color: #fff; }
.badge-premiere { background: var(--primary); color: #fff; }
.badge-gold-class { background: var(--secondary); color: #000; }
.badge-default { background: var(--primary); color: #fff; }

.movie-card .movie-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===================================
   9. COMING SOON CARDS
   =================================== */
.coming-soon-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: var(--transition);
}

.coming-soon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.coming-soon-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coming-soon-card .cs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.coming-soon-card .cs-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-card .cs-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 1px;
}

.coming-soon-card .cs-desc {
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===================================
   10. MOVIE DETAIL PAGE
   =================================== */
.detail-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero .hero-gradient {
    height: 80%;
}

.detail-hero .detail-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 0 5% 40px;
}

.detail-meta {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-meta .meta-poster {
    width: 140px;
    min-width: 140px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.detail-meta .meta-poster img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-meta .meta-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.meta-item label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.meta-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.synopsis-section h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.synopsis-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.preview-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.preview-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.preview-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-card);
}

/* ===================================
   11. EXPLORE MOVIES PAGE
   =================================== */
.filter-sidebar {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: var(--border-card);
    position: sticky;
    top: 80px;
}

.filter-sidebar .search-input {
    background: var(--bg-input);
    border: var(--border-subtle);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 10px 14px 10px 38px;
    font-size: 13px;
    width: 100%;
    transition: var(--transition);
}

.filter-sidebar .search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.15);
}

.filter-sidebar .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
}

.genre-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: var(--bg-input);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: var(--transition-fast);
    margin: 3px;
}

.genre-tag:hover,
.genre-tag.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-clear-filter {
    background: var(--bg-input);
    color: var(--text-secondary);
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 20px;
    font-size: 12px;
    width: 100%;
    transition: var(--transition);
}

.btn-clear-filter:hover {
    background: var(--primary);
    color: #fff;
}

/* ===================================
   12. CINEMAS / LOCATIONS PAGE
   =================================== */
.cinema-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.cinema-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255,255,255,0.1);
}

.cinema-card .cinema-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.cinema-card .cinema-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cinema-card .cinema-body {
    padding: 20px;
}

.cinema-card .cinema-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cinema-card .cinema-address {
    color: var(--text-secondary);
    font-size: 12px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.cinema-card .cinema-address i {
    color: var(--primary);
    margin-top: 2px;
}

.studio-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    background: var(--bg-elevated);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.06);
}

/* ===================================
   13. STEP INDICATOR (Booking Flow)
   =================================== */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 30px 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.step-circle.active {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--glow-red);
}

.step-circle.completed {
    background: var(--primary);
    color: #fff;
}

.step-circle.inactive {
    background: var(--bg-input);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
}

.step-label {
    font-size: 13px;
    font-weight: 500;
}

.step-label.active { color: var(--text-primary); }
.step-label.inactive { color: var(--text-muted); }

.step-line {
    width: 80px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 12px;
}

.step-line.completed {
    background: var(--primary);
}

/* ===================================
   14. SEAT SELECTION
   =================================== */
.movie-info-bar {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.movie-info-bar .mini-poster {
    width: 50px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.movie-info-bar .mini-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-info-bar .info-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.movie-info-bar .info-detail {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.movie-info-bar .info-detail i {
    color: var(--primary);
    margin-right: 4px;
}

.movie-info-bar .info-stats {
    margin-left: auto;
    text-align: right;
}

.movie-info-bar .stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.movie-info-bar .stat-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.movie-info-bar .stat-value.price {
    color: var(--primary);
}

.screen-indicator {
    text-align: center;
    margin: 30px auto 20px;
    max-width: 600px;
}

.screen-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
    margin-bottom: 8px;
}

.screen-label {
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.seat-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 0;
}

.seat-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.seat-row-label {
    width: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.seat {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.seat.available {
    background: var(--bg-input);
    border-color: rgba(255,255,255,0.08);
    color: var(--text-muted);
}

.seat.available:hover {
    background: rgba(245, 197, 24, 0.3);
    border-color: var(--secondary);
}

.seat.selected {
    background: var(--secondary);
    color: #000;
    font-weight: 700;
    box-shadow: var(--glow-gold);
    animation: pulse-seat 1.5s infinite;
}

.seat.occupied {
    background: #333;
    color: #555;
    cursor: not-allowed;
    opacity: 0.5;
}

.seat.gap {
    visibility: hidden;
    width: 12px;
}

@keyframes pulse-seat {
    0%, 100% { box-shadow: 0 0 5px rgba(245, 197, 24, 0.3); }
    50% { box-shadow: 0 0 15px rgba(245, 197, 24, 0.5); }
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: var(--border-card);
    margin-top: 20px;
}

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

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-box.available { background: var(--bg-input); border: 1px solid rgba(255,255,255,0.08); }
.legend-box.selected { background: var(--secondary); }
.legend-box.occupied { background: #333; opacity: 0.5; }

.seat-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1040;
    backdrop-filter: blur(20px);
    flex-wrap: wrap;
    gap: 12px;
}

.seat-bottom-bar .selected-seats {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.seat-badge {
    background: var(--secondary);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.seat-bottom-bar .total-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.seat-bottom-bar .total-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* ===================================
   15. CHECKOUT PAGE
   =================================== */
.checkout-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius);
    padding: 24px;
}

.checkout-poster {
    width: 160px;
    min-width: 160px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.checkout-info .info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 6px;
}

.checkout-info .info-row i {
    color: var(--text-muted);
    width: 16px;
}

.order-summary {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius);
    padding: 24px;
}

.order-summary h5 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.order-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
}

.order-line .label { color: var(--text-secondary); }
.order-line .value { color: var(--text-primary); font-weight: 500; }

.order-total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-weight: 700;
    font-size: 15px;
}

.order-total .value { color: var(--primary); }

.payment-methods {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-card {
    background: var(--bg-elevated);
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 20px 28px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    min-width: 130px;
}

.payment-card:hover {
    border-color: rgba(255,255,255,0.15);
}

.payment-card.active {
    border-color: var(--secondary);
    box-shadow: var(--glow-gold);
}

.payment-card i {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.payment-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===================================
   16. TICKET / BOOKING CONFIRMED
   =================================== */
.ticket-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--bg-body);
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 32px;
    color: #fff;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.ticket-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary);
    text-align: center;
    letter-spacing: 3px;
}

.ticket-subtitle {
    color: var(--text-secondary);
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.ticket-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 480px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(229, 9, 20, 0.15), transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(15, 52, 96, 0.3), transparent 60%);
    pointer-events: none;
}

.ticket-card .ticket-badge {
    background: var(--primary);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.ticket-card .ticket-movie {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.ticket-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.ticket-info-item label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 3px;
}

.ticket-info-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.qr-section {
    text-align: center;
    margin-top: 20px;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 8px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.qr-text {
    font-size: 11px;
    color: var(--text-muted);
    max-width: 300px;
    margin: 0 auto;
}

.ticket-actions {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.ticket-actions a {
    color: var(--text-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.ticket-actions a:hover {
    color: var(--primary);
}

/* ===================================
   17. AUTH PAGES (Login/Register)
   =================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    background: var(--bg-body);
}

.auth-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: none;
}

.auth-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-left .auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18,18,18,0.7) 0%, rgba(18,18,18,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
}

.auth-left .auth-brand {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 2px;
}

.auth-left .auth-tagline {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-top: 8px;
}

.auth-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--bg-body);
}

.auth-form-wrap {
    width: 100%;
    max-width: 400px;
}

.auth-neon-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(229, 9, 20, 0.3);
}

.auth-form-wrap h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.auth-form-wrap .auth-sub {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .auth-left { display: block; }
}

/* ===================================
   18. FORM CONTROLS
   =================================== */
.form-neon {
    position: relative;
}

.form-neon .form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-neon .form-control,
.form-neon .form-select {
    background: var(--bg-input);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 13px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-neon .form-control:focus,
.form-neon .form-select:focus {
    background: var(--bg-input);
    border-color: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
}

.form-neon .form-control::placeholder {
    color: var(--text-muted);
}

.form-neon .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.form-neon .form-control.with-icon {
    padding-left: 42px;
}

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

/* ===================================
   19. HISTORY / MY TICKETS
   =================================== */
.welcome-section h6 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.welcome-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.active-ticket-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    transition: var(--transition);
}

.active-ticket-card:hover {
    box-shadow: var(--shadow-card);
}

.active-ticket-card .ticket-poster {
    width: 200px;
    min-width: 200px;
}

.active-ticket-card .ticket-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.active-ticket-card .ticket-details {
    padding: 24px;
    flex: 1;
}

.active-ticket-card .ticket-movie-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
}

.active-ticket-card .ticket-type {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
}

.ticket-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.ticket-meta-grid .tmg-item label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
}

.ticket-meta-grid .tmg-item span {
    font-size: 14px;
    font-weight: 600;
}

/* ===================================
   20. ADMIN SIDEBAR
   =================================== */
.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    background: var(--bg-card);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    border-right: 1px solid rgba(255,255,255,0.05);
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.admin-sidebar .sidebar-brand {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-sidebar .brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.admin-sidebar .sidebar-brand small {
    display: block;
    color: var(--text-muted);
    font-size: 11px;
    margin-top: 2px;
}

.admin-sidebar .sidebar-section {
    color: var(--text-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 24px 8px;
}

.admin-sidebar .nav-link {
    color: var(--text-secondary);
    padding: 11px 24px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

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

.admin-sidebar .nav-link.active {
    color: var(--text-primary);
    background: rgba(229, 9, 20, 0.1);
    border-left-color: var(--primary);
}

.admin-sidebar .nav-link i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.admin-sidebar .text-danger-hover:hover {
    color: var(--danger) !important;
}

.sidebar-toggle {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1070;
    display: none;
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 8px;
    padding: 8px 12px;
}

/* ===================================
   21. ADMIN CONTENT
   =================================== */
.admin-content {
    margin-left: 260px;
    min-height: 100vh;
    background: var(--bg-body);
}

.admin-topbar {
    background: var(--bg-card);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-topbar h5 {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
}

.stat-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-icon.red { background: rgba(229, 9, 20, 0.15); color: var(--primary); }
.stat-icon.gold { background: rgba(245, 197, 24, 0.15); color: var(--secondary); }
.stat-icon.green { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.stat-icon.blue { background: rgba(59, 130, 246, 0.15); color: var(--info); }

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 1px;
}

.stat-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 12px;
}

/* ===================================
   22. DATA TABLES (Admin)
   =================================== */
.neon-table {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.neon-table .table-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.neon-table .table-header h6 {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
}

.table-dark-custom {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-primary);
    --bs-table-border-color: rgba(255,255,255,0.05);
    --bs-table-hover-bg: rgba(255,255,255,0.03);
    --bs-table-striped-bg: rgba(255,255,255,0.02);
}

.table-dark-custom th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
    padding: 12px 16px;
    border-bottom-width: 1px;
    white-space: nowrap;
}

.table-dark-custom td {
    padding: 12px 16px;
    vertical-align: middle;
    font-size: 13px;
    color: var(--text-secondary);
}

.table-dark-custom tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

.table-poster-sm {
    width: 40px;
    height: 56px;
    border-radius: 4px;
    object-fit: cover;
}

.btn-action {
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 6px;
}

/* ===================================
   23. PAGINATION
   =================================== */
.neon-pagination {
    gap: 0;
}

.neon-pagination .page-item .page-link {
    background: var(--bg-input);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-secondary);
    font-size: 13px;
    padding: 8px 14px;
    min-width: 40px;
    text-align: center;
    line-height: 1.4;
    transition: var(--transition-fast);
    margin: 0 2px;
    border-radius: var(--radius-sm) !important;
}

.neon-pagination .page-item .page-link:focus {
    box-shadow: none;
}

.neon-pagination .page-item .page-link:hover {
    background: rgba(229, 9, 20, 0.15);
    color: var(--text-primary);
    border-color: var(--primary);
}

.neon-pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--glow-red);
}

.neon-pagination .page-item.disabled .page-link {
    background: var(--bg-input);
    color: var(--text-muted);
    opacity: 0.5;
    border-color: rgba(255,255,255,0.04);
}

/* ===================================
   24. BADGES
   =================================== */
.badge-status-paid { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.badge-status-pending { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.badge-status-cancelled { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
.badge-status-expired { background: rgba(107, 114, 128, 0.15); color: #6B7280; }

.badge-neon {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* ===================================
   25. MODAL (Admin)
   =================================== */
.modal-dark .modal-content {
    background: var(--bg-elevated);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
}

.modal-dark .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 20px 24px;
}

.modal-dark .modal-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
}

.modal-dark .modal-body {
    padding: 24px;
}

.modal-dark .modal-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 16px 24px;
}

.modal-dark .btn-close {
    filter: invert(1);
    opacity: 0.6;
}

/* ===================================
   26. ALERTS
   =================================== */
.alert-neon {
    border-radius: var(--radius-sm);
    font-size: 13px;
    border: none;
    padding: 12px 18px;
}

.alert-neon-success {
    background: rgba(34, 197, 94, 0.12);
    color: var(--success);
    border-left: 3px solid var(--success);
}

.alert-neon-danger {
    background: rgba(239, 68, 68, 0.12);
    color: var(--danger);
    border-left: 3px solid var(--danger);
}

.alert-neon-warning {
    background: rgba(245, 158, 11, 0.12);
    color: var(--warning);
    border-left: 3px solid var(--warning);
}

/* ===================================
   27. FOOTER
   =================================== */
.neon-footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    text-align: center;
}

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

/* ===================================
   28. ANIMATIONS
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   29. UTILITIES
   =================================== */
.glow-red { box-shadow: var(--glow-red); }
.glow-gold { box-shadow: var(--glow-gold); }
.bg-dark-card { background: var(--bg-card); }
.bg-dark-elevated { background: var(--bg-elevated); }
.border-subtle { border: var(--border-subtle); }
.img-placeholder {
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
}

/* ===================================
   30. RESPONSIVE
   =================================== */
@media (max-width: 1199px) {
    .hero-title { font-size: 3rem; }
    .coming-soon-card { height: 240px; }
}

@media (max-width: 991px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.show { transform: translateX(0); }
    .admin-content { margin-left: 0; }
    .sidebar-toggle { display: block; }
    
    .hero-section { min-height: 70vh; }
    .detail-hero { height: 45vh; }
    .detail-meta .meta-info { grid-template-columns: repeat(2, 1fr); }
    .preview-gallery { grid-template-columns: repeat(2, 1fr); }
    .active-ticket-card { flex-direction: column; }
    .active-ticket-card .ticket-poster { width: 100%; height: 200px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.2rem; }
    .hero-section { min-height: 60vh; padding-bottom: 30px; }
    .hero-desc { font-size: 13px; }
    
    .detail-hero { height: 40vh; min-height: 300px; }
    .detail-meta { flex-direction: column; }
    .detail-meta .meta-poster { width: 100px; }
    .detail-meta .meta-info { grid-template-columns: 1fr 1fr; gap: 12px; }
    
    .preview-gallery { grid-template-columns: 1fr 1fr; }
    
    .seat { width: 24px; height: 24px; font-size: 7px; }
    .seat.gap { width: 8px; }
    .seat-row-label { width: 18px; font-size: 10px; }
    .seat-bottom-bar { flex-direction: column; text-align: center; padding: 12px 16px; }
    
    .checkout-card { flex-direction: column; }
    .checkout-poster { width: 100%; }
    
    .payment-methods { flex-direction: column; }
    .payment-card { width: 100%; }
    
    .step-line { width: 40px; }
    
    .ticket-title { font-size: 1.8rem; }
    .ticket-card { padding: 20px; }
    
    .cinema-card .cinema-img { height: 160px; }
    
    .coming-soon-card { height: 200px; }
    .coming-soon-card .cs-title { font-size: 1.4rem; }
    
    .section-title { font-size: 1.5rem; }
}

@media (max-width: 575px) {
    .seat-legend { flex-direction: column; align-items: center; gap: 12px; }
    .ticket-info-grid { grid-template-columns: 1fr; }
    .movie-info-bar { flex-direction: column; text-align: center; }
    .movie-info-bar .info-stats { margin-left: 0; text-align: center; }
}

/* ===================================
   31. PRINT STYLES (Ticket)
   =================================== */
@media print {
    .neon-navbar, .navbar-spacer, .neon-footer, .ticket-actions { display: none !important; }
    body { background: #fff !important; color: #000 !important; }
    .ticket-card { box-shadow: none; border: 1px solid #ccc; }
}
