  :root {
    --red: #E8000D;
    --red-dark: #A80008;
    --black: #080808;
    --black-2: #111111;
    --white: #F5F0EC;
    --grey: #1A1A1A;
    --grey-mid: #2A2A2A;
    --text-muted: #666;
    --accent-gold: #C9A84C;
  }

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

  html { scroll-behavior: smooth; overflow-x: hidden; }

  :focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
  }

  .sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Space Mono', monospace;
    overflow-x: hidden;
    cursor: none;
  }
  @media (hover: none) and (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none !important; }
  }

  /* CUSTOM CURSOR */
  .cursor {
    width: 12px; height: 12px;
    background: var(--red);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--red);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.25s ease, width 0.2s ease, height 0.2s ease;
    opacity: 0.6;
  }
  body:hover .cursor { opacity: 1; }

  /* PAGE SYSTEM */
  .page { display: none; }
  .page.active { display: block; }

  /* FILM GRAIN OVERLAY */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: 0.4;
  }

  /* =========== NAV =========== */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 clamp(16px, 5vw, 48px);
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(8,8,8,0.98) 0%, transparent 100%);
    backdrop-filter: blur(2px);
  }
  .nav-logo {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -0.5px;
    cursor: pointer;
  }
  .nav-links {
    display: flex; gap: 40px; list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
    cursor: pointer;
  }
  .nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--red); }
  .nav-book-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    transition: background 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  }
  .nav-book-btn:hover { background: var(--red-dark); }

  /* HAMBURGER MENU */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(8px);
    padding: 24px clamp(16px, 5vw, 48px);
    z-index: 999;
    border-bottom: 1px solid rgba(232,0,13,0.2);
    flex-direction: column;
    gap: 0;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-mobile-menu li {
    list-style: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-mobile-menu li:last-child { border-bottom: none; }
  .nav-mobile-menu a {
    display: block;
    padding: 16px 0;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
    cursor: pointer;
  }
  .nav-mobile-menu a:hover, .nav-mobile-menu a.active { opacity: 1; color: var(--red); }
  .nav-mobile-menu .nav-book-btn {
    margin-top: 16px;
    width: 100%;
    clip-path: none;
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-mobile-menu { display: flex; }
  }

  /* =========== LANDING — NOW SHOWING FIRST =========== */
  .pixel-canvas {
    position: fixed; inset: 0;
    z-index: -1;
    opacity: 0.06;
    pointer-events: none;
  }

  /* NOW SHOWING LANDING HERO */
  .now-showing-landing {
    padding-top: 0;
    min-height: calc(100vh - 72px - 40px); /* subtract nav + ticker */
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  .now-showing-landing::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232,0,13,0.07) 0%, transparent 60%);
    pointer-events: none;
  }

  .nsl-header {
    padding: 48px 48px 32px;
    display: flex; align-items: flex-end; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }
  .nsl-header-left {}
  .nsl-eyebrow {
    font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase;
    color: var(--red); margin-bottom: 10px;
    display: flex; align-items: center; gap: 12px;
  }
  .nsl-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--red); }
  .nsl-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    letter-spacing: 0.03em; line-height: 0.95;
    color: var(--white);
  }
  .nsl-title em { font-style: normal; color: var(--red); }
  .nsl-book-all {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem; letter-spacing: 0.15em;
    color: var(--white); text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    transition: border-color 0.2s, background 0.2s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
    cursor: pointer; background: none;
  }
  .nsl-book-all:hover { border-color: var(--red); background: rgba(232,0,13,0.08); }

  /* CAROUSEL */
  .carousel-wrap {
    position: relative;
    padding: 0 48px 48px;
    overflow: hidden;
  }
  .carousel-track-outer {
    overflow: hidden;
    position: relative;
  }
  .carousel-track {
    display: flex;
    gap: 24px;
    touch-action: pan-y;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    /* Centre cards when fewer than 4 are showing */
    justify-content: center;
  }
  /* Only left-align when there are enough cards to scroll */
  .carousel-track.scrollable {
    justify-content: flex-start;
  }
  .carousel-item {
    flex: 0 0 calc(25% - 18px); /* 4 visible by default */
    min-width: 0;
  }
  /* Arrow nav */
  .carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(8,8,8,0.85);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10;
    transition: background 0.2s, border-color 0.2s;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
    opacity: 0; /* hidden when not needed */
  }
  .carousel-btn:hover { background: var(--red); border-color: var(--red); }
  .carousel-btn.visible { opacity: 1; }
  .carousel-btn-prev { left: 2px; }
  .carousel-btn-next { right: 2px; }
  /* Dots */
  .carousel-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 24px;
  }
  .carousel-dot {
    width: 20px; height: 3px; background: rgba(255,255,255,0.15);
    cursor: pointer; transition: background 0.2s, width 0.2s;
  }
  .carousel-dot.active { background: var(--red); width: 32px; }

  /* =========== TICKER TAPE =========== */
  .ticker {
    background: var(--red);
    overflow: hidden;
    height: 40px;
    display: flex; align-items: center;
    position: relative; z-index: 5;
  }
  .ticker-inner {
    display: flex;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
  }
  .ticker-inner span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    padding: 0 32px;
    color: var(--white);
  }
  .ticker-inner span::after { content: '◆'; margin-left: 32px; opacity: 0.5; }

  /* =========== SECTIONS =========== */
  section {
    padding: 100px 0;
    position: relative;
  }

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

  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 16px;
  }
  .section-label::after {
    content: '';
    flex: 1; max-width: 60px; height: 1px;
    background: var(--red);
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 48px;
  }

  /* =========== NOW SHOWING =========== */
  .movies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .movie-card {
    position: relative;
    overflow: hidden;
    background: var(--grey);
    cursor: pointer;
    group: true;
  }
  .movie-card::before {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    z-index: 2;
  }
  .movie-card:hover::before { border-color: var(--red); }

  .movie-poster {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    background: var(--grey-mid);
    position: relative;
  }
  .movie-card:hover .movie-poster-wrap img { transform: scale(1.05); }

  .movie-poster-wrap {
    overflow: hidden;
    position: relative;
  }
  .movie-poster-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, transparent 60%);
  }

  /* Fake poster for movies */
  .fake-poster {
    width: 100%;
    aspect-ratio: 2/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
  }
  .movie-card:hover .fake-poster { transform: scale(1.05); }

  .movie-info {
    padding: 16px;
    position: relative; z-index: 3;
  }
  .movie-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .movie-meta {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
  }
  .book-now-tag {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--red);
    border-bottom: 1px solid var(--red);
    padding-bottom: 2px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .book-now-tag:hover { color: var(--white); border-color: var(--white); }

  /* ── Showtime pills ── */
  .movie-showtimes {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 12px;
  }
  .showtime-pill {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem; letter-spacing: 0.05em;
    background: rgba(232,0,13,0.15);
    border: 1px solid rgba(232,0,13,0.45);
    color: rgba(255,255,255,0.92);
    padding: 3px 6px;
    white-space: nowrap;
  }
  .showtime-more {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    padding: 3px 2px;
    white-space: nowrap;
    align-self: center;
  }
  /* ── Movie poster image (real) ── */
  .movie-poster-img {
    width: 100%; aspect-ratio: 2/3;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
    background: var(--grey-mid);
  }
  .movie-card:hover .movie-poster-img { transform: scale(1.05); }
  /* ── Rating badge ── */
  .movie-rating {
    position: absolute; top: 10px; left: 10px; z-index: 4;
    font-family: 'Space Mono', monospace;
    font-size: 0.45rem; letter-spacing: 0.12em;
    background: rgba(8,8,8,0.82);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    padding: 3px 7px;
  }
  /* ── Skeleton shimmer ── */
  @keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
  }
  .skeleton-poster {
    background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
    background-size: 800px 100%;
    animation: shimmer 1.6s infinite linear;
    min-height: 320px;
  }
  .skeleton-line {
    background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
    background-size: 800px 100%;
    animation: shimmer 1.6s infinite linear;
    border-radius: 2px;
  }
  @media (prefers-reduced-motion: reduce) {
    .skeleton-poster, .skeleton-line { animation: none; background: #1a1a1a; }
  }
  /* ── movies.json fetch-error state ── */
  .carousel-error {
    padding: 48px clamp(16px,5vw,48px);
    text-align: center;
    font-size: 0.65rem; letter-spacing: 0.15em; opacity: 0.4;
  }

  /* =========== SCREENS SECTION =========== */
  .screens-section { background: var(--black-2); }

  .screens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--grey-mid);
    margin-top: 48px;
  }

  .screen-card {
    background: var(--black-2);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .screen-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .screen-card:hover { background: #161616; }
  .screen-card:hover::before { transform: scaleX(1); }

  .screen-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: var(--grey-mid);
    line-height: 1;
    position: absolute;
    top: 20px; right: 24px;
    transition: color 0.3s;
  }
  .screen-card:hover .screen-num { color: rgba(232,0,13,0.1); }

  .screen-label {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
  }
  .screen-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  .screen-seats {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1;
  }
  .screen-seats-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
  }
  .screen-features {
    list-style: none;
    display: flex; flex-direction: column; gap: 8px;
  }
  .screen-features li {
    font-size: 0.7rem;
    opacity: 0.6;
    display: flex; align-items: center; gap: 8px;
  }
  .screen-features li::before {
    content: '▶';
    font-size: 0.4rem;
    color: var(--red);
  }

  /* =========== PIXEL BRAND SECTION =========== */
  .brand-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
  }
  .pixel-brand-full {
    width: 100%;
    height: 200px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  /* =========== AMENITIES =========== */
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .amenity-card {
    background: var(--grey);
    padding: 32px 24px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
    cursor: default;
  }
  .amenity-card:hover {
    border-color: var(--red);
    background: #1c1c1c;
  }
  .amenity-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
  }
  .amenity-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .amenity-desc {
    font-size: 0.65rem;
    line-height: 1.7;
    opacity: 0.5;
  }

  /* =========== F&B =========== */
  .fnb-section { background: var(--black); overflow: hidden; }

  .fnb-hero {
    position: relative;
    background: linear-gradient(135deg, #1a0000 0%, #2a0800 40%, #0a0800 100%);
    padding: 80px 48px 60px;
    overflow: hidden;
  }
  .fnb-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,0,13,0.12) 0%, transparent 70%);
  }
  .fnb-hero-content { position: relative; z-index: 1; max-width: 500px; }
  .fnb-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 0.03em; line-height: 0.95;
    margin-bottom: 16px;
  }
  .fnb-hero-title em { font-style: normal; color: var(--red); }
  .fnb-hero-sub {
    font-size: 0.75rem; line-height: 1.9;
    opacity: 0.55; max-width: 380px;
  }
  .fnb-hero-emoji {
    position: absolute;
    right: 6%; top: 50%; transform: translateY(-50%);
    font-size: clamp(5rem, 12vw, 10rem);
    opacity: 0.18; pointer-events: none;
    animation: fnbFloat 3s ease-in-out infinite;
    z-index: 0;
  }
  @keyframes fnbFloat {
    0%, 100% { transform: translateY(-50%) rotate(-8deg); }
    50% { transform: translateY(-54%) rotate(4deg); }
  }

  /* MENU CARDS GRID */
  .fnb-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: var(--black);
    border-top: 1px solid #1a1a1a;
  }
  .fnb-card {
    position: relative; overflow: hidden;
    padding: 36px 24px 28px;
    border-right: 1px solid #1a1a1a;
    transition: background 0.3s;
    cursor: default;
  }
  .fnb-card:last-child { border-right: none; }
  .fnb-card:hover { background: #111; }
  .fnb-card:hover .fnb-card-icon { transform: scale(1.15) rotate(-5deg); }
  .fnb-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .fnb-card:hover::before { transform: scaleX(1); }
  .fnb-card-icon {
    font-size: 2.8rem; display: block; margin-bottom: 20px;
    transition: transform 0.3s ease;
    line-height: 1;
  }
  .fnb-card-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem; color: var(--white);
    margin-bottom: 8px; line-height: 1.2;
  }
  .fnb-card-variants {
    font-size: 0.55rem; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
  }
  .fnb-card-variants span {
    display: inline-block;
    background: rgba(232,0,13,0.08);
    border: 1px solid rgba(232,0,13,0.2);
    color: rgba(255,255,255,0.5);
    padding: 2px 8px; margin: 2px 2px 0 0;
    font-size: 0.48rem; letter-spacing: 0.12em;
    border-radius: 0;
  }

  /* OFFERS STRIP */
  .fnb-offers {
    background: var(--red);
    padding: 28px 48px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    position: relative; overflow: hidden;
  }
  .fnb-offers::before {
    content: '🍿';
    position: absolute; right: 120px; top: 50%; transform: translateY(-50%);
    font-size: 5rem; opacity: 0.1; pointer-events: none;
  }
  .fnb-offers-label {
    font-size: 0.5rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: rgba(255,255,255,0.65); margin-bottom: 6px;
  }
  .fnb-offers-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem; letter-spacing: 0.05em; color: var(--white);
  }
  .fnb-offers-badge {
    background: var(--black); color: var(--white);
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem; letter-spacing: 0.1em;
    padding: 10px 20px; white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative; z-index: 1;
    opacity: 0.7;
  }

  /* =========== BOOKING STRIP =========== */
  .booking-strip {
    background: var(--red);
    padding: 60px 48px;
    display: flex; align-items: center; justify-content: space-between;
    overflow: hidden;
    position: relative;
  }
  .booking-strip::before {
    content: 'BOOK NOW';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20vw;
    position: absolute;
    right: -2vw;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.08;
    color: var(--black);
    pointer-events: none;
    white-space: nowrap;
  }
  .booking-strip-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.05em;
    color: var(--white);
  }
  .booking-strip-text p {
    font-size: 0.7rem;
    opacity: 0.7;
    letter-spacing: 0.1em;
    margin-top: 8px;
  }
  .booking-btn-zomato {
    display: flex; align-items: center; gap: 12px;
    background: var(--black);
    color: var(--white);
    padding: 18px 32px;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    transition: background 0.2s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    position: relative; z-index: 1;
    cursor: pointer;
    border: none;
  }
  .booking-btn-zomato:hover { background: #1a1a1a; }
  .zomato-badge {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-top: 8px;
    display: block;
    text-align: center;
  }

  /* =========== CONTACT =========== */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .contact-detail {
    display: flex; flex-direction: column; gap: 32px;
  }
  .contact-item {}
  .contact-label {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }
  .contact-value {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
  }
  .map-placeholder {
    background: var(--grey);
    height: 300px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    opacity: 0.3;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
  }
  .map-placeholder::before {
    content: '📍';
    font-size: 3rem;
    position: absolute;
    opacity: 0.2;
  }

  /* =========== FOOTER =========== */
  footer {
    background: #0a0a0a;
    padding: 72px clamp(16px, 5vw, 48px) 48px;
    border-top: 2px solid rgba(232,0,13,0.25);
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: start;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-logo {
    font-family: 'Caveat', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }
  .footer-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    text-transform: uppercase;
  }
  .footer-col-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.48rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
    display: block;
  }
  .footer-links {
    display: flex; flex-direction: column; gap: 14px; list-style: none;
  }
  .footer-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
  }
  .footer-links a:hover { color: var(--red); }
  .footer-copyright {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    margin-top: 32px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
    padding: 0 clamp(16px, 5vw, 48px);
  }

  /* =========== AD PAGE =========== */
  /* =========== AD PAGE REDESIGN =========== */
  #ad-page {
    min-height: 100vh;
    padding-top: 72px;
  }

  /* HERO - dramatic dark with red spotlight */
  .adp-hero {
    background: var(--black);
    min-height: 90vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 100px 48px 80px;
  }
  .adp-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse 70% 70% at 60% 50%, rgba(232,0,13,0.08) 0%, transparent 70%);
  }
  .adp-hero-spotlight {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,0,13,0.12) 0%, transparent 70%);
    right: -100px; top: 50%; transform: translateY(-50%);
    z-index: 0;
  }
  .adp-hero-content { position: relative; z-index: 1; max-width: 700px; }
  .adp-hero-eyebrow {
    font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase;
    color: var(--red); margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .adp-hero-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--red);
  }
  .adp-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 9rem);
    letter-spacing: 0.03em; line-height: 0.92;
    margin-bottom: 32px;
  }
  .adp-hero-title em {
    font-style: normal; color: var(--red);
    font-family: 'DM Serif Display', serif;
  }
  .adp-hero-sub {
    font-size: 1rem; line-height: 1.8;
    opacity: 0.7; max-width: 520px;
    margin-bottom: 40px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
  }
  .adp-hero-cta {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--red); color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem; letter-spacing: 0.15em;
    padding: 16px 36px; border: none; cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    transition: background 0.2s, transform 0.2s;
  }
  .adp-hero-cta:hover { background: var(--red-dark); transform: translateY(-2px); }
  .adp-hero-visual {
    position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
    z-index: 1; opacity: 0.15;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22vw; line-height: 1;
    color: var(--red); pointer-events: none;
    white-space: nowrap;
  }

  /* NUMBERS BAR - light background break */
  .adp-numbers {
    background: #F5F0EC;
    color: var(--black);
    padding: 0;
  }
  .adp-numbers-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .adp-num-cell {
    padding: 48px 32px;
    border-right: 1px solid rgba(8,8,8,0.1);
    text-align: center;
    position: relative;
    transition: background 0.3s;
  }
  .adp-num-cell:last-child { border-right: none; }
  .adp-num-cell:hover { background: rgba(232,0,13,0.06); }
  .adp-num-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem; color: var(--red);
    line-height: 1; display: block;
  }
  .adp-num-label {
    font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(8,8,8,0.5); margin-top: 8px; display: block;
  }
  .adp-num-sub {
    font-size: 0.55rem; color: rgba(8,8,8,0.35);
    margin-top: 4px; letter-spacing: 0.1em;
    display: block;
  }

  /* WHO SHOULD ADVERTISE - warm off-white */
  .adp-who {
    background: var(--black-2);
    color: var(--white);
    padding: 100px 48px;
  }
  .adp-who-eyebrow {
    font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase;
    color: var(--red); margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .adp-who-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--red);
  }
  .adp-who-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.03em; line-height: 1;
    margin-bottom: 16px; color: var(--black);
  }
  .adp-who-intro {
    font-size: 0.8rem; line-height: 1.9; max-width: 600px;
    color: rgba(8,8,8,0.6); margin-bottom: 64px;
  }
  .adp-biz-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .adp-biz-card {
    background: var(--black);
    padding: 0;
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid #1e1e1e;
    cursor: default;
  }
  .adp-biz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(232,0,13,0.18);
    border-color: var(--red);
  }
  .adp-biz-card:hover .adp-biz-card-inner { background: rgba(232,0,13,0.05); }
  .adp-biz-card-banner {
    height: 80px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px;
    position: relative; overflow: hidden;
  }
  .adp-biz-card-banner::after {
    content: 'AD PLAYING';
    position: absolute; top: 8px; left: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 0.4rem; letter-spacing: 0.2em;
    background: var(--red); color: #fff;
    padding: 3px 6px;
  }
  .adp-biz-banner-icon { font-size: 2.8rem; line-height: 1; }
  .adp-biz-banner-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem; letter-spacing: 0.05em;
    text-align: right; line-height: 1.1;
  }
  .adp-biz-card-inner {
    padding: 20px 20px 24px;
    transition: background 0.2s;
  }
  .adp-biz-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem; color: var(--white);
    margin-bottom: 8px;
  }
  .adp-biz-desc {
    font-size: 0.6rem; line-height: 1.8;
    color: rgba(255,255,255,0.4);
  }
  .adp-biz-tag {
    display: inline-block; margin-top: 14px;
    font-size: 0.48rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red); border: 1px solid rgba(232,0,13,0.3);
    padding: 3px 8px;
  }

  /* HOW IT WORKS - dark section */
  .adp-how {
    background: var(--black-2);
    padding: 100px 48px;
    color: var(--white);
  }
  .adp-how-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 72px;
  }
  .adp-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
  }
  .adp-steps::before {
    content: '';
    position: absolute; top: 28px; left: 12.5%; right: 12.5%;
    height: 1px; background: var(--red); opacity: 0.3; z-index: 0;
  }
  .adp-step { padding: 0 20px; position: relative; z-index: 1; }
  .adp-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem; letter-spacing: 0.2em;
    color: var(--red); background: var(--black-2);
    border: 1px solid var(--red); padding: 6px 12px;
    display: inline-block; margin-bottom: 24px;
  }
  .adp-step-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem; margin-bottom: 12px;
  }
  .adp-step-desc { font-size: 0.62rem; opacity: 0.5; line-height: 1.8; }

  /* THE PITCH - red background */
  .adp-pitch {
    background: var(--red);
    padding: 80px 48px;
    position: relative; overflow: hidden;
  }
  .adp-pitch::before {
    content: 'YOUR AD HERE';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20vw; color: rgba(0,0,0,0.08);
    position: absolute; right: -2vw; top: 50%;
    transform: translateY(-50%);
    pointer-events: none; white-space: nowrap;
  }
  .adp-pitch-inner {
    max-width: 700px; position: relative; z-index: 1;
  }
  .adp-pitch-quote {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    line-height: 1.3; color: var(--white);
    margin-bottom: 32px;
  }
  .adp-pitch-quote em { font-style: italic; opacity: 0.8; }
  .adp-pitch-sub {
    font-size: 0.75rem; color: rgba(255,255,255,0.7);
    line-height: 1.9; max-width: 480px;
  }

  .adp-form-header { margin-bottom: 60px; }
  .adp-form-eyebrow {
    font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase;
    color: var(--red); margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .adp-form-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--red);
  }
  .adp-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1; color: var(--white);
    margin-bottom: 12px;
  }
  .adp-form-subtitle {
    font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.8;
    max-width: 500px;
  }
  .adp-form-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 64px; align-items: start;
  }
  .adp-form-promise { padding-top: 8px; }
  .adp-promise-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 32px;
  }
  .adp-promise-icon {
    width: 40px; height: 40px; background: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
  }
  .adp-promise-text h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem; color: var(--white); margin-bottom: 4px;
  }
  .adp-promise-text p {
    font-size: 0.6rem; color: rgba(255,255,255,0.45); line-height: 1.7;
  }
  /* ── Form section: dark card ── */
  .adp-form-section {
    background: var(--black-2);
    color: var(--white);
    padding: 100px 48px;
  }
  .adp-form-card {
    background: var(--black);
    border: 1px solid #222;
    padding: clamp(24px, 5vw, 48px);
    position: relative;
    overflow: hidden;
  }
  /* top red bar */
  .adp-form-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--red);
  }
  /* corner accent */
  .adp-form-card::after {
    content: '';
    position: absolute; bottom: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle at bottom right, rgba(232,0,13,0.12) 0%, transparent 70%);
  }
  /* ── Field groups ── */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }
  .form-full { grid-column: 1 / -1; }
  /* Label */
  .adp-form .form-group label {
    font-family: 'Space Mono', monospace;
    font-size: 0.48rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  /* Required star */
  .adp-form .form-group label .req {
    color: var(--red);
    font-size: 0.7rem;
    line-height: 1;
  }
  /* Inputs, selects, textareas */
  .adp-form .form-group input,
  .adp-form .form-group select,
  .adp-form .form-group textarea {
    background: #0e0e0e;
    color: var(--white);
    border: 1px solid #2a2a2a;
    border-bottom: 2px solid #333;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    padding: 14px 16px;
    outline: none;
    width: 100%;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
  }
  .adp-form .form-group input::placeholder,
  .adp-form .form-group textarea::placeholder {
    color: rgba(255,255,255,0.18);
    font-style: italic;
  }
  .adp-form .form-group input:focus,
  .adp-form .form-group select:focus,
  .adp-form .form-group textarea:focus {
    border-color: var(--red);
    border-bottom-color: var(--red);
    background: #130000;
    outline: none;
  }
  /* Custom select arrow */
  .adp-form .form-group .select-wrap {
    position: relative;
  }
  .adp-form .form-group .select-wrap::after {
    content: '▾';
    position: absolute;
    right: 14px; top: 50%; transform: translateY(-50%);
    color: var(--red);
    font-size: 0.8rem;
    pointer-events: none;
  }
  .adp-form .form-group select {
    padding-right: 36px;
    cursor: pointer;
  }
  .adp-form .form-group select option {
    background: #111;
    color: var(--white);
  }
  /* Textarea */
  .adp-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
  }
  /* Field counter badge (shows field number) */
  .field-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px; height: 16px;
    background: rgba(232,0,13,0.15);
    border: 1px solid rgba(232,0,13,0.3);
    font-size: 0.42rem;
    color: var(--red);
    margin-right: 2px;
    flex-shrink: 0;
  }
  /* Submit button */
  .adp-form-submit {
    width: 100%;
    margin-top: 8px;
    background: var(--red);
    color: var(--white);
    border: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.15em;
    padding: 20px 32px;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 14px 100%);
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
  }
  .adp-form-submit::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }
  .adp-form-submit:hover { background: var(--red-dark); transform: translateY(-2px); }
  .adp-form-submit:hover::before { transform: translateX(100%); }
  .adp-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
  .adp-form-submit-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s;
  }
  .adp-form-submit:hover .adp-form-submit-arrow { transform: translateX(4px); }
  /* Note under button */
  .adp-form-note {
    font-size: 0.5rem;
    color: rgba(255,255,255,0.25);
    text-align: center;
    margin-top: 14px;
    letter-spacing: 0.12em;
    line-height: 1.8;
  }
  /* Success message */
  .adp-success-msg {
    display: none;
    background: rgba(0,180,80,0.08);
    border: 1px solid rgba(0,180,80,0.25);
    color: #4ade80;
    padding: 20px 24px;
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    margin-top: 20px;
    line-height: 1.7;
  }
  /* ── Contact strip (2-col above form) ── */
  .adp-contact-strip {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  }
  .adp-contact-strip-item {
    display: flex; align-items: center; gap: 20px;
    padding: 32px clamp(16px, 4vw, 48px);
    text-decoration: none;
    border-right: 1px solid #1a1a1a;
    transition: background 0.2s;
  }
  .adp-contact-strip-item:last-child { border-right: none; }
  /* ── Contact band (3-col in footer) ── */
  .adp-contact-band {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 0; background: #111; border: 1px solid #1e1e1e;
  }
  .adp-contact-band-item {
    display: flex; align-items: center; gap: 14px;
    padding: 24px clamp(12px, 3vw, 28px);
    text-decoration: none;
    border-right: 1px solid #1e1e1e;
    transition: background 0.2s;
  }
  .adp-contact-band-item:last-child,
  .adp-contact-band-item--plain { border-right: none; }
  /* ── Ad-page footer bottom bar ── */
  .adp-footer-bar {
    padding: 24px clamp(16px, 5vw, 48px);
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
  }

  /* =========== ANIMATIONS =========== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .ticker-inner { animation: none; }
    .fnb-hero-emoji { animation: none; }
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  @media (max-width: 768px) {
    .nsl-header { flex-direction: column; align-items: flex-start; }
    .carousel-wrap { padding: 0 clamp(16px, 5vw, 48px) 48px; }
  }

  @media (max-width: 768px) {
    .movies-grid { grid-template-columns: repeat(2, 1fr); }
    .screens-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .fnb-cards { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .ad-options-grid { grid-template-columns: 1fr !important; }
    .adp-numbers-inner { grid-template-columns: repeat(2, 1fr); }
    .adp-biz-grid { grid-template-columns: 1fr; }
    .adp-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .reach-stats { grid-template-columns: repeat(2, 1fr) !important; }
    .footer-inner { flex-direction: column; gap: 32px; }
    .booking-strip { flex-direction: column; gap: 24px; text-align: center; }
    .fnb-offers { flex-direction: column; gap: 16px; }
    section { padding: 60px 0; }
    .container { padding: 0 clamp(16px, 5vw, 48px); }
    .adp-hero { padding: 80px clamp(16px, 5vw, 48px) 60px; }
    .adp-hero-visual { display: none; }
    .adp-who { padding: 60px clamp(16px, 5vw, 48px); }
    .adp-how { padding: 60px clamp(16px, 5vw, 48px); }
    .fnb-hero { padding: 60px clamp(16px, 5vw, 48px) 40px; }
    .fnb-offers { padding: 24px clamp(16px, 5vw, 48px); }
    .booking-strip { padding: 40px clamp(16px, 5vw, 48px); }
    footer { padding: 40px clamp(16px, 5vw, 48px); }
    .footer-copyright { padding: 0 clamp(16px, 5vw, 48px); padding-top: 24px; }

    /* ── Advertise page ── */
    .adp-form-section { padding: 60px clamp(16px, 5vw, 48px); }
    .adp-form-header { margin-bottom: 40px; }
    .adp-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .adp-pitch { padding: 60px clamp(16px, 5vw, 48px); }
    /* Contact strip above form: stack to 1 col */
    .adp-contact-strip { grid-template-columns: 1fr; }
    .adp-contact-strip-item { border-right: none; border-bottom: 1px solid #1a1a1a; }
    .adp-contact-strip-item:last-child { border-bottom: none; }
    /* Contact band in footer: stack to 1 col */
    .adp-contact-band { grid-template-columns: 1fr; }
    .adp-contact-band-item { border-right: none; border-bottom: 1px solid #1e1e1e; }
    .adp-contact-band-item:last-child,
    .adp-contact-band-item--plain { border-bottom: none; }
    /* Ad-page footer bottom bar */
    .adp-footer-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  }

  @media (max-width: 480px) {
    .adp-numbers-inner { grid-template-columns: repeat(2, 1fr); }
    .adp-steps { grid-template-columns: 1fr; gap: 24px; }
    .adp-steps::before { display: none; }
    .form-row { grid-template-columns: 1fr !important; }
  }

  @media (max-width: 600px) {
    .brand-section { display: none; }
    .movies-grid { grid-template-columns: 1fr; }
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }
  @keyframes scanline {
    0% { top: -5%; }
    100% { top: 105%; }
  }

  /* SCANLINE EFFECT */
  .scanline {
    position: absolute;
    left: 0; right: 0; height: 3px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.03), transparent);
    animation: scanline 8s linear infinite;
    pointer-events: none;
    z-index: 6;
  }

  /* DIVIDER */
  .red-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--red), transparent);
    margin: 0;
  }

  /* RED UNDERLINE ACCENT */
  .accent-underline {
    position: relative; display: inline-block;
  }
  .accent-underline::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0; height: 3px;
    background: var(--red);
  }

  /* DISTRICT LOGO */
  .district-logo-svg {
    height: 18px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(10);
  }
  .district-logo-svg-dark {
    height: 22px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
  }


  .nav-reel {
    width: 20px; height: 20px;
    border: 2px solid var(--red);
    border-radius: 50%;
    position: relative;
    animation: spin 4s linear infinite;
    flex-shrink: 0;
  }
  .nav-reel::before, .nav-reel::after {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* ACTIVE PAGE TRANSITION */
  .page-enter {
    animation: pageEnter 0.4s ease forwards;
  }
  @keyframes pageEnter {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* PIXEL BADGE for brand element */
  .pixel-corner {
    position: absolute;
    width: 120px; height: 120px;
  }

  /* FILM HOLE decoration */
  .film-holes {
    position: absolute;
    top: 0; bottom: 0;
    width: 48px;
    display: flex; flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background: var(--black-2);
    z-index: 2;
  }
  .film-hole {
    width: 22px; height: 16px;
    border: 2px solid #2a2a2a;
    border-radius: 3px;
  }

  /* NOTICE */
  .form-note {
    text-align: center;
    font-size: 0.6rem;
    opacity: 0.4;
    margin-top: 16px;
    letter-spacing: 0.1em;
  }

  /* Success message */
  .success-msg {
    display: none;
    background: rgba(232,0,13,0.1);
    border: 1px solid var(--red);
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-top: 20px;
  }


/* =========== CREDENTIALS STRIP =========== */
.credentials-strip {
  background: var(--black-2);
  border-bottom: 1px solid #1a1a1a;
}
.credentials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.credentials-cell {
  padding: clamp(20px, 4vw, 36px) clamp(16px, 3vw, 32px);
  text-align: center;
  border-right: 1px solid #1a1a1a;
}
.credentials-cell--last {
  border-right: none;
}
.credentials-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--red);
  line-height: 1;
}
.credentials-label {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-top: 6px;
}
@media (max-width: 600px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .credentials-cell:nth-child(2) {
    border-right: none;
  }
  .credentials-cell:nth-child(3) {
    border-right: 1px solid #1a1a1a;
    border-top: 1px solid #1a1a1a;
  }
  .credentials-cell:nth-child(4) {
    border-top: 1px solid #1a1a1a;
  }
}

/* ── Replace all removed onmouseover/onmouseout with CSS hover ── */
/* Social / contact links that had opacity transitions */
.contact-social-link { opacity: 0.6; transition: opacity 0.2s; }
.contact-social-link:hover { opacity: 1; }

.footer-social-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--red); }

/* District booking button border hover */
.district-book-btn { transition: border-color 0.2s; }
.district-book-btn:hover { border-color: var(--red) !important; }

/* Ad page contact strip hover */
.adp-contact-strip-item:hover { background: #161616; }

/* Ad page contact band hover */
.adp-contact-band-item:hover { background: #1a1a1a; }

/* Ad page back-to-home button */
.adp-back-btn { opacity: 0.4; transition: opacity 0.2s; }
.adp-back-btn:hover { opacity: 1; }
