/* ══ MAIN STYLES: base, overlay, header, hero, sections, modals, footer, responsive ══ */
  :root {
    --bg: #eef0f5;
    --bg2: #f5f6fa;
    --glass: rgba(255,255,255,0.55);
    --glass2: rgba(255,255,255,0.35);
    --glass-border: rgba(255,255,255,0.75);
    --blur: blur(22px);
    --blur2: blur(14px);
    --shadow: 0 8px 40px rgba(80,80,120,0.13), 0 2px 12px rgba(80,80,120,0.08);
    --shadow-card: 0 12px 48px rgba(60,60,100,0.16), 0 2px 8px rgba(60,60,100,0.08);
    --accent: #5b3fa0;
    --accent2: #8b5cf6;
    --gold: #c9a96e;
    --gold2: #e8c98a;
    --text: #1a1a2e;
    --text2: #4a4a6a;
    --text3: #8888aa;
    --radius: 20px;
    --radius2: 14px;
    --transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  }

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

  html { scroll-behavior: smooth; }

  /* ══ CRITICAL iOS SAFARI CRASH FIX ══
     Safari recalculates layout for ALL position:fixed elements during pinch-zoom,
     even display:none ones. This causes OOM crash on pages with multiple overlays.
     
     Fix: overlays use a .overlay-hidden class instead of display:none.
     Hidden overlays are moved off-screen (left:-200vw) + visibility:hidden.
     Safari skips off-screen fixed elements during zoom layout recalc. */

  .overlay-page {
    display: block !important;
    position: fixed;
    inset: 0;
    transition: none !important;
  }

  .overlay-page.overlay-hidden {
    visibility: hidden !important;
    pointer-events: none !important;
    left: -200vw !important;
    top: -200vh !important;
    overflow: hidden !important;
    contain: strict !important;
  }

  /* Kill ALL animations inside hidden overlays — Safari compliance */
  .overlay-page.overlay-hidden *,
  .overlay-page.overlay-hidden *::before,
  .overlay-page.overlay-hidden *::after {
    animation-play-state: paused !important;
    will-change: auto !important;
  }

  .overlay-page.overlay-visible {
    visibility: visible !important;
    pointer-events: all !important;
    left: 0 !important;
    top: 0 !important;
    contain: none !important;
  }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: rgba(91,63,160,0.3); border-radius: 3px; }

  /* ══════════════════ HEADER ══════════════════ */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: var(--transition);
  }
  header.scrolled {
    background: rgba(238,240,245,0.88);
border-bottom: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 40px rgba(80,80,120,0.15);
  }

  .header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
  }

  .header-logo-mark {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(91,63,160,0.2), 0 0 0 1.5px rgba(91,63,160,0.12);
    overflow: hidden;
  }

  .header-logo-mark img {
    width: 88%; height: 88%;
    object-fit: contain;
    padding: 4px;
  }

  .header-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  nav a {
    text-decoration: none;
    color: var(--text2);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
  }

  nav a:hover, nav a.active {
    color: var(--accent);
    background: transparent;
  }

  nav a.active {
    color: var(--accent);
    background: transparent;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    background: var(--glass2);
border: 1px solid var(--glass-border);
  }
  .burger span {
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(238,240,245,0.95);
border-bottom: 1px solid rgba(255,255,255,0.7);
    padding: 20px;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(80,80,120,0.12);
  }

  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    text-decoration: none;
    color: var(--text2);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
    padding: 12px 18px;
    border-radius: var(--radius2);
    transition: var(--transition);
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.6);
    display: block;
  }
  .mobile-nav a:hover { background: rgba(91,63,160,0.1); color: var(--accent); }

  /* ══════════════════ HERO ══════════════════ */
  .hero {
    padding-top: 70px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  /* Pulsating aurora background */
  .hero-aurora {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--bg);
    overflow: hidden;
  }

  .aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    opacity: 0.45;
    animation: auroraFloat 8s ease-in-out infinite;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .aurora-blob:nth-child(1) {
    width: 600px; height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,0.5) 0%, rgba(167,139,250,0.2) 60%, transparent 100%);
    top: -100px; left: -150px;
    animation-delay: 0s; animation-duration: 9s;
  }
  .aurora-blob:nth-child(2) {
    width: 500px; height: 450px;
    background: radial-gradient(circle, rgba(201,169,110,0.4) 0%, rgba(232,201,138,0.15) 60%, transparent 100%);
    top: 50px; right: -100px;
    animation-delay: -3s; animation-duration: 11s;
  }
  .aurora-blob:nth-child(3) {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(91,63,160,0.35) 0%, rgba(139,92,246,0.1) 60%, transparent 100%);
    bottom: 0px; left: 30%;
    animation-delay: -5s; animation-duration: 13s;
  }
  .aurora-blob:nth-child(4) {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,200,150,0.3) 0%, transparent 70%);
    top: 200px; left: 50%;
    animation-delay: -2s; animation-duration: 10s;
  }

  @keyframes auroraFloat {
    0%, 100% { transform: translate(0,0) scale(1); opacity: 0.45; }
    25% { transform: translate(30px,-20px) scale(1.08); opacity: 0.55; }
    50% { transform: translate(-20px,30px) scale(0.95); opacity: 0.4; }
    75% { transform: translate(20px,10px) scale(1.05); opacity: 0.5; }
  }

  /* Subtle grid overlay */
  .hero-aurora::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(91,63,160,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(91,63,160,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 60px 120px;
    display: flex;
    align-items: center;
    gap: 44px;
  }

  .hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  /* Glowing Logo Circle */
  .logo-circle-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-glow-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: conic-gradient(
      from 0deg,
      rgba(139,92,246,0.7),
      rgba(201,169,110,0.6),
      rgba(91,63,160,0.8),
      rgba(167,139,250,0.5),
      rgba(232,201,138,0.6),
      rgba(139,92,246,0.7)
    );
    filter: blur(14px);
    animation: ringPulse 4s ease-in-out infinite;
  }

  @keyframes ringPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); filter: blur(14px); }
    50% { opacity: 1; transform: scale(1.06); filter: blur(10px); }
  }

  .logo-glow-ring2 {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(201,169,110,0.5);
    animation: ringRotate 8s linear infinite;
    box-shadow:
      0 0 20px rgba(201,169,110,0.4),
      inset 0 0 20px rgba(201,169,110,0.1);
  }

  @keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .logo-circle {
    width: 180px; height: 180px;
    border-radius: 50%;
    background: #fff;
border: 2px solid rgba(255,255,255,0.9);
    box-shadow:
      0 20px 60px rgba(91,63,160,0.25),
      0 4px 20px rgba(91,63,160,0.15),
      inset 0 2px 0 rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }

  .logo-circle img {
    width: 72%;
    height: 72%;
    object-fit: contain;
    display: block;
  }

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

  .hero-tagline h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.5px;
  }

  .hero-tagline h1 em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-tagline p {
    margin-top: 12px;
    color: var(--text2);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
  }

  .hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    padding: 14px 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(91,63,160,0.35);
    transition: var(--transition);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(91,63,160,0.45);
  }

  .btn-secondary {
    padding: 14px 32px;
    border-radius: 30px;
    background: var(--glass);
border: 1.5px solid var(--glass-border);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  .btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.75);
    box-shadow: 0 12px 36px rgba(80,80,120,0.16);
  }

  /* iPhone Mockup */
  .hero-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .iphone-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.3px;
  }
  .iphone-label span {
    display: block;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    color: var(--text3);
    margin-top: 4px;
  }

  .iphone-wrap {
    position: relative;
    animation: iphoneFloat 6s ease-in-out infinite;
  }

  @keyframes iphoneFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  .iphone-glow {
    position: absolute;
    inset: -15px;
    border-radius: 55px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.25) 0%, transparent 70%);
    filter: blur(20px);
    animation: iphoneGlowPulse 4s ease-in-out infinite;
  }

  @keyframes iphoneGlowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }

  .iphone {
    width: 268px;
    height: 516px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 52px;
    padding: 13px;
    position: relative;
    box-shadow:
      0 40px 80px rgba(0,0,0,0.4),
      0 0 0 1px rgba(255,255,255,0.15),
      inset 0 2px 4px rgba(255,255,255,0.1),
      inset 0 -2px 4px rgba(0,0,0,0.3);
  }

  .iphone::before {
    content: '';
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 26px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 10;
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  }

  /* Camera dot */
  .iphone::after {
    content: '';
    position: absolute;
    top: 19px; left: calc(50% + 28px);
    transform: translateX(-50%);
    width: 10px; height: 10px;
    background: #2a2a2a;
    border-radius: 50%;
    z-index: 11;
    box-shadow: 0 0 0 2px #333, inset 0 0 4px rgba(0,0,0,0.8);
  }

  /* Side buttons */
  .iphone-btn-r {
    position: absolute;
    right: -4px; top: 140px;
    width: 4px; height: 70px;
    background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
    border-radius: 0 3px 3px 0;
  }
  .iphone-btn-l1, .iphone-btn-l2, .iphone-btn-l3 {
    position: absolute;
    left: -4px;
    width: 4px;
    background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
    border-radius: 3px 0 0 3px;
  }
  .iphone-btn-l1 { top: 110px; height: 34px; }
  .iphone-btn-l2 { top: 156px; height: 60px; }
  .iphone-btn-l3 { top: 228px; height: 60px; }

  .iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 38px;
    overflow: hidden;
    background: #000;
    position: relative;
  }

  .iphone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #1a0a30 0%, #0d0520 50%, #1a0a20 100%);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    gap: 12px;
    text-align: center;
    padding: 20px;
  }

  .video-placeholder .play-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.3);
  }

  .video-placeholder .play-icon svg {
    width: 20px; height: 20px;
    fill: white;
    margin-left: 3px;
  }

  .iphone-volume-btn {
    position: absolute;
    bottom: 70px; right: 20px;
    z-index: 5;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }
  .iphone-volume-btn:hover { background: rgba(255,255,255,0.25); }
  .iphone-volume-btn svg { width: 16px; height: 16px; fill: white; }

  .iphone-video-dots {
    position: absolute;
    bottom: 16px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 6px;
    z-index: 5;
  }

  .iphone-video-dots span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: var(--transition);
    cursor: pointer;
  }
  .iphone-video-dots span.active {
    background: rgba(255,255,255,0.9);
    width: 18px;
    border-radius: 3px;
  }

  /* ══════════════════ NETFLIX ARC ══════════════════ */
  .arc-section {
    position: relative;
    margin-top: -120px;
    z-index: 3;
    overflow: hidden; /* орбы не вылезают за дугу */
  }

  .arc-svg {
    display: block;
    width: 100%;
    height: 140px;
    margin-bottom: -2px;
    position: relative;
    z-index: 2; /* дуга поверх орбов */
  }

  .recommendations {
    background: #05030a;
    padding: 0 0 0;
    position: relative;
    overflow: hidden;
  }

  /* Плавный fade от верхнего края — маскирует стык дуги */
  .recommendations::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #05030a 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
  }

  /* ── Recommendations: GSAP canvas stars ── */
  #rec-stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
  }

  /* ── Orbs — смещены вниз, не лезут в зону дуги ── */
  .rec-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    pointer-events: none;
    z-index: 1;
    will-change: transform;
  }
  .rec-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(91,63,160,0.42), transparent 70%);
    top: 60px; left: -120px;
  }
  .rec-orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.22), transparent 70%);
    top: 120px; right: -100px;
  }
  .rec-orb-3 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(71,40,140,0.32), transparent 70%);
    bottom: 40px; left: 30%;
  }
  .rec-orb-4 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(201,169,110,0.16), transparent 70%);
    top: 40%; right: 15%;
  }

  /* ── Grain ── */
  #rec-grain {
    position: absolute; inset: 0; z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.45;
  }

  /* ── Marquee ── */
  #rec-marquee-wrap {
    position: relative;
    z-index: 10;
    overflow: hidden;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: linear-gradient(to bottom, rgba(5,3,10,0.2), rgba(5,3,10,0.5));
margin-bottom: 0;
  }
  #rec-marquee-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
  }
  .rec-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    padding-right: 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.32);
    text-transform: uppercase;
  }
  .rec-marquee-item.gold {
    color: rgba(201,169,110,0.55);
    font-weight: 300;
  }
  .rec-marquee-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(201,169,110,0.5);
    flex-shrink: 0;
  }

  /* ── Ensure content inside recommendations is above bg layers ── */
  .recommendations .rec-header,
  .recommendations .carousel-wrap {
    position: relative;
    z-index: 5;
  }

  .rec-header {
    padding: 50px 60px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .section-title-dark {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
  }

  .section-title-dark em {
    font-style: italic;
    color: var(--gold2);
  }

  .see-all-btn {
    color: var(--gold2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
    transition: var(--transition);
  }
  .see-all-btn:hover { opacity: 1; }
  .see-all-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

  /* Carousel */
  .carousel-wrap {
    position: relative;
    overflow: hidden;
  }

  .carousel {
    display: flex;
    gap: 20px;
    padding: 10px 60px 50px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    justify-content: center;
  }
  .carousel::-webkit-scrollbar { display: none; }

  .carousel-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
    color: white;
  }
  .carousel-nav:hover { background: rgba(255,255,255,0.22); }
  .carousel-nav.prev { left: 16px; }
  .carousel-nav.next { right: 16px; }
  .carousel-nav svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; }

  /* Dark Card (for carousel) */
  .show-card-dark {
    flex: 0 0 220px;
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
  }

  .show-card-dark:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(201,169,110,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,110,0.2);
  }

  .show-card-dark .poster {
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, #2a1550 0%, #1a0d30 50%, #0f0820 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .show-card-dark .poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .show-card-dark:hover .poster img {
    transform: scale(1.06);
  }

  .poster-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    text-align: center;
    padding: 20px;
    height: 100%;
    width: 100%;
  }
  .poster-placeholder svg {
    width: 40px; height: 40px;
    stroke: rgba(255,255,255,0.2);
    fill: none;
  }

  .show-card-dark .card-info {
    padding: 14px;
  }

  .card-title-dark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .card-meta-dark {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

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

  .card-meta-row svg {
    width: 10px; height: 10px;
    stroke: rgba(255,255,255,0.35);
    fill: none;
    flex-shrink: 0;
  }

  .card-badges {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
  }

  .badge {
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  .badge-age {
    background: rgba(201,169,110,0.2);
    color: var(--gold2);
    border: 1px solid rgba(201,169,110,0.3);
  }

  .badge-dur {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .card-dark-actions {
    padding: 0 14px 14px;
    display: flex;
    gap: 8px;
  }

  .btn-details-dark {
    flex: 1;
    padding: 9px 0;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
  }
  .btn-details-dark:hover {
    background: rgba(255,255,255,0.15);
    color: white;
  }

  .btn-ticket-dark {
    flex: 1.3;
    padding: 9px 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201,169,110,0.85), rgba(232,201,138,0.7));
    border: none;
    color: #1a0d20;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
  }
  .btn-ticket-dark:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,169,110,0.4); }

  /* ══════════════════ LIGHT SECTIONS ══════════════════ */
  .light-section {
    background: var(--bg);
    padding: 80px 0;
    position: relative;
  }

  .section-header {
    padding: 0 60px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    flex-wrap: wrap;
  }

  .section-title-light {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.5px;
  }

  .section-title-light em {
    font-style: italic;
    color: var(--accent);
  }

  .see-all-light {
    color: var(--accent2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex; align-items: center; gap: 5px;
    opacity: 0.75;
    transition: var(--transition);
  }
  .see-all-light:hover { opacity: 1; }
  .see-all-light svg { width: 15px; height: 15px; stroke: currentColor; fill: none; }

  /* ══ CARDS GRID with hover side panel ══ */
  .cards-container {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
  }

  /* Cards always sized as if 4 in a row: calc((100% - 3*20px) / 4) */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(4, calc((100% - 60px) / 4));
    gap: 20px;
    transition: grid-template-columns 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }

  /* On hover: only 3 cols visible, same fixed card width — 4th card wraps to next row */
  .cards-container:hover .cards-grid {
    grid-template-columns: repeat(3, calc((100% - 60px) / 4));
  }

  .side-panel {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 0;
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 5;
    pointer-events: none;
  }

  .cards-container:hover .side-panel {
    width: calc(25% - 5px);
    pointer-events: all;
  }

  .side-panel-inner {
    width: 220px;
    min-width: 200px;
    height: 100%;
    background: linear-gradient(160deg, rgba(91,63,160,0.97) 0%, rgba(60,30,120,0.99) 100%);
border-radius: 24px 0 0 24px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: -8px 0 30px rgba(91,63,160,0.35);
    float: right;
  }

  .side-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.3px;
  }

  .side-panel-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
  }

  .side-panel-link {
    color: var(--gold2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex; align-items: center; gap: 5px;
    transition: var(--transition);
  }
  .side-panel-link:hover { gap: 10px; }
  .side-panel-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

  .side-panel-stat {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .side-panel-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--gold2);
    line-height: 1;
  }

  .side-panel-stat .lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
  }

  /* ── Light Glass Card ── */
  .show-card-light {
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
    border: 1.5px solid rgba(220,215,240,0.8);
    box-shadow: 0 8px 32px rgba(60,40,120,0.13), 0 2px 8px rgba(60,40,120,0.07);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
  }

  .show-card-light:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(91,63,160,0.22), 0 4px 16px rgba(91,63,160,0.1);
    border-color: rgba(91,63,160,0.25);
  }

  .show-card-light .poster {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e8e0f5 0%, #d8d0ee 100%);
    overflow: hidden;
    position: relative;
  }

  .show-card-light .poster img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  .show-card-light:hover .poster img { transform: scale(1.05); }

  .poster-placeholder-light {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px;
    color: var(--text3);
    font-size: 12px; text-align: center;
    padding: 20px;
  }
  .poster-placeholder-light svg {
    width: 38px; height: 38px;
    stroke: var(--text3);
    fill: none;
  }

  .show-card-light .card-info {
    padding: 14px 16px 8px;
    background: #fff;
  }

  .card-title-light {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .card-meta-light {
    font-size: 12px;
    color: var(--text3);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .card-meta-light .meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .card-meta-light svg {
    width: 11px; height: 11px;
    stroke: var(--text3);
    fill: none;
    flex-shrink: 0;
  }

  .card-badges-light {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 12px;
  }

  .card-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .card-badge-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 110px;
  }

  .badge-age-light {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    background: #fff0e6;
    color: #c2410c;
    border: 1.5px solid #fed7aa;
    letter-spacing: .3px;
  }

  .badge-dur-light {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: #e0f2fe;
    color: #0369a1;
    border: 1.5px solid #bae6fd;
    letter-spacing: .1px;
  }

  .badge-genre-light {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: #f0fdf4;
    color: #15803d;
    border: 1.5px solid #bbf7d0;
    letter-spacing: .1px;
  }

  @keyframes badgeShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .card-actions {
    padding: 12px 16px 16px;
    display: flex;
    gap: 8px;
    background: #fff;
  }

  .btn-details-light {
    flex: 1;
    padding: 10px 0;
    border-radius: 12px;
    background: linear-gradient(
      90deg,
      rgba(201,169,110,0.15) 0%,
      rgba(232,201,138,0.28) 40%,
      rgba(201,169,110,0.15) 100%
    );
    background-size: 200% 100%;
    border: 1.5px solid rgba(201,169,110,0.55);
    color: #7a5010;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.3px;
    animation: detailsShimmer 3s ease-in-out infinite;
  }
  @keyframes detailsShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  .btn-details-light:hover {
    background: linear-gradient(90deg, rgba(201,169,110,0.28) 0%, rgba(232,201,138,0.45) 50%, rgba(201,169,110,0.28) 100%);
    border-color: rgba(201,169,110,0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201,169,110,0.25);
  }

  .btn-ticket-light {
    flex: 1.4;
    padding: 10px 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border: none;
    color: white;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 4px 14px rgba(22,163,74,0.35);
  }
  .btn-ticket-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(22,163,74,0.45);
    background: linear-gradient(135deg, #15803d, #16a34a);
  }

  .btn-soon {
    flex: 1.4;
    padding: 10px 0;
    border-radius: 12px;
    background: rgba(0,0,0,0.05);
    border: 1px dashed rgba(0,0,0,0.15);
    color: var(--text3);
    font-size: 12px;
    font-weight: 700;
    cursor: not-allowed;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    opacity: 0.75;
  }

  /* ── Past shows (archive — darkened) ── */
  .show-card-past {
    border-radius: var(--radius2);
    overflow: hidden;
    background: rgba(255,255,255,0.35);
border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 20px rgba(80,80,120,0.07);
    cursor: pointer;
    transition: var(--transition);
    filter: saturate(0.45) brightness(0.82);
    opacity: 0.75;
  }

  .show-card-past:hover {
    transform: translateY(-4px);
    filter: saturate(0.75) brightness(0.95);
    opacity: 0.95;
    box-shadow: 0 12px 36px rgba(80,80,120,0.12);
  }

  .show-card-past .poster {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #d5d0e0 0%, #c8c5d5 100%);
    overflow: hidden;
    position: relative;
  }

  .show-card-past .poster img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  .show-card-past:hover .poster img { transform: scale(1.04); }

  .show-card-past .card-info {
    padding: 16px 16px 8px;
  }

  .card-title-past {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text2);
    line-height: 1.25;
    margin-bottom: 8px;
    word-break: break-word;
    hyphens: auto;
  }

  .card-meta-past {
    font-size: 12px;
    color: var(--text3);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .card-actions-past {
    padding: 10px 16px 16px;
  }

  .btn-details-past {
    width: 100%;
    padding: 10px 0;
    border-radius: 12px;
    background: rgba(91,63,160,0.06);
    border: 1px solid rgba(91,63,160,0.12);
    color: var(--text3);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: 'Nunito', sans-serif;
  }
  .btn-details-past:hover { background: rgba(91,63,160,0.1); color: var(--accent); }

  /* Past cards grid — standard 3-col, same size as active cards */
  .past-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .past-section {
    background: linear-gradient(180deg, var(--bg) 0%, #e8eaf0 100%);
    padding: 60px 0 100px;
  }

  /* ══════════════════ MODAL ══════════════════ */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,5,20,0.75);
z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    /* iOS Safari zoom OOM fix: visibility:hidden tells Safari to fully skip layout recalc */
    visibility: hidden;
  }

  .modal-overlay.open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  .modal {
    width: 100%;
    max-width: 860px;
    max-height: 92vh;
    background: rgba(255,255,255,0.96);
border: 1.5px solid rgba(255,255,255,0.9);
    border-radius: 28px;
    overflow-y: auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.5);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: row;
  }

  .modal-overlay.open .modal {
    transform: translateY(0) scale(1);
  }

  .modal-header {
    position: relative;
    width: 340px;
    min-width: 340px;
    overflow: hidden;
    border-radius: 28px 0 0 28px;
    background: linear-gradient(135deg, #2a1550 0%, #1a0d30 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .modal-header img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
  }

  .modal-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.15) 100%);
    pointer-events: none;
  }

  @media (max-width: 640px) {
    .modal { flex-direction: column; max-width: 98vw; }
    .modal-header { width: 100%; min-width: unset; height: 260px; border-radius: 28px 28px 0 0; }
  }

  /* ══ TICKET DATES MODAL ══ */
  #ticket-dates-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,5,20,0.75);
z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    /* iOS Safari zoom OOM fix */
    visibility: hidden;
  }
  #ticket-dates-overlay.open { opacity: 1; pointer-events: all; visibility: visible; }
  #ticket-dates-box {
    width: 100%;
    max-width: 480px;
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    overflow: hidden;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.32s cubic-bezier(0.23,1,0.32,1);
  }
  #ticket-dates-overlay.open #ticket-dates-box { transform: translateY(0) scale(1); }
  #ticket-dates-head {
    padding: 22px 24px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #ticket-dates-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a0d30;
    line-height: 1.2;
    max-width: calc(100% - 48px);
  }
  #ticket-dates-close {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(0,0,0,0.07);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: .15s;
  }
  #ticket-dates-close:hover { background: rgba(0,0,0,0.13); }
  #ticket-dates-close svg { width: 14px; height: 14px; stroke: #333; fill: none; stroke-width: 2.5; }
  #ticket-dates-sub {
    padding: 10px 24px 0;
    font-size: 12px;
    font-weight: 700;
    color: rgba(91,63,160,0.7);
    letter-spacing: .6px;
    text-transform: uppercase;
  }
  #ticket-dates-list {
    padding: 10px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 52vh;
    overflow-y: auto;
  }
  .td-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 16px;
    background: #fff;
    border: 1.5px solid rgba(91,63,160,0.12);
    border-radius: 14px;
    transition: border-color .18s, box-shadow .18s;
  }
  .td-row:hover { border-color: rgba(91,63,160,0.35); box-shadow: 0 4px 16px rgba(91,63,160,0.1); }
  .td-info { display: flex; align-items: center; gap: 14px; }
  .td-date-col { display: flex; flex-direction: column; gap: 2px; }
  .td-date-str { font-size: 15px; font-weight: 700; color: #1a0d30; }
  .td-time-str { font-size: 12px; font-weight: 600; color: rgba(91,63,160,0.75); }
  .td-sep { width: 1px; height: 32px; background: rgba(0,0,0,0.08); flex-shrink: 0; }
  .td-buy-btn {
    flex-shrink: 0;
    padding: 9px 18px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s, transform .12s, box-shadow .15s;
    box-shadow: 0 3px 12px rgba(34,197,94,0.3);
  }
  .td-buy-btn:hover { background: linear-gradient(135deg, #16a34a, #15803d); transform: scale(1.02); box-shadow: 0 5px 18px rgba(34,197,94,0.4); }
  .td-buy-btn:active { transform: scale(.97); }
  .td-buy-btn.no-link { background: rgba(0,0,0,0.08); color: rgba(0,0,0,0.35); cursor: default; }
  .td-buy-btn.no-link:hover { background: rgba(0,0,0,0.08); transform: none; }
  @media (max-width: 480px) {
    #ticket-dates-box { border-radius: 20px; }
    #ticket-dates-list { max-height: 60vh; }
    .td-row { padding: 11px 13px; }
    .td-date-str { font-size: 14px; }
  }

  .modal-back-btn {
    position: absolute;
    top: 16px; left: 16px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
border: 1px solid rgba(255,255,255,0.4);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
  }
  .modal-back-btn:hover { background: rgba(255,255,255,0.35); }
  .modal-back-btn svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; }

  .modal-body {
    padding: 28px 36px 36px;
  }

  .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .modal-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .modal-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex; align-items: center; gap: 5px;
  }

  .modal-badge svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }

  .mb-date { background: rgba(91,63,160,0.1); color: var(--accent); border: 1px solid rgba(91,63,160,0.2); }
  .mb-age { background: rgba(201,169,110,0.15); color: #8a6020; border: 1px solid rgba(201,169,110,0.3); }
  .mb-dur { background: rgba(0,0,0,0.05); color: var(--text3); border: 1px solid rgba(0,0,0,0.08); }

  .modal-desc {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .modal-actions {
    display: flex;
    gap: 12px;
  }

  /* ══════════════════ FOOTER ══════════════════ */
  footer {
    background: #0f0720;
    color: rgba(255,255,255,0.5);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-brand .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
  }

  .footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    max-width: 220px;
  }

  .footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
  }

  .footer-col a {
    display: block;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold2); }


/* ══ howareu.com banner ══ */
.howareu-banner{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:8px;padding:5px 12px 5px 9px;text-decoration:none;color:rgba(255,255,255,.5);font-size:11px;font-family:'Montserrat',sans-serif;letter-spacing:.02em;transition:background .3s,border-color .3s,color .3s;white-space:nowrap;flex-shrink:0}
.howareu-banner:hover{background:rgba(255,255,255,.11);border-color:rgba(255,255,255,.2);color:rgba(255,255,255,.8)}
.howareu-banner img.howareu-logo{width:52px;height:auto;display:block;opacity:.8;transition:opacity .3s}
.howareu-banner:hover img.howareu-logo{opacity:1}
@media(max-width:600px){.howareu-banner .howareu-label{display:none}}
  .footer-bottom {
    background: #080415;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.25);
    font-size: 12px;
  }

  /* ══════════════════ RESPONSIVE ══════════════════ */

  /* ── Tablet landscape / small desktop (1100px) ── */
  @media (max-width: 1100px) {
    .hero-content { gap: 30px; padding: 50px 40px 100px; }
    .iphone { width: 230px; height: 478px; }
    .cards-grid { grid-template-columns: repeat(3, calc((100% - 40px) / 3)); }
    .cards-container:hover .cards-grid { grid-template-columns: repeat(2, calc((100% - 40px) / 3)); }
    .cards-container:hover .side-panel { width: calc(33.3% - 7px); }
    .past-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── Tablet portrait (900px) ── */
  @media (max-width: 900px) {
    /* Header */
    header { padding: 0 20px; }
    nav { display: none; }
    .burger { display: flex; }

    /* Hero */
    .hero-right { display: none; }
    .hero-content { padding: 40px 24px 90px; justify-content: center; }
    .hero-left { align-items: center; gap: 28px; }
    .logo-circle { width: 150px; height: 150px; }
    .logo-glow-ring { inset: -16px; }

    /* Sections */
    .section-header, .rec-header { padding: 0 20px; margin-bottom: 20px; }
    .carousel { padding: 10px 20px 24px; }
    .cards-container { padding: 0 20px; }
    .cards-grid { grid-template-columns: repeat(2, calc((100% - 20px) / 2)); }
    .cards-container:hover .cards-grid { grid-template-columns: repeat(2, calc((100% - 20px) / 2)); }
    .cards-container:hover .side-panel { width: 0; pointer-events: none; }
    .past-grid { grid-template-columns: repeat(2, 1fr); }
    #pastCards { padding: 0 20px; }

    /* Light sections */
    .light-section { padding: 50px 0; }
    .past-section { padding: 40px 0 70px; }

    /* Modal */
    .modal { max-height: 95vh; border-radius: 20px; }
    .modal-header { height: 260px; }
    .modal-body { padding: 20px 22px 28px; }
    .modal-title { font-size: 24px; }

    /* Footer */
    footer { grid-template-columns: 1fr; padding: 40px 24px; gap: 24px; }
    .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 6px; text-align: center; }
  }

  /* ── Mobile large (640px) ── */
  @media (max-width: 640px) {
    .hero-tagline h1 { font-size: 30px; }
    .hero-tagline p { font-size: 14px; }
    .logo-circle { width: 130px; height: 130px; }
    .hero-cta { gap: 10px; }
    .btn-primary, .btn-secondary { padding: 12px 22px; font-size: 13px; }

    .section-title-dark { font-size: 26px; }
    .section-title-light { font-size: 24px; }

    .show-card-dark { flex: 0 0 180px; }
    .carousel { gap: 14px; }
  }

  /* ── Mobile (560px) ── */
  @media (max-width: 560px) {
    header { height: 60px; }
    .mobile-nav { top: 60px; }
    .header-logo-text { font-size: 18px; }
    .header-logo-mark { width: 36px; height: 36px; }

    .hero-content { padding: 30px 16px 80px; }
    .hero-left { gap: 22px; }
    .hero-tagline h1 { font-size: 26px; }
    .logo-circle { width: 120px; height: 120px; }
    .logo-glow-ring { inset: -12px; }

    .cards-container { padding: 0 14px; }
    .cards-grid { grid-template-columns: 1fr; gap: 14px; }
    .past-grid { grid-template-columns: 1fr; gap: 14px; }
    #pastCards { padding: 0 14px; }

    .section-header { padding: 0 14px; }
    .rec-header { padding: 30px 14px 16px; }
    .carousel { padding: 10px 14px 20px; }

    .card-title-light { font-size: 14px; }
    .card-title-dark { font-size: 14px; }
    .card-title-past { font-size: 13px; }
    .card-meta-light, .card-meta-dark, .card-meta-past { font-size: 11px; }
    .card-actions { gap: 6px; }
    .btn-details-light, .btn-ticket-light, .btn-soon,
    .btn-details-dark, .btn-ticket-dark { font-size: 11px; padding: 8px 0; }

    .modal { border-radius: 16px; }
    .modal-header { height: 220px; }
    .modal-body { padding: 16px 18px 24px; }
    .modal-title { font-size: 20px; }
    .modal-desc { font-size: 13px; }
    .modal-actions { flex-direction: column; }
    .modal-actions button { width: 100%; }

    footer { padding: 32px 16px; }
    .footer-bottom { padding: 14px 16px; font-size: 11px; }
  }

  /* ── Mobile small (380px) ── */
  @media (max-width: 380px) {
    .hero-tagline h1 { font-size: 22px; }
    .logo-circle { width: 105px; height: 105px; }
    .cards-grid { grid-template-columns: 1fr; }
    .past-grid { grid-template-columns: 1fr; gap: 12px; }
    .show-card-dark { flex: 0 0 160px; }
    .btn-primary, .btn-secondary { padding: 11px 18px; font-size: 12px; }
    .aurora-blob:nth-child(1) { width: 280px; height: 260px; }
    .aurora-blob:nth-child(2) { width: 240px; height: 220px; }
    .aurora-blob:nth-child(3) { width: 200px; height: 200px; }
    .aurora-blob:nth-child(4) { width: 160px; height: 160px; }
  }

  /* ── Disable hover side-panel on touch devices ── */
  @media (hover: none) {
    .cards-container:hover .cards-grid { grid-template-columns: inherit; }
    .cards-container:hover .side-panel { width: 0; pointer-events: none; }
  }

  /* Fade-in animation on scroll */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Shimmer overlay */
  .shimmer {
    position: relative;
    overflow: hidden;
  }
  .shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
    animation: shimmer 3s infinite;
  }
  @keyframes shimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
  }
/* ══ DYNAMIC LOADING STATES ══ */
.section-loading {
  display:flex; align-items:center; justify-content:center;
  padding:60px 20px; color:var(--text3);
  flex-direction:column; gap:12px;
}
.section-loading-spin {
  width:32px; height:32px; border:3px solid rgba(91,63,160,0.15);
  border-top-color:var(--accent); border-radius:50%;
  animation:spinLoad .9s linear infinite;
}
@keyframes spinLoad { to { transform:rotate(360deg); } }
.section-empty {
  text-align:center; padding:60px 20px;
  color:var(--text3); font-size:14px; line-height:1.6;
}
.section-empty svg { opacity:.3; margin-bottom:12px; }

/* Modal background image */
.modal-bg-overlay {
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center;
  filter:blur(8px) brightness(0.4);
  transform:scale(1.05);
}