/* ==========================================================================
   ANIREEKSHITHAA - RED & BLACK CINEMATIC DESIGN SYSTEM
   ========================================================================== */

/* Custom CSS Variables */
:root {
    --bg-main: #060608;
    --bg-darker: #020203;
    --bg-card: rgba(18, 18, 22, 0.7);
    --bg-card-hover: rgba(26, 26, 32, 0.85);
    
    /* Harmonious Crimson Red Accents */
    --red: #d9232a;
    --red-bright: #ff3e46;
    --red-dim: #9c1216;
    --red-glow: rgba(217, 35, 42, 0.3);
    
    --cyan: #00f2fe;
    --cyan-glow: rgba(0, 242, 254, 0.2);
    
    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    --danger: #d9232a;
    --success: #10b981;
    --whatsapp: #25d366;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-red: rgba(217, 35, 42, 0.25);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--red-dim);
}

/* Typography Utility */
.cinzel-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.red-gradient-text {
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 50%, var(--red-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ambient Cinematic Background Glows */
.cinematic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at center, #0e0f14 0%, #030305 100%);
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.glow-red {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
}

.glow-blue {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0b3c5d 0%, transparent 75%);
}

/* Section Common Layouts */
section {
    padding: 100px 20px;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.section-title.text-glow {
    text-shadow: 0 0 20px var(--red-glow);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 50px;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(3, 3, 5, 0.9) 0%, rgba(3, 3, 5, 0) 100%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.header.sticky {
    padding: 12px 40px;
    background: rgba(3, 3, 5, 0.95);
    border-bottom: 1px solid var(--border-glass);
}

.header .logo a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.6rem;
    letter-spacing: 3px;
    transition: var(--transition-smooth);
}

.header .logo a:hover {
    color: var(--red);
    text-shadow: 0 0 10px var(--red-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--red);
    transition: var(--transition-smooth);
}

.nav-item:hover, .nav-item.active {
    color: var(--text-white);
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-success, .btn-danger, .btn-whatsapp {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--red-glow);
}

/* ==========================================================================
   AUDIENCE FEEDBACK / REVIEW CORNER STYLING
   ========================================================================== */
.feedback-section {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-glass);
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.feedback-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.feedback-card:hover {
    border-color: var(--border-red);
    box-shadow: 0 10px 30px rgba(217, 35, 42, 0.05);
}

.feedback-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 15px;
}

.feedback-card .card-header .header-icon {
    font-size: 1.5rem;
    color: var(--red);
}

.feedback-card .card-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--text-white);
}

/* Star Rating Pickers */
.rating-picker i {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.rating-picker i:hover,
.rating-picker i.active {
    color: var(--red-bright) !important;
    font-weight: 900 !important;
}

/* Voice Recorder Elements */
.waveform-container .wave-bar.active {
    background-color: var(--red-bright) !important;
    animation: wavePulse 0.6s ease infinite alternate;
}

/* Wave Pulse Animations */
@keyframes wavePulse {
    0% { height: 10px; }
    100% { height: 35px; }
}

.record-btn.recording {
    background-color: var(--red) !important;
    color: var(--text-white) !important;
    animation: recordPulse 1.5s infinite;
    box-shadow: 0 0 20px var(--red) !important;
}

@keyframes recordPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 35, 42, 0.5);
    background: linear-gradient(135deg, #ff6b71 0%, var(--red-bright) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.btn-success:hover {
    background: #13d292;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
}

.btn-danger {
    background: var(--danger);
    color: var(--text-white);
}

.btn-danger:hover {
    background: #fc5e5e;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #2bf878;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.nav-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--red);
    border: 1px solid var(--red);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background: var(--red);
    color: var(--text-white);
    box-shadow: 0 0 12px var(--red-glow);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (Using custom character artwork as background)
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    z-index: 1;
    transform: scale(1.02);
    animation: zoomBackdrop 20s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 40px rgba(217, 35, 42, 0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-meta {
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-meta i {
    color: var(--red);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Premiere Countdown Widget */
.hero-countdown {
    margin: 25px auto 35px auto;
    max-width: 480px;
    background: rgba(10, 10, 12, 0.65);
    border: 1px solid rgba(217, 35, 42, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(217, 35, 42, 0.05);
}

.countdown-title {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-shadow: 0 0 8px rgba(217, 35, 42, 0.3);
}

.countdown-grid {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.countdown-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    min-width: 75px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.countdown-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 4px;
}

.countdown-started-msg {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red-bright);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 0 0 10px rgba(217, 35, 42, 0.4);
    padding: 10px;
}

.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;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 10px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--red);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite;
}

/* Animations */
@keyframes scrollMouse {
    0% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0.3; }
    100% { top: 6px; opacity: 1; }
}

@keyframes zoomBackdrop {
    0% { transform: scale(1.01); }
    100% { transform: scale(1.06); }
}

/* ==========================================================================
   TEASER VIDEO PLAYER
   ========================================================================== */
.teaser-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.teaser-player-wrapper {
    width: 100%;
    max-width: 950px;
    margin: 40px auto 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--red-glow);
    border: 1px solid var(--border-red);
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.1);
    transition: var(--transition-smooth);
}

.video-container:hover .video-thumbnail img {
    filter: brightness(0.5) contrast(1.15) scale(1.01);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(3, 3, 5, 0.8);
    border: 1px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: var(--transition-smooth);
}

.play-icon {
    font-size: 1.8rem;
    color: var(--red);
    margin-left: 5px; /* Offset to center visual triangle */
    transition: var(--transition-smooth);
}

.video-container:hover .play-overlay {
    background-color: var(--red);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px var(--red);
}

.video-container:hover .play-icon {
    color: var(--text-white);
}

.play-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--red);
    top: 0;
    left: 0;
    opacity: 0.6;
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Custom Interactive Video Box Styling */
.video-player-frame {
    width: 100%;
    height: 100%;
    background-color: #000;
}

.custom-video-player {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 8;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-video-player:hover .player-controls {
    opacity: 1;
}

.player-ctrl-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-ctrl-btn:hover {
    color: var(--red);
}

.progress-bar-wrapper {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--red), var(--red-bright));
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
}

.custom-video-player:fullscreen {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-video-player:fullscreen video {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
}


/* Teaser Sharing Section */
.teaser-share-block {
    margin-top: 35px;
    text-align: center;
}

.share-prompt {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.share-prompt i {
    color: var(--red);
    margin-right: 6px;
}

.share-buttons-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.share-wa:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.share-ig:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: #E1306C;
    color: #E1306C;
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.2);
    transform: translateY(-2px);
}

.share-fb:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: #1877F2;
    color: #1877F2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   CAST & CREW BIOS
   ========================================================================== */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.crew-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.crew-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-red);
    box-shadow: 0 10px 25px rgba(217, 35, 42, 0.12);
    background-color: var(--bg-card-hover);
}

.crew-image-wrapper {
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.crew-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-smooth);
}

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

/* Card Shine Micro-Interaction */
.crew-card {
    position: relative;
    overflow: hidden;
}

.crew-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
}

.crew-card:hover::after {
    left: 150%;
    transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Showtime Cards Shine */
#showTimeCard-400,
#showTimeCard-600 {
    position: relative;
    overflow: hidden;
}

#showTimeCard-400::after,
#showTimeCard-600::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
}

#showTimeCard-400:hover::after,
#showTimeCard-600:hover::after {
    left: 150%;
    transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.crew-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.08);
    position: relative;
}

/* Custom Artistic Gradient Overlays for Cast Placeholders */
.dir-bg { background: linear-gradient(135deg, #2b1416, #120708); color: var(--red); }
.actor1-bg { background: linear-gradient(135deg, #1f2730, #0c1015); color: #8bb3f8; }
.actor2-bg { background: linear-gradient(135deg, #2a1f2d, #100b12); color: #f28bf8; }
.music-bg { background: linear-gradient(135deg, #1c2e24, #08110b); color: #7efcb6; }
.dop-bg { background: linear-gradient(135deg, #2d2b1c, #12110a); color: #fbf77f; }
.editor-bg { background: linear-gradient(135deg, #2d1d29, #130a11); color: #fc7eb0; }

.crew-image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(10,10,12,1), transparent);
}

.crew-role {
    position: absolute;
    bottom: 15px;
    left: 20px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-glass);
    color: var(--red-bright);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.crew-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.crew-name {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.crew-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}

/* ==========================================================================
   BEHIND THE SCENES
   ========================================================================== */
.bts-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.gallery-item.decorative {
    grid-column: span 1;
}

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 3, 5, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--red);
}

.gallery-overlay span {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
}

.gallery-item:hover {
    border-color: var(--red);
    transform: scale(1.02);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ==========================================================================
   SCREENING VENUE & TICKETS SECTION
   ========================================================================== */
.screening-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
}

.screening-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 50px;
    align-items: center;
}

.screening-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-white);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red-bright);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--red-bright);
    border-radius: 50%;
    animation: redPulse 1.5s infinite;
}

@keyframes redPulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}

.detail-rows {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: rgba(217, 35, 42, 0.08);
    border: 1px solid var(--border-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-txt h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.detail-txt p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Map Simulation Grid Layout */
.map-simulation {
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    background: #0d0e12;
    display: flex;
    flex-direction: column;
}

.map-header {
    background: #14151a;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-frame {
    width: 100%;
    height: 220px;
    position: relative;
    background-color: #0b0c10;
    background-image: 
        radial-gradient(var(--bg-main) 15%, transparent 16%),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.venue-marker {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.venue-pin {
    font-size: 2.2rem;
    color: var(--red-bright);
    text-shadow: 0 0 15px rgba(255, 62, 70, 0.8);
    animation: mapFloat 2.5s ease-in-out infinite;
}

.venue-tooltip {
    background: var(--bg-darker);
    border: 1px solid var(--border-red);
    color: var(--text-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

@keyframes mapFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.map-link-btn {
    padding: 12px;
    text-align: center;
    background: #14151a;
    color: var(--red);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-glass);
}

.map-link-btn:hover {
    background: var(--red);
    color: var(--text-white);
}

/* Booking CTA Block */
.booking-cta-block {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(18, 18, 22, 0.8) 0%, rgba(10, 10, 12, 0.9) 100%);
    border: 1px dashed var(--red-dim);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.booking-cta-block h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.booking-cta-block p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    padding: 60px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo .cinzel-title {
    font-size: 1.4rem;
    color: var(--text-white);
}

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

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.admin-trigger-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.admin-trigger-btn:hover {
    color: var(--red);
}

.contact-trigger-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    padding: 0;
    text-decoration: none;
}

.contact-trigger-btn:hover {
    color: var(--red);
}

/* ==========================================================================
   MODALS FRAMEWORK & DIALOG SYSTEM
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(3, 3, 5, 0.85);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #0c0d12;
    border: 1px solid var(--border-red);
    border-radius: 16px;
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 35px var(--red-glow);
    padding: 40px;
    animation: modalEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEnter {
    0% { opacity: 0; transform: scale(0.96) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close-btn:hover {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Lightbox Modal Specifics */
.lightbox-modal {
    background-color: rgba(3, 3, 5, 0.95);
}

.lightbox-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 85%;
    max-height: 80%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    border: 1px solid var(--border-glass);
}

.lightbox-caption {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text-white);
}

/* ==========================================================================
   TICKET WIZARD PANELS
   ========================================================================== */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.step-indicator {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 10px;
}

.step-indicator.active {
    color: var(--red);
}

.step-indicator.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--red);
}

.wizard-step-panel {
    display: none;
}

.wizard-step-panel.active {
    display: block;
    animation: panelFade 0.3s ease;
}

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

.panel-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 6px;
}

.panel-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Step 1 Picker */
.ticket-picker-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.qty-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #16171e;
    border: 1px solid var(--border-glass);
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    border-color: var(--red);
    color: var(--red-bright);
    background-color: #1f212a;
}

.qty-display {
    font-size: 3rem;
    font-weight: 700;
    width: 60px;
    text-align: center;
}

.booking-summary-box {
    background-color: #14151a;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.summary-row.total-row {
    margin-bottom: 0;
    border-top: 1px solid var(--border-glass);
    padding-top: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-white);
}

.wizard-nav-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Step 2 Form Controls */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.required {
    color: var(--red-bright);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    background-color: #14151a;
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 8px rgba(217, 35, 42, 0.15);
}

.form-group select option {
    background-color: #14151a;
}

.input-phone-container {
    display: flex;
    align-items: center;
    background-color: #14151a;
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.input-phone-container:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 8px rgba(217, 35, 42, 0.15);
}

.phone-prefix {
    padding: 12px 15px;
    background-color: #1a1c23;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    border-right: 1px solid var(--border-glass);
}

.input-phone-container input {
    border: none;
    background: transparent;
}

.input-phone-container input:focus {
    box-shadow: none;
}

.form-help {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--text-dark);
}

.conditional-field {
    animation: fieldReveal 0.4s ease;
}

@keyframes fieldReveal {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step 3 Payment Apps Grid */
.upi-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
    align-items: center;
}

.upi-qr-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-glass);
}

.qr-code-placeholder {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.mock-qr-inner {
    width: 140px;
    height: 140px;
    border: 10px solid #111;
    position: relative;
    background-image: 
        linear-gradient(90deg, #111 8px, transparent 8px),
        linear-gradient(#111 8px, transparent 8px);
    background-size: 16px 16px;
}

.qr-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 8px solid #111;
    background: #fff;
}

.qr-top-left { top: -1px; left: -1px; }
.qr-top-right { top: -1px; right: -1px; }
.qr-bottom-left { bottom: -1px; left: -1px; }

.qr-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: var(--red);
    color: var(--text-white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.qr-amount-pill {
    margin-top: 15px;
    background-color: var(--bg-darker);
    color: var(--red-bright);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
}

.upi-details {
    margin-top: 8px;
    color: #555;
    font-size: 0.75rem;
    font-weight: 500;
}

.payment-app-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #14151a;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.phonepe-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: #592c8c;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-app-item h5 {
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.payment-app-item p {
    color: var(--text-dark);
    font-size: 0.8rem;
}

.simulation-alert {
    background-color: rgba(217, 35, 42, 0.04);
    border: 1px solid var(--border-red);
    padding: 15px;
    border-radius: 6px;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.simulation-alert i {
    color: var(--red-bright);
    font-size: 1.1rem;
    margin-top: 2px;
}

.simulation-alert p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Step 4 Success Preview Ticket Card */
.success-header {
    text-align: center;
    margin-bottom: 25px;
}

.success-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 12px;
}

.success-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.success-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ticket-preview-card {
    background-color: #fff;
    color: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin: 20px auto 30px auto;
    max-width: 400px;
    position: relative;
}

.ticket-preview-card::before, .ticket-preview-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #0c0d12;
    border-radius: 50%;
    top: 55px;
    z-index: 5;
}

.ticket-preview-card::before { left: -10px; }
.ticket-preview-card::after { right: -10px; }

.ticket-header {
    background-color: #111;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #444;
}

.ticket-header h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.ticket-badge {
    background-color: var(--red);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
}

.ticket-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.ticket-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ticket-row div small {
    display: block;
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.ticket-row div strong {
    display: block;
    font-size: 0.9rem;
    color: #111;
    font-weight: 600;
}

.ticket-footer {
    border-top: 1px dashed #ccc;
    padding: 15px 20px;
    background-color: #f7f7f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-barcode {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 30px;
}

.stripe {
    width: 2px;
    height: 20px;
    background-color: #111;
}

.stripe.tall { height: 26px; }
.stripe.wide { width: 4px; }

.ticket-brand {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.5px;
}

.action-confirmation-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* WhatsApp Overlay popup Simulation */
.mock-whatsapp-popup {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    background-color: #0b141a;
    border: 1px solid #222e35;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    animation: waSlideUp 0.4s ease;
}

@keyframes waSlideUp {
    from { transform: translate(-50%, 20px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.wa-popup-header {
    background-color: #202c33;
    color: #e9edef;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
}

.wa-popup-header i {
    color: var(--whatsapp);
    font-size: 1.1rem;
}

.wa-popup-header button {
    background: transparent;
    border: none;
    color: #8696a0;
    font-size: 1.2rem;
    cursor: pointer;
}

.wa-popup-body {
    padding: 15px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: cover;
    min-height: 120px;
}

.wa-message.sent {
    background-color: #005c4b;
    color: #e9edef;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    max-width: 90%;
    margin-left: auto;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

.wa-message p {
    line-height: 1.3;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.65rem;
    color: #8696a0;
    margin-top: 4px;
}

.wa-time i {
    color: #53bdeb;
}

.wa-popup-footer {
    background-color: #202c33;
    padding: 6px 12px;
    text-align: center;
}

.wa-popup-footer small {
    font-size: 0.7rem;
    color: #8696a0;
}

/* ==========================================================================
   SIMPLE & AUTHENTICATION MODALS
   ========================================================================== */
.simple-modal .modal-content {
    max-width: 400px;
    text-align: center;
}

.error-text {
    color: var(--red-bright);
    font-size: 0.8rem;
    margin-top: 8px;
    text-align: left;
}

/* ==========================================================================
   ADMIN DASHBOARD PANEL (FULL SCREEN SHEETS)
   ========================================================================== */
.full-modal .modal-content {
    width: 96%;
    max-width: 1300px;
    height: 92vh;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.admin-title-area h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-title-area h2 i {
    color: var(--red);
}

.admin-title-area p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.admin-action-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-close-btn-admin {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close-btn-admin:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
}

/* Stats Cards */
.admin-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: #121319;
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(217, 35, 42, 0.06);
    border: 1px solid var(--border-red);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.stat-data .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-data h3 {
    font-size: 1.8rem;
    color: var(--text-white);
    font-weight: 700;
    margin-top: 4px;
}

/* Search / Filters for Table */
.table-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.search-input-wrapper, .filter-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper {
    flex-grow: 1;
    max-width: 400px;
}

.search-input-wrapper i, .filter-dropdown-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--text-dark);
    font-size: 0.9rem;
    pointer-events: none;
}

.search-input-wrapper input {
    width: 100%;
    padding: 10px 15px 10px 45px;
    background-color: #121319;
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 0.9rem;
}

.filter-dropdown-wrapper select {
    padding: 10px 40px 10px 45px;
    background-color: #121319;
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 0.9rem;
    appearance: none;
    cursor: pointer;
}

/* Admin Grid Database Table */
.admin-table-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.table-responsive {
    flex-grow: 1;
    overflow-y: auto;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    background-color: #0e0f14;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.admin-table th {
    background-color: #16171e;
    color: var(--text-light);
    font-weight: 600;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-glass);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.admin-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--text-muted);
}

.admin-table tbody tr:hover td {
    background-color: rgba(255, 255, 255, 0.01);
    color: var(--text-white);
}

.admin-table td strong {
    color: var(--text-white);
    font-weight: 500;
}

/* Pill Badges for Table */
.badge-profession {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-profession.filmmaker {
    background-color: rgba(217, 35, 42, 0.1);
    color: var(--red-bright);
    border: 1px solid var(--border-red);
}

.badge-role {
    background-color: rgba(0, 242, 254, 0.08);
    color: var(--cyan);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-paid {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-paid.pending {
    background-color: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.25);
}

.no-data-alert {
    padding: 60px;
    text-align: center;
    color: var(--text-dark);
}

.no-data-alert i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.no-data-alert p {
    font-size: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .crew-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .screening-box {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .admin-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    /* Show compact horizontal navbar on mobile - same as desktop */
    .header {
        padding: 10px 12px;
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
    }
    
    .header .logo {
        text-align: center;
    }
    
    .nav-links {
        display: flex !important;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0;
        justify-content: flex-start;
        align-items: center;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE */
        border-top: 1px solid var(--border-glass);
        padding-top: 6px;
    }
    
    .nav-links::-webkit-scrollbar {
        display: none;
    }
    
    .nav-item {
        font-size: 0.75rem !important;
        padding: 6px 10px !important;
        white-space: nowrap;
        flex-shrink: 0;
        letter-spacing: 0.5px !important;
    }
    
    /* Book Tickets button compact size for mobile nav */
    .nav-links .btn-primary {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 4px !important;
    }
    
    /* Hide the hamburger menu button completely */
    .mobile-menu-btn {
        display: none !important;
    }
    
    .crew-grid {
        grid-template-columns: 1fr;
    }
    
    .synopsis-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .synopsis-graphic {
        aspect-ratio: 2 / 3;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .bts-gallery {
        grid-template-columns: 1fr;
    }
    
    .upi-payment-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-steps {
        overflow-x: auto;
        gap: 10px;
    }
    
    .step-indicator {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .table-controls {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Modals layout overrides for screen width <= 768px */
    .modal {
        align-items: flex-start !important;
        overflow-y: auto !important;
        padding: 20px 10px !important;
        display: none;
    }

    .modal.active {
        display: flex !important;
    }

    .modal-content {
        max-height: none !important;
        height: auto !important;
        margin: 20px auto !important;
        width: 95% !important;
    }

    .full-modal .modal-content {
        max-height: none !important;
        height: auto !important;
        width: 98% !important;
        margin: 10px auto !important;
        padding: 20px 15px !important;
    }
    
    .table-responsive {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .admin-table {
        min-width: 850px !important;
    }
}

/* Mobile Nav Overlay - now hidden/unused since we use horizontal bar */
.mobile-nav-overlay {
    display: none !important;
}

.mobile-nav-overlay.active {
    display: none !important;
}

/* Collaborative Contact Link styles for non-nested element rendering */
.collab-phone {
    color: var(--text-light);
    text-decoration: none;
    font-family: monospace;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.collab-phone:hover {
    color: var(--red-bright) !important;
    text-decoration: underline !important;
}

/* ==========================================================================
   UPI PAYMENT CUSTOM STYLING (PhonePe, GPay, Paytm) & INTERFACE OVERLAY
   ========================================================================== */
.payment-apps-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.payment-app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition-smooth);
    width: 100%;
    color: var(--text-white);
}

.payment-app-btn i {
    font-size: 1.1rem;
}

.phonepe-btn {
    background-color: #5f259f;
    box-shadow: 0 4px 12px rgba(95, 37, 159, 0.2);
}
.phonepe-btn:hover {
    background-color: #481b7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(95, 37, 159, 0.4);
}

.gpay-btn {
    background-color: #1a73e8;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}
.gpay-btn:hover {
    background-color: #155cb4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.4);
}

.paytm-btn {
    background-color: #00b9f5;
    box-shadow: 0 4px 12px rgba(0, 185, 245, 0.2);
}
.paytm-btn:hover {
    background-color: #0093c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 185, 245, 0.4);
}

/* Payment Processing Loading Screen Overlay inside Modal */
.payment-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 13, 18, 0.96);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.spinner-container {
    text-align: center;
    padding: 20px;
}

.payment-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--red-bright);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    animation: spinOverlay 1s linear infinite;
}

@keyframes spinOverlay {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-container h4 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.spinner-container p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.loading-timer {
    font-size: 0.8rem;
    font-family: monospace;
    color: var(--red-bright);
    background-color: rgba(217, 35, 42, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid var(--border-red);
}

/* ==========================================================================
   FILM SYNOPSIS SECTION
   ========================================================================== */
.synopsis-section {
    background-color: var(--bg-darker);
    position: relative;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.synopsis-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.synopsis-graphic {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    aspect-ratio: 2 / 3;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
}

.synopsis-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.synopsis-graphic:hover .synopsis-img {
    transform: scale(1.05);
}

.synopsis-graphic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(6, 6, 8, 0.9) 0%, rgba(6, 6, 8, 0.4) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.synopsis-quote {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    border-left: 3px solid var(--red-bright);
    padding-left: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.synopsis-content {
    display: flex;
    flex-direction: column;
}

.synopsis-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.synopsis-paragraphs p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.synopsis-paragraphs .lead-paragraph {
    color: var(--text-light);
    font-size: 1.05rem;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.synopsis-highlight-box {
    background: rgba(217, 35, 42, 0.04);
    border-left: 4px solid var(--red);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-top: 1px solid rgba(217, 35, 42, 0.05);
    border-right: 1px solid rgba(217, 35, 42, 0.05);
    border-bottom: 1px solid rgba(217, 35, 42, 0.05);
}

.synopsis-highlight-box .highlight-icon {
    color: var(--red-bright);
    font-size: 1.3rem;
    margin-top: 3px;
}

.synopsis-highlight-box p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin: 0;
    font-weight: 400;
}

/* ==========================================================================
   TABLET DEVICES OVERRIDES (Screens <= 992px)
   ========================================================================== */
@media (max-width: 992px) {
    .crew-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
}

/* ==========================================================================
   MOBILE DEVICES & WEBVIEW OVERRIDES (Screens <= 576px)
   ========================================================================== */
@media (max-width: 576px) {
    /* Global scroll safety */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Section Spacing & Sizing */
    section {
        padding: 50px 16px !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 12px !important;
        letter-spacing: 0.5px !important;
    }
    
    .section-desc {
        font-size: 0.9rem !important;
        margin-bottom: 30px !important;
        line-height: 1.5 !important;
    }

    /* Header - compact two-row layout on small screens */
    .header {
        padding: 8px 12px !important;
        flex-direction: column !important;
        gap: 4px !important;
        align-items: stretch !important;
    }
    
    .header.sticky {
        padding: 8px 12px !important;
    }
    
    .header .logo {
        text-align: center;
    }

    .header .logo a {
        font-size: 1.1rem !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
    }
    
    /* Horizontal scrollable nav on small mobile */
    .nav-links {
        display: flex !important;
        gap: 0 !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
    }

    .nav-item {
        font-size: 0.7rem !important;
        padding: 5px 8px !important;
    }

    .nav-links .btn-primary {
        padding: 5px 10px !important;
        font-size: 0.7rem !important;
    }

    /* Hide hamburger - no longer needed */
    .mobile-menu-btn {
        display: none !important;
    }
    


    /* Hero Landing Screen */
    .hero-section {
        padding-top: 110px !important;
        min-height: calc(100vh - 20px) !important;
        display: flex;
        align-items: center;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
        letter-spacing: 4px !important;
        margin-bottom: 12px !important;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8.2vw, 2.6rem) !important;
        letter-spacing: 0.5px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .hero-tagline {
        font-size: 1.05rem !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }
    
    .hero-meta {
        flex-wrap: wrap !important;
        gap: 8px 12px !important;
        margin-bottom: 30px !important;
        font-size: 0.8rem !important;
        justify-content: center !important;
    }
    
    .hero-ctas {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .scroll-indicator {
        bottom: 20px !important;
    }

    /* Teaser Video Widescreen */
    .teaser-player-wrapper {
        margin-top: 20px !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7), 0 0 10px var(--red-glow) !important;
    }
    
    .play-overlay {
        width: 56px !important;
        height: 56px !important;
    }
    
    .play-icon {
        font-size: 1.25rem !important;
    }
    
    .player-controls {
        padding: 10px !important;
        gap: 10px !important;
    }

    /* Cast & Crew Cards */
    .crew-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        margin-top: 25px !important;
    }
    
    .crew-card {
        border-radius: 10px !important;
    }
    
    .crew-image-wrapper {
        height: 230px !important;
    }
    
    .crew-info {
        padding: 18px 15px !important;
    }
    
    .crew-name {
        font-size: 1.25rem !important;
        margin-bottom: 8px !important;
    }
    
    .crew-bio {
        font-size: 0.85rem !important;
    }
    
    .crew-contact {
        margin-top: 12px !important;
        padding-top: 10px !important;
    }

    /* Review Corner Feedback Grid */
    .feedback-grid {
        gap: 20px !important;
        margin-top: 25px !important;
    }
    
    .feedback-card {
        padding: 24px 16px !important;
        border-radius: 12px !important;
    }
    
    .feedback-card .card-header {
        margin-bottom: 20px !important;
        padding-bottom: 10px !important;
        gap: 10px !important;
    }
    
    .feedback-card .card-header h3 {
        font-size: 1.15rem !important;
    }
    
    .feedback-card .form-row {
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .feedback-card .form-row > div {
        width: 100% !important;
    }
    
    .rating-picker {
        padding: 5px 0 !important;
    }
    
    .rating-picker i {
        font-size: 1.35rem !important;
    }
    
    .voice-recorder-wrapper {
        padding: 5px 0 !important;
    }
    
    .voice-instructions {
        margin-bottom: 15px !important;
        font-size: 0.85rem !important;
    }
    
    .timer-display {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .record-btn {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.3rem !important;
    }
    
    .playback-container {
        margin-top: 15px !important;
        padding-top: 15px !important;
    }
    
    .playback-container > div {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .playback-container button {
        width: 100% !important;
    }

    /* Screening details & directions */
    .screening-box {
        padding: 24px 16px !important;
        margin-bottom: 30px !important;
        border-radius: 12px !important;
        border-color: var(--border-glass) !important;
    }
    
    .screening-title {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
    }
    
    .detail-rows {
        gap: 16px !important;
    }
    
    .detail-row {
        gap: 12px !important;
    }
    
    .detail-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }
    
    .detail-txt h4 {
        font-size: 0.9rem !important;
    }
    
    .detail-txt p {
        font-size: 0.85rem !important;
    }
    
    .map-frame {
        height: 180px !important;
    }
    
    .booking-cta-block {
        padding: 30px 16px !important;
    }
    
    .booking-cta-block h3 {
        font-size: 1.35rem !important;
    }
    
    .booking-cta-block p {
        font-size: 0.85rem !important;
        margin-bottom: 20px !important;
    }
    
    .btn-large {
        padding: 12px 25px !important;
        font-size: 0.95rem !important;
        width: 100% !important;
    }

    /* Footer Sizing */
    .footer {
        padding: 40px 16px !important;
    }
    
    .footer-container {
        gap: 16px !important;
    }
    
    .footer-links {
        gap: 12px 18px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    /* Interactive Ticket Modal Sizing */
    .modal-content {
        padding: 20px 15px !important;
        border-radius: 12px !important;
        width: 95% !important;
        max-height: none !important;
        height: auto !important;
        margin: 20px auto !important;
        border-color: var(--border-red) !important;
    }
    
    .modal-close-btn {
        top: 15px !important;
        right: 15px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.6rem !important;
    }
    
    .wizard-steps {
        padding-bottom: 12px !important;
        margin-bottom: 20px !important;
        gap: 8px !important;
        scrollbar-width: none !important; /* Firefox hide scrollbar */
    }
    
    .wizard-steps::-webkit-scrollbar {
        display: none !important; /* Safari/Chrome hide scrollbar */
    }
    
    .step-indicator {
        font-size: 0.7rem !important;
        padding-bottom: 6px !important;
    }
    
    .step-indicator.active::after {
        bottom: -13px !important;
    }
    
    .panel-title {
        font-size: 1.3rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .panel-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 20px !important;
    }
    
    /* Ticket qty selector */
    .ticket-picker-wrapper {
        margin: 25px 0 !important;
        gap: 20px !important;
    }
    
    .qty-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 1rem !important;
    }
    
    .qty-display {
        font-size: 2.2rem !important;
        width: 45px !important;
    }
    
    .booking-summary-box {
        padding: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .summary-row {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
    }
    
    .summary-row.total-row {
        font-size: 1.05rem !important;
        padding-top: 10px !important;
    }
    
    /* Wizard Form Inputs */
    .form-group {
        margin-bottom: 15px !important;
    }
    
    .form-group label {
        font-size: 0.75rem !important;
        margin-bottom: 6px !important;
    }
    
    .form-group input, 
    .form-group select {
        padding: 12px 14px !important;
        font-size: 1rem !important;
        border-radius: 6px !important;
        height: 48px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .form-group textarea {
        padding: 12px 14px !important;
        font-size: 1rem !important;
        border-radius: 6px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .input-phone-container {
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .input-phone-container input {
        border: none !important;
        background: transparent !important;
        height: 100% !important;
        width: auto !important;
        flex-grow: 1 !important;
        padding: 12px 14px !important;
    }
    
    .phone-prefix {
        padding: 12px 15px !important;
        font-size: 1rem !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .wizard-nav-btns {
        margin-top: 20px !important;
    }
    
    .wizard-nav-btns button {
        padding: 10px 18px !important;
        font-size: 0.85rem !important;
    }

    /* UPI payment view spacing */
    .upi-payment-grid {
        gap: 20px !important;
        margin: 15px 0 !important;
    }
    
    .upi-qr-box {
        padding: 15px !important;
        border-radius: 8px !important;
    }
    
    .qr-code-placeholder {
        width: 140px !important;
        height: 140px !important;
    }
    
    .mock-qr-inner {
        width: 120px !important;
        height: 120px !important;
        border-width: 8px !important;
    }
    
    .payment-app-btn {
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
        border-radius: 6px !important;
    }
    
    .simulation-alert {
        padding: 10px 12px !important;
        margin-bottom: 15px !important;
        gap: 8px !important;
    }
    
    .simulation-alert p {
        font-size: 0.75rem !important;
    }

    /* Confirm Digital Ticket Sizing (Fix overflow) */
    .ticket-preview-card {
        max-width: 100% !important;
        width: 100% !important;
        margin: 15px auto !important;
        border-radius: 8px !important;
    }
    
    .ticket-header {
        padding: 12px 15px !important;
    }
    
    .ticket-header h4 {
        font-size: 0.85rem !important;
    }
    
    .ticket-body {
        padding: 15px !important;
        gap: 12px !important;
    }
    
    .ticket-row {
        gap: 10px !important;
    }
    
    .ticket-row div small {
        font-size: 0.65rem !important;
    }
    
    .ticket-row div strong {
        font-size: 0.8rem !important;
    }
    
    .ticket-footer {
        padding: 10px 15px !important;
    }
    
    /* Mock WhatsApp Popup */
    .mock-whatsapp-popup {
        width: 100% !important;
        max-width: 290px !important;
        bottom: 15px !important;
    }
    
    .wa-popup-header {
        padding: 8px 12px !important;
    }
    
    .wa-popup-body {
        padding: 10px !important;
        min-height: 100px !important;
    }
    
    .wa-message.sent {
        font-size: 0.75rem !important;
        max-width: 95% !important;
    }

    /* Admin Organizer Dashboard mobile settings */
    .admin-stats-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .stat-card {
        padding: 10px 12px !important;
        gap: 8px !important;
        border-radius: 8px !important;
    }
    
    .stat-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
        border-radius: 6px !important;
    }
    
    .stat-data .stat-label {
        font-size: 0.65rem !important;
    }
    
    .stat-data h3 {
        font-size: 1.2rem !important;
        margin-top: 2px !important;
    }
    
    .table-controls {
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 15px !important;
    }
    
    .search-input-wrapper {
        max-width: 100% !important;
    }
    
    .filter-dropdown-wrapper select {
        width: 100% !important;
    }
    
    .full-modal .modal-content {
        padding: 15px 10px !important;
        width: 98% !important;
        height: auto !important;
        min-height: calc(100% - 20px) !important;
        margin: 10px auto !important;
    }
    
    .table-responsive {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .admin-table {
        min-width: 850px !important;
    }
    
    .admin-header {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
        margin-bottom: 15px !important;
        padding-bottom: 15px !important;
    }
    
    .admin-action-area {
        justify-content: space-between !important;
        width: 100% !important;
    }

    /* Synopsis Section mobile overrides */
    .synopsis-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        max-width: 100% !important;
    }
    
    .synopsis-graphic {
        aspect-ratio: 2 / 3 !important;
        max-width: 280px !important;
        margin: 0 auto 20px auto !important;
    }

    .synopsis-content {
        text-align: center !important;
    }
    
    .synopsis-paragraphs p {
        font-size: 0.95rem !important;
        text-align: left !important;
    }
    
    .synopsis-paragraphs .lead-paragraph {
        font-size: 0.95rem !important;
    }

    .synopsis-highlight-box p {
        font-size: 0.95rem !important;
    }
    
    .synopsis-highlight-box {
        padding: 15px !important;
        gap: 12px !important;
        text-align: left !important;
    }
    
    .synopsis-highlight-box .highlight-icon {
        font-size: 1.1rem !important;
    }
}

