

/* ── RESET & BASE ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red:    #FE2A29;
    --dark-red: #C41010;
    --black:  #000000;
    --white:  #FFFFFF;
    --gray:   #111111;
    --dim:    #888888;
  }



  /* Demo trigger button */
  .demo-btn {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 1px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(254,42,41,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .demo-btn:hover { transform: translateX(-50%) scale(1.05); box-shadow: 0 6px 28px rgba(254,42,41,0.7); }

  /* ── OVERLAY ── */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .overlay.active { opacity: 1; visibility: visible; }

  /* ── POPUP CARD ── */
  .popup {
    position: relative;
    width: min(780px, 96vw);
    min-height: 420px;
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0,0,0,0.9), 0 0 0 1px rgba(254,42,41,0.3);
    transform: scale(0.88) translateY(30px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
    display: flex;
  }
  .overlay.active .popup { transform: scale(1) translateY(0); opacity: 1; }

  /* ── LEFT PANEL – visual ── */
  .panel-left {
    width: 55%;
    position: relative;
    overflow: hidden;
    background: #0a0000;
    flex-shrink: 0;
  }

  /* Stage floor gradient */
  .panel-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(254,42,41,0.18) 0%,
      rgba(0,0,0,0.5) 30%,
      rgba(0,0,0,0.1) 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  /* Background image placeholder – swap src in .bg-img for real image */
  .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.45) saturate(0.7);
    z-index: 0;
  }

  /* SVG crowd fallback (shown when no image) */
  .crowd-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }

  /* Spotlights */
  .spotlights {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }
  .spot {
    position: absolute;
    top: -10px;
    width: 0;
    height: 0;
    border-left: solid transparent;
    border-right: solid transparent;
    border-top: solid;
    opacity: 0;
    transform-origin: top center;
    animation: spotFade 3s ease-in-out infinite alternate;
  }
  .spot-1 { left: 14%; border-left-width: 18px; border-right-width: 18px; border-top-width: 320px; border-top-color: rgba(254,42,41,0.12); animation-delay: 0s; }
  .spot-2 { left: 38%; border-left-width: 22px; border-right-width: 22px; border-top-width: 340px; border-top-color: rgba(255,80,80,0.09); animation-delay: 0.6s; }
  .spot-3 { left: 62%; border-left-width: 18px; border-right-width: 18px; border-top-width: 310px; border-top-color: rgba(254,42,41,0.11); animation-delay: 1.1s; }
  .spot-4 { left: 82%; border-left-width: 14px; border-right-width: 14px; border-top-width: 280px; border-top-color: rgba(255,60,60,0.08); animation-delay: 0.3s; }

  @keyframes spotFade {
    0%   { opacity: 0.4; }
    100% { opacity: 1; }
  }

  /* Stage floor line */
  .stage-line {
    position: absolute;
    bottom: 68px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(254,42,41,0.6), rgba(255,160,160,0.4), rgba(254,42,41,0.6), transparent);
    z-index: 3;
    animation: glow 2s ease-in-out infinite alternate;
  }
  @keyframes glow {
    from { box-shadow: 0 0 8px rgba(254,42,41,0.4); }
    to   { box-shadow: 0 0 24px rgba(254,42,41,0.9), 0 0 40px rgba(254,42,41,0.3); }
  }

  /* Bottom red gradient floor */
  .floor-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to top, rgba(254,42,41,0.25), transparent);
    z-index: 3;
  }

  /* LIVE badge */
  .live-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--red);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
  }
  .live-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

  /* City tags on image */
  .city-tags {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
  }
  .city-tag {
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(254,42,41,0.5);
    border-radius: 6px;
    padding: 5px 10px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.4;
    backdrop-filter: blur(4px);
  }
  .city-tag span {
    display: block;
    color: var(--red);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* ── RIGHT PANEL – content ── */
  .panel-right {
    flex: 1;
    background: var(--black);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }

  /* Top-right red corner accent */
  .panel-right::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-top: 70px solid var(--red);
    border-left: 70px solid transparent;
  }
  /* FREE text inside corner */
  .free-corner {
    position: absolute;
    top: 8px;
    right: 4px;
    color: #fff;
    font-family: 'Bebas Neue', cursive;
    font-size: 13px;
    letter-spacing: 1px;
    z-index: 2;
    transform: rotate(0deg);
  }

  /* Red bottom strip */
  .panel-right::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--red);
  }

  /* Content sections */
  .eyebrow {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .headline {
    font-family: 'Bebas Neue', cursive;
    line-height: 1;
    margin-bottom: 6px;
  }
  .headline .line1 {
    font-size: 22px;
    color: var(--white);
    display: block;
    letter-spacing: 1px;
  }
  .headline .line2 {
    font-size: 34px;
    color: var(--red);
    display: block;
    letter-spacing: 2px;
    line-height: 0.95;
  }
  .headline .line3 {
    font-size: 26px;
    color: var(--white);
    display: block;
    letter-spacing: 1px;
  }

  .subtext {
    font-size: 12px;
    color: #aaa;
    line-height: 1.55;
    margin: 12px 0 18px;
    font-weight: 400;
    max-width: 260px;
  }
  .subtext strong { color: #fff; font-weight: 600; }

  /* Divider */
  .divider {
    width: 48px;
    height: 2px;
    background: var(--red);
    margin: 14px 0;
  }

  /* Stats row */
  .stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
  }
  .stat {
    text-align: center;
  }
  .stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: var(--red);
    line-height: 1;
  }
  .stat-label {
    font-size: 9px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .stat-sep {
    width: 1px;
    background: rgba(255,255,255,0.1);
    align-self: stretch;
  }

  /* CTA Button */
  .cta-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--red);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(254,42,41,0.45);
  }
  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
  }
  .cta-btn:hover::before { left: 160%; }
  .cta-btn:hover {
    background: #e01c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(254,42,41,0.65);
  }
  .cta-btn:active { transform: translateY(0); }

  .cta-note {
    text-align: center;
    font-size: 10px;
    color: #555;
    margin-top: 8px;
    letter-spacing: 0.5px;
  }
  .cta-note a {
    color: #888;
    text-decoration: underline;
    font-size: 9px;
  }

  /* ── CLOSE BUTTON ── */
  .close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
  }
  .close-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }

  /* ── TOP TICKER ── */
  .ticker-wrap {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 28px;
    background: var(--red);
    overflow: hidden;
    z-index: 6;
  }
  .ticker-inner {
    display: flex;
    height: 100%;
    align-items: center;
    white-space: nowrap;
    animation: ticker 18s linear infinite;
  }
  .ticker-inner span {
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 30px;
  }
  .ticker-sep { color: rgba(255,255,255,0.5); font-size: 8px; }
  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    .popup { flex-direction: column; min-height: auto; }
    .panel-left { width: 100%; height: 200px; }
    .panel-right { padding: 24px 20px 24px; }
    .headline .line2 { font-size: 28px; }
    .stats { gap: 10px; }
    .city-tags { gap: 5px; }
    .city-tag { padding: 4px 8px; font-size: 9px; }
  }