/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;500;600;700;800;900&display=swap');

:root {
    /* Colors - Cine 4 Art et Essai */
    --bg-dark: #050505;
    --bg-surface: #0f1012;
    --bg-card: #16181c;

    --text-primary: #ffffff;
    --text-secondary: #a8a8a8;
    --text-tertiary: #6b7280;

    /* Rouge Cinema DA */
    --primary-color: #cf2e2e;
    --primary-hover: #a12424;
    --primary-dark: #8b1f1f;
    --primary-light: #e63946;
    --accent-color: #ff4444;
    
    /* Gradients Cinema Elegants */
    --gradient-primary: linear-gradient(135deg, #a12424 0%, #cf2e2e 50%, #e63946 100%);
    --gradient-subtle: linear-gradient(135deg, #8b1f1f 0%, #cf2e2e 100%);
    --gradient-overlay: linear-gradient(to top, #050505 0%, rgba(5, 5, 5, 0.85) 50%, rgba(5, 5, 5, 0.4) 100%);

    /* Accents Premium Cinema */
    --gold-accent: #d4a855;
    --glass-bg: rgba(207, 46, 46, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(207, 46, 46, 0.3);

    --success: #10b981;
    --warning: #f59e0b;

    /* Spacing & Sizes */
    --header-height: 80px;
    --container-width: 1280px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    touch-action: manipulation;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    touch-action: manipulation;
}

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

ul {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

.text-gradient {
    background: linear-gradient(135deg, #cf2e2e 0%, #e63946 50%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cinema Premium Accents */
.text-primary-color {
    color: var(--primary-color);
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.mt-auto {
    margin-top: auto;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

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

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

.text-right {
    text-align: right;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

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

.section-darker {
    background-color: #000;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid transparent;
}

#header.scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(207, 46, 46, 0.15);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo img {
    height: 48px;
    border-radius: var(--radius-sm);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.logo:hover .logo-title {
    color: var(--primary-color);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-nav ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 1000;
    padding: 24px;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

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

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-nav-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.close-menu-btn {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.mobile-nav a.active-link {
    color: var(--text-primary);
    border-left: 3px solid var(--primary-color);
    padding-left: 12px;
}

.mobile-nav-footer {
    margin-top: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(207, 46, 46, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(207, 46, 46, 0.6);
}

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

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(207, 46, 46, 0.1);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-primary-soft {
    background: rgba(207, 46, 46, 0.1);
    color: var(--primary-color);
}

.btn-primary-soft:hover {
    background: rgba(207, 46, 46, 0.2);
}

/* Hero Carousel Section */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.7) 50%, rgba(5, 5, 5, 0.3) 100%);
}

.slide-overlay.backdrop-blur {
    backdrop-filter: blur(2px);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-height);
}

.carousel-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(207, 46, 46, 0.6);
    transform: scale(1.2);
}

/* Hero Section (legacy) */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 0;
}

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

.hero-bg {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.8) 40%, rgba(5, 5, 5, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-wrapper {
    max-width: 650px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(207, 46, 46, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
    border: 1px solid rgba(207, 46, 46, 0.25);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeBounce 2s infinite;
}

.mouse-icon {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-primary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--text-primary);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

/* Features Band */
.features-band {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--glass-border);
    padding: 40px 0;
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: rgba(207, 46, 46, 0.05);
    transform: translateY(-2px);
    border-left: 2px solid var(--primary-color);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.feature-text span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Movie Grid */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-controls {
    display: flex;
    gap: 12px;
    background: var(--bg-card);
    padding: 6px;
    border-radius: 50px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 40px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.filter-btn.active {
    background: var(--bg-dark);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 -2px 0 var(--primary-color);
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.movie-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease,
                opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(207, 46, 46, 0.1);
    border-color: rgba(207, 46, 46, 0.2);
}

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

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

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

.movie-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(207, 46, 46, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.movie-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffd700;
    /* Gold */
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.badge-green {
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.3);
}

.movie-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.movie-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    line-height: 1.3;
}

.movie-meta {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

.movie-sessions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.session-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-primary);
    border: 1px solid transparent;
    transition: 0.2s;
}

.session-pill:hover {
    background: rgba(207, 46, 46, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Infos Section */
.info-section {
    background-color: #0b0c0e;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.label-badge {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: block;
}

.info-list {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(207, 46, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-frame img {
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}

.frame-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.4;
}

/* Pricing Section */
.pricing-card-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 64px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
}

.pricing-item.highlight {
    background: rgba(207, 46, 46, 0.05);
    border-color: rgba(207, 46, 46, 0.2);
}

.pricing-label {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.pricing-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-note {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.download-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* Teaser / Partners */
.section-icon-large {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    opacity: 0.9;
}

.newsletter-box {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-md);
    max-width: 500px;
    margin: 32px auto 0;
    border: 1px solid var(--glass-border);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.newsletter-form input {
    flex-grow: 1;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 20px;
    color: white;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(207, 46, 46, 0.1);
}

.partners-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 32px;
}

.partners-carousel img {
    height: 40px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: 0.3s;
}

.partners-carousel img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Footer */
footer {
    background: #000;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.social-links a:hover {
    background: rgba(207, 46, 46, 0.15);
    color: var(--primary-color);
    border-color: rgba(207, 46, 46, 0.3);
    transform: translateY(-2px);
}

.footer-nav h4,
.footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: white;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(207, 46, 46, 0.1);
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--primary-color);
    transition: color 0.2s;
}

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

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal.open {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 900px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10;
}

/* Animations */
@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

@keyframes fadeBounce {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(5px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .carousel-indicators {
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .hero-carousel {
        min-height: 600px;
    }
    
    .slide-content {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .carousel-indicators {
        bottom: 60px;
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

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

    .download-actions {
        flex-direction: column;
    }

    .pricing-card-wrapper {
        padding: 32px 20px;
    }
}

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

/* ================================================
   CINE 4 - Art et Essai Premium Cinema Styles
   ================================================ */

/* Selection styling */
::selection {
    background: rgba(207, 46, 46, 0.3);
    color: white;
}

/* Scrollbar styling for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Cinema ticket/session pill enhanced */
.session-pill.next-session {
    background: rgba(207, 46, 46, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-light);
}

/* Premium badge for Art et Essai */
.badge-art-essai {
    background: linear-gradient(135deg, rgba(207, 46, 46, 0.2) 0%, rgba(139, 31, 31, 0.3) 100%);
    color: var(--primary-light);
    border: 1px solid rgba(207, 46, 46, 0.3);
}

/* Subtle film grain effect for sections (optional) */
.section-cinematic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Elegant divider */
.divider-cinema {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.3;
}

/* ============================================
   TICKETING MODAL - Demo Experience
   ============================================ */

/* Modal Base */
#ticketing-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#ticketing-modal.open {
    display: flex;
    opacity: 1;
}

.ticketing-modal-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(207, 46, 46, 0.2);
    box-shadow: 0 25px 80px rgba(207, 46, 46, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#ticketing-modal.open .ticketing-modal-content {
    transform: scale(1) translateY(0);
}

.ticketing-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 100;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.ticketing-close:hover {
    background: rgba(207, 46, 46, 0.2);
    color: #cf2e2e;
    transform: rotate(90deg);
}

/* Main Container */
.ticketing-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    height: 100%;
    max-height: 90vh;
}

/* Left Section - Steps */
.ticketing-steps {
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Header with Poster */
.ticketing-header {
    display: flex;
    gap: 20px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(207, 46, 46, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#ticket-movie-poster {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ticket-header-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ticket-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cf2e2e;
    font-weight: 600;
    margin-bottom: 8px;
}

#ticket-movie-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}

#ticket-session-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Stepper Progress Bar */
.ticketing-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 32px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 0;
}

.stepper-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.stepper-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stepper-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
    display: none;
}

.stepper-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.stepper-item.active .stepper-circle {
    background: #cf2e2e;
    border-color: #cf2e2e;
    color: white;
    box-shadow: 0 0 20px rgba(207, 46, 46, 0.5);
}

.stepper-item.completed .stepper-circle {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.stepper-item.completed .stepper-circle::after {
    content: '✓';
    font-size: 0.9rem;
}

.stepper-item.completed .stepper-circle span {
    display: none;
}

.stepper-line.completed {
    background: #10b981;
}

/* Step Content Area */
.ticketing-step {
    display: none;
    padding: 24px 32px;
    animation: fadeInStep 0.4s ease;
    flex: 1;
}

.ticketing-step.active {
    display: block;
}

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

.ticketing-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticketing-step h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #cf2e2e;
    border-radius: 2px;
}

/* Step 1: Session Selection */
.sessions-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.session-btn {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.session-btn:hover {
    background: rgba(207, 46, 46, 0.1);
    border-color: rgba(207, 46, 46, 0.3);
}

.session-btn.selected {
    background: rgba(207, 46, 46, 0.15);
    border-color: #cf2e2e;
    color: white;
    box-shadow: 0 0 20px rgba(207, 46, 46, 0.2);
}

.session-btn.selected .session-date {
    color: rgba(255, 255, 255, 0.7);
}

.session-time {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.session-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 4px;
    font-weight: 400;
}

/* Step 2: Seats Selection */
.screen-indicator {
    text-align: center;
    padding: 12px 60px;
    background: linear-gradient(180deg, rgba(207, 46, 46, 0.25) 0%, rgba(207, 46, 46, 0.05) 100%);
    color: var(--text-secondary);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 28px;
    border-radius: 4px 4px 100% 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(207, 46, 46, 0.15);
}

.screen-indicator span {
    position: relative;
    z-index: 1;
}

.screen-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #cf2e2e 50%, transparent 90%);
    border-radius: 4px 4px 0 0;
}

.screen-indicator::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(207, 46, 46, 0.4), transparent);
}

.seats-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
}

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

.row-label {
    width: 24px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.seat {
    width: 28px;
    height: 28px;
    border-radius: 6px 6px 8px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.seat:hover:not(.occupied):not(.selected) {
    background: rgba(207, 46, 46, 0.3);
    border-color: rgba(207, 46, 46, 0.5);
    transform: scale(1.1);
}

.seat.selected {
    background: #cf2e2e;
    border-color: #cf2e2e;
    box-shadow: 0 0 12px rgba(207, 46, 46, 0.6);
    transform: scale(1.05);
}

.seat.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    color: white;
}

.seat.occupied {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
}

.seat.occupied::before {
    content: '×';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
}

.seat-aisle {
    width: 20px;
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legend-item .seat {
    width: 20px;
    height: 20px;
    cursor: default;
}

.legend-item .seat:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.legend-item .seat.selected {
    transform: none;
}

/* Step 3: Price Selection */
.step-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    margin-top: -12px;
}

.price-selector {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.price-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-name {
    font-weight: 600;
    font-size: 1rem;
}

.price-amount {
    color: #cf2e2e;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-note {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.counter-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.counter-control button {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.counter-control button:hover {
    background: rgba(207, 46, 46, 0.2);
    color: #cf2e2e;
}

.counter-control button:active {
    transform: scale(0.95);
}

.counter-control span {
    width: 40px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Step 4: Payment Form */
.payment-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-form label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.payment-form input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.payment-form input:focus {
    outline: none;
    border-color: #cf2e2e;
    background: rgba(207, 46, 46, 0.05);
    box-shadow: 0 0 0 3px rgba(207, 46, 46, 0.1);
}

.payment-form input::placeholder {
    color: var(--text-tertiary);
}

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

.payment-form .btn-pay {
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.demo-notice {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.demo-notice i {
    color: var(--warning);
}

/* Step 5: Success */
.step-success {
    display: none;
    padding: 40px 32px;
}

.step-success.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-message {
    text-align: center;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-message i.fa-check-circle {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
    animation: checkPulse 1s ease infinite;
}

@keyframes checkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.success-message h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-message h3::before {
    display: none;
}

.success-message p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.qr-code-placeholder {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.qr-code-placeholder i {
    font-size: 5rem;
    color: #1a1a1a;
}

.qr-code-placeholder canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.confirmation-details {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.confirmation-details p {
    margin: 4px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.confirmation-details strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.success-icon {
    margin-bottom: 16px;
}

.success-icon i {
    font-size: 4rem;
    color: #10b981;
    animation: checkPulse 1s ease infinite;
}

/* Right Sidebar - Summary */
.ticketing-sidebar {
    background: rgba(0, 0, 0, 0.4);
    padding: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.ticketing-sidebar h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticketing-sidebar h3 i {
    color: #cf2e2e;
}

.summary-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-line span:first-child {
    color: var(--text-tertiary);
}

.summary-line span:last-child {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
    max-width: 150px;
}

.summary-seats-list {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.summary-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 8px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-total span:first-child {
    font-size: 1rem;
    font-weight: 600;
}

.summary-total span:last-child {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #cf2e2e;
}

#next-step-btn {
    margin-top: 20px;
    background: linear-gradient(135deg, #cf2e2e 0%, #a01c1c 100%);
    border: none;
    padding: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#next-step-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(207, 46, 46, 0.4);
}

#next-step-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsive - Ticketing */
@media (max-width: 900px) {
    .ticketing-modal-content {
        width: 98%;
        max-width: 98%;
        max-height: 95vh;
    }
    
    .ticketing-container {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 768px) {
    #ticketing-modal {
        align-items: flex-end;
        padding: 0;
    }

    .ticketing-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    }

    #ticketing-modal.open .ticketing-modal-content {
        transform: translateY(0);
    }

    .ticketing-container {
        display: flex;
        flex-direction: column;
        max-height: 92vh;
    }

    .ticketing-steps {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .ticketing-header {
        padding: 16px;
        flex-direction: row;
        gap: 12px;
    }

    #ticket-movie-poster {
        width: 50px;
        height: 75px;
        border-radius: 6px;
    }

    .ticket-header-info {
        flex: 1;
    }

    .ticket-label {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    #ticket-movie-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    #ticket-session-info {
        font-size: 0.8rem;
    }

    .ticketing-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }

    /* Stepper mobile */
    .ticketing-stepper {
        padding: 12px 16px;
        gap: 0;
        justify-content: center;
    }

    .stepper-item {
        flex-direction: column;
        gap: 4px;
    }

    .stepper-circle {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
    }

    .stepper-label {
        display: none;
    }

    .stepper-line {
        width: 20px;
        height: 2px;
        margin: 0 4px;
        align-self: center;
        margin-top: -12px;
    }

    /* Steps content */
    .ticketing-step {
        padding: 16px;
    }

    .ticketing-step h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .step-subtitle {
        font-size: 0.8rem;
    }

    /* Sessions */
    .sessions-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .session-btn {
        padding: 12px 8px;
    }

    .session-time {
        font-size: 1rem;
    }

    .session-date {
        font-size: 0.7rem;
    }

    /* Seats */
    .screen-indicator {
        padding: 8px 20px;
        font-size: 0.65rem;
        margin-bottom: 16px;
    }

    .seats-grid {
        padding: 8px;
        gap: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .seat-row {
        gap: 3px;
        min-width: max-content;
    }

    .seat {
        width: 22px;
        height: 22px;
        border-radius: 4px 4px 6px 6px;
        flex-shrink: 0;
    }

    .seat-aisle {
        width: 10px;
        flex-shrink: 0;
    }

    .row-label {
        width: 16px;
        font-size: 0.6rem;
        flex-shrink: 0;
    }

    .seat-legend {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.7rem;
    }

    .legend-item .seat {
        width: 14px;
        height: 14px;
    }

    /* Pricing */
    .price-selector {
        gap: 12px;
    }

    .price-row {
        padding: 12px;
    }

    .price-name {
        font-size: 0.9rem;
    }

    .price-amount {
        font-size: 0.85rem;
    }

    .price-note {
        font-size: 0.65rem;
    }

    .counter-control button {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .counter-control span {
        width: 32px;
        font-size: 1rem;
    }

    /* Payment */
    .payment-secure-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .payment-form input {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .payment-form .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .demo-notice {
        font-size: 0.7rem;
        padding: 10px;
    }

    /* Success */
    .step-success {
        padding: 24px 16px;
    }

    .success-icon i {
        font-size: 3rem;
    }

    .success-message h3 {
        font-size: 1.2rem;
    }

    .success-message p {
        font-size: 0.85rem;
    }

    .qr-code-placeholder {
        width: 140px;
        height: 140px;
    }

    .qr-code-placeholder i {
        font-size: 4rem;
    }

    /* Sidebar - Bottom sticky */
    .ticketing-sidebar {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 16px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        flex-shrink: 0;
    }

    .ticketing-sidebar h3 {
        display: none;
    }

    .summary-details {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .summary-line {
        display: none;
    }

    .summary-divider {
        display: none;
    }

    .summary-total {
        margin: 0;
        padding: 0;
        border: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .summary-total span:first-child {
        font-size: 0.75rem;
        color: var(--text-tertiary);
    }

    .summary-total span:last-child {
        font-size: 1.3rem;
    }

    #next-step-btn {
        margin: 0;
        padding: 14px 24px;
        flex: 1;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .ticketing-modal-content {
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
    }

    .ticketing-header {
        padding: 12px;
    }

    #ticket-movie-poster {
        width: 45px;
        height: 67px;
    }

    #ticket-movie-title {
        font-size: 1rem;
    }

    .sessions-selector {
        grid-template-columns: 1fr;
    }

    .seat {
        width: 18px;
        height: 18px;
    }

    .seat-aisle {
        width: 8px;
    }

    .row-label {
        width: 14px;
        font-size: 0.55rem;
    }

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

    .summary-total span:last-child {
        font-size: 1.1rem;
    }

    #next-step-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}