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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-elevated: #222222;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #e50914;
    --accent-hover: #f40619;
    --accent-dim: rgba(229, 9, 20, 0.15);
    --border: #2a2a2a;
    --border-light: #333333;
    --radius: 0;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Poppins', sans-serif;
    --max-width: 1280px;
    --navbar-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

::selection {
    background: var(--accent);
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.section-header.left {
    text-align: left;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 16px;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: var(--accent);
    animation: preloader-fill 1.5s ease-in-out infinite;
}

.preloader-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@keyframes preloader-fill {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

/* Cursor Follower */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: none;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.nav-search {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--accent);
    background: var(--bg-card);
}

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

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--bg-elevated);
}

.search-result-item img {
    width: 40px;
    height: 56px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
}

.search-result-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.search-result-type {
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    pointer-events: auto;
}

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

.main-content {
    padding-top: var(--navbar-height);
    min-height: 100vh;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.4), var(--bg-primary) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--accent-dim);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    pointer-events: auto;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
    transform: translateY(-2px);
}

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

.btn-block {
    width: 100%;
}

/* Movie Cards Grid */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.movie-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.movie-card:hover {
    border-color: var(--accent);
    background: var(--bg-elevated);
}

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

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

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

.movie-card-body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.movie-card-body h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.movie-card-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
}

.movie-card-meta span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.movie-card-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    margin-top: auto;
}

/* Theater Cards Grid */
.theater-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.theater-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}

.theater-card:hover {
    border-color: var(--accent);
    background: var(--bg-elevated);
}

.theater-card-image {
    height: 220px;
    overflow: hidden;
}

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

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

.theater-card-body {
    padding: 24px;
}

.theater-card-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.theater-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.benefit-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--accent);
    background: var(--bg-elevated);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Movie Detail Page */
.movie-detail {
    padding: 40px 24px 80px;
}

.movie-detail-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.movie-detail-poster {
    position: sticky;
    top: calc(var(--navbar-height) + 24px);
}

.movie-detail-poster img {
    width: 100%;
    border-radius: 0;
    border: 1px solid var(--border);
}

.movie-detail-info h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.movie-detail-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.movie-detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.meta-item {
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.meta-item-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 4px;
}

.meta-item-value {
    font-size: 0.95rem;
    font-weight: 500;
}

.meta-item-value.price {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Booking Form */
.booking-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
    margin-top: 24px;
}

.booking-form h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.9rem;
    border-radius: 0;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
}

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

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.payment-option {
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    pointer-events: auto;
}

.payment-option:hover {
    border-color: var(--accent);
}

.payment-option.selected {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.payment-option input {
    display: none;
}

.payment-option label {
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    pointer-events: none;
}

/* Success Page */
.success-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 40px 24px;
}

.success-card {
    max-width: 520px;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 48px;
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    color: var(--accent);
}

.success-card h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-card p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.success-card .ref-number {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin: 16px 0;
}

.success-card .warning-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Theater Detail */
.theater-detail {
    padding: 40px 24px 80px;
}

.theater-detail-hero {
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
}

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

.theater-detail-hero .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 24px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.theater-detail-hero .overlay h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.theater-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.theater-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.theater-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
}

.theater-sidebar h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.theater-sidebar p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* Contact Page */
.contact-page {
    padding: 40px 24px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
}

.contact-info {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-detail svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-detail h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Footer */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 24px 0;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-primary);
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

/* Filter Bar */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-bar .search-box {
    flex: 1;
    max-width: 400px;
}

.filter-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Toast / Alert */
.alert {
    padding: 16px 20px;
    margin-bottom: 24px;
    border: 1px solid;
    font-size: 0.85rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background: rgba(229, 9, 20, 0.1);
    border-color: rgba(229, 9, 20, 0.3);
    color: var(--accent);
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--bg-primary);
}

.auth-card {
    width: 100%;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
}

.auth-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.auth-card p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* Fade Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .movie-detail-grid {
        grid-template-columns: 300px 1fr;
        gap: 32px;
    }

    .theater-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-page {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 48px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .movie-detail-grid {
        grid-template-columns: 1fr;
    }

    .movie-detail-poster {
        max-width: 300px;
        margin: 0 auto;
        position: static;
    }

    .theater-detail-hero {
        height: 250px;
    }

    .theater-detail-hero .overlay h1 {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-links {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        margin-left: 0;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-search {
        max-width: none;
    }

    .movie-detail-meta {
        grid-template-columns: 1fr;
    }

    .contact-page {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .movie-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .theater-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-body {
        padding: 10px 12px;
    }

    .movie-card-body h3 {
        font-size: 0.8rem;
    }

    .movie-card-meta span {
        font-size: 0.7rem;
    }

    .movie-card-price {
        font-size: 1rem;
    }

    .movie-card-body h3 {
        font-size: 0.85rem;
    }

    .payment-options {
        grid-template-columns: 1fr 1fr;
    }

    .auth-card {
        padding: 24px;
    }

    .container {
        padding: 0 16px;
    }
}

/* Admin Styles */
.admin-body {
    background: #0a0a0a;
    cursor: auto;
}

.admin-body .cursor-dot,
.admin-body .cursor-outline {
    display: none;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: #111;
    border-right: 1px solid var(--border);
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
}

.admin-sidebar .logo {
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.admin-sidebar .logo a {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.admin-nav-item:hover,
.admin-nav-item.active {
    color: #fff;
    background: rgba(229, 9, 20, 0.1);
}

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

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 32px;
}

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

.admin-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
    border: 1px solid var(--border);
}

.admin-table th {
    text-align: left;
    padding: 14px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    border-bottom: 1px solid var(--border);
}

.admin-table td {
    padding: 14px 16px;
    font-size: 0.85rem;
    color: #ccc;
    border-bottom: 1px solid var(--border);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.badge {
    display: inline-flex;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.badge-warning {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.badge-error {
    background: rgba(229, 9, 20, 0.15);
    color: var(--accent);
}

.badge-info {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-actions button,
.admin-actions a {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-family: var(--font);
    cursor: pointer;
    border: 1px solid var(--border);
    background: transparent;
    color: #ccc;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.admin-actions .btn-edit:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.admin-actions .btn-delete:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.admin-actions .btn-approve:hover {
    border-color: #22c55e;
    color: #22c55e;
}

.admin-actions .btn-reject:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: #111;
    border: 1px solid var(--border);
    padding: 24px;
}

.stat-card h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid var(--border);
    padding: 32px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .admin-sidebar {
        width: 60px;
    }
    .admin-sidebar .logo a,
    .admin-sidebar .admin-nav-item span {
        display: none;
    }
    .admin-main {
        margin-left: 60px;
        padding: 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
