/* =======================================
   SafeSeats - Main Styles
   ======================================= */


  :root {
    --blue-vivid: #1E3AFF;
    --blue-deep: #08082A;
    --blue-mid: #1525CC;
    --purple: #7B2FE8;
    --white: #FFFFFF;
    --off-white: #F0F0FF;
    --gray: #9090BB;
    --grad: linear-gradient(135deg, #1E3AFF 0%, #7B2FE8 100%);
    --grad-bg: linear-gradient(160deg, #06061e 0%, #0a0a38 40%, #12063a 100%);
  }

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

  html { scroll-behavior: smooth; }
  a { -webkit-tap-highlight-color: transparent; }
  a:focus { outline: none; }
  .nav-logo img { pointer-events: none; }
  .nav-links a:visited { color: var(--gray); }
  .nav-links a:hover { color: var(--white); }
  .nav-cta:visited { color: var(--white); }
  .footer-col ul li a:visited { color: var(--gray); }
  .footer-col ul li a:hover { color: var(--white); }
  .social-link { color: var(--gray) !important; }
  .social-link:visited { color: var(--gray) !important; }
  .social-link:hover { color: var(--white) !important; }

  body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    background: var(--blue-deep);
    color: var(--white);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 60px;
    background: rgba(6,6,28,0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42,42,255,0.15);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; -webkit-tap-highlight-color: transparent; outline: none; user-select: none; }
  .nav-logo img { display: block; -webkit-tap-highlight-color: transparent; }
  .nav-logo svg { width: 38px; height: auto; }
  .nav-logo-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-weight: 800; font-size: 1.3rem;
    color: var(--white);
  }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-size: 0.9rem; font-weight: 400;
    color: var(--gray); text-decoration: none;
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--blue-vivid); color: var(--white);
    border: none; border-radius: 8px;
    padding: 10px 24px; font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-weight: 700; font-size: 0.88rem;
    cursor: pointer; transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
  }
  .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

  /* PRICING STRIP - Animated ticker */
  .pricing-strip {
    background: rgba(30,58,255,0.08);
    border-top: 1px solid rgba(42,42,255,0.15);
    border-bottom: 1px solid rgba(42,42,255,0.15);
    padding: 13px 0;
    overflow: hidden;
    position: relative;
  }
  .pricing-ticker-wrap {
    overflow: hidden;
    width: 100%;
  }
  .pricing-ticker {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
  }
  .pricing-ticker:hover {
    animation-play-state: paused;
  }
  @keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .pricing-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    white-space: nowrap;
    padding: 0 32px;
  }
  .pricing-ticker-dot {
    color: rgba(42,42,255,0.6);
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .pricing-strip-icon {
    color: #42FF80;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 120px 60px 80px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: var(--grad-bg);
  }
  .hero-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    max-width: 480px;
    opacity: 0.045;
    pointer-events: none;
    z-index: 1;
  }
  .hero-watermark img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-orb1 {
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(30,58,255,0.4) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-orb2 {
    position: absolute; bottom: -150px; left: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(123,47,232,0.35) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(42,42,255,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(42,42,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1100px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(42,42,255,0.15); border: 1px solid rgba(42,42,255,0.4);
    border-radius: 100px; padding: 6px 16px;
    font-size: 0.78rem; font-weight: 500; color: #8888FF;
    margin-bottom: 24px; letter-spacing: 0.05em; text-transform: uppercase;
  }
  .hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-vivid); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }

  .hero-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-size: clamp(1.6rem, 4.5vw, 4.2rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 22px;
    white-space: nowrap;
  }
  @media(max-width: 600px) {
    .hero-title { white-space: normal; font-size: clamp(2rem, 8vw, 3rem); }
  }
  .hero-title .accent {
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-subtitle {
    font-size: 1.05rem; line-height: 1.7;
    color: #9999CC; max-width: 480px; margin-bottom: 36px;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--blue-vivid); color: var(--white);
    border: none; border-radius: 10px;
    padding: 14px 30px; font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-weight: 700; font-size: 0.95rem;
    cursor: pointer; transition: all 0.25s;
    text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: #1530DD; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(42,42,255,0.4); }
  .btn-ghost {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2); border-radius: 10px;
    padding: 14px 30px; font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-weight: 600; font-size: 0.95rem;
    cursor: pointer; transition: all 0.25s;
    text-decoration: none; display: inline-block;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

  .hero-visual {
    display: flex; flex-direction: column; gap: 16px;
    animation: floatIn 0.8s ease both 0.3s;
  }
  @keyframes floatIn { from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)} }

  .ticket-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(42,42,255,0.25);
    border-radius: 16px; padding: 22px 26px;
    display: flex; align-items: center; gap: 18px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s;
  }
  .ticket-card:hover { transform: translateX(6px); border-color: rgba(42,42,255,0.5); }
  .ticket-card-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--grad); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.4rem;
  }
  .ticket-card-info { flex: 1; }
  .ticket-card-title { font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
  .ticket-card-sub { font-size: 0.8rem; color: var(--gray); }
  .ticket-card-price {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-weight: 800;
    font-size: 1.1rem; color: #7B8FFF;
  }
  .card-found { border-color: rgba(42,255,128,0.3); }
  .card-found .ticket-card-price { color: #42FF80; }

  /* STATS BAR */
  .stats-bar {
    background: rgba(30,58,255,0.07);
    border-top: 1px solid rgba(42,42,255,0.15);
    border-bottom: 1px solid rgba(42,42,255,0.15);
    padding: 30px 60px;
    display: flex; justify-content: center; gap: 80px;
    flex-wrap: wrap;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-weight: 800;
    font-size: 2.2rem; color: var(--white);
    background: var(--grad); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
  }
  .stat-label { font-size: 0.82rem; color: var(--gray); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

  /* HOW IT WORKS */
  .section { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: #7B8FFF; margin-bottom: 14px;
  }
  .section-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.1;
    margin-bottom: 16px;
  }
  .section-sub { font-size: 1rem; color: var(--gray); max-width: 520px; line-height: 1.7; font-weight: 300; }

  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
  .step-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(42,42,255,0.15);
    border-radius: 20px; padding: 36px 30px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
  .step-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad); opacity: 0; transition: opacity 0.3s;
  }
  .step-card:hover { border-color: rgba(42,42,255,0.4); transform: translateY(-6px); }
  .step-card:hover::before { opacity: 1; }
  .step-num {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-weight: 800;
    font-size: 3.5rem; color: rgba(42,42,255,0.15);
    line-height: 1; margin-bottom: 20px;
  }
  .step-icon { font-size: 2rem; margin-bottom: 16px; }
  .step-title { font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
  .step-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; font-weight: 300; }

  /* BANNER SECTION */
  .banner-section {
    margin: 0 60px;
    border-radius: 24px;
    overflow: hidden; position: relative;
    min-height: 300px;
    display: flex; align-items: center;
  }
  .banner-content { position: relative; z-index: 2; padding: 60px 80px; }
  .banner-content h2 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px;
  }
  .banner-content p { font-size: 0.95rem; opacity: 0.8; max-width: 500px; line-height: 1.7; margin-bottom: 30px; font-weight: 300; }

  /* FORMS SECTION */
  .forms-section {
    padding: 100px 60px;
    background: rgba(10,10,46,0.6);
  }
  .forms-wrapper { max-width: 1100px; margin: 0 auto; }
  .forms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; }

  .form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(42,42,255,0.2);
    border-radius: 24px; padding: 44px 40px;
    position: relative; overflow: hidden;
  }
  .form-card-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad);
  }
  .form-card h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-weight: 800;
    font-size: 1.5rem; margin-bottom: 8px;
  }
  .form-card p { font-size: 0.88rem; color: var(--gray); margin-bottom: 30px; line-height: 1.6; }

  .form-group { margin-bottom: 18px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  label {
    display: block; font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: #8888AA; margin-bottom: 7px;
  }
  input, textarea, select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(42,42,255,0.2);
    border-radius: 10px; padding: 12px 16px;
    color: var(--white); font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-size: 0.9rem; outline: none;
    transition: border-color 0.25s, background 0.25s;
  }
  input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
  input:focus, textarea:focus, select:focus {
    border-color: var(--blue-vivid);
    background: rgba(30,58,255,0.07);
  }
  select option { background: #0d0d3b; }
  textarea { resize: vertical; min-height: 90px; }

  .form-submit {
    width: 100%; margin-top: 8px;
    background: var(--blue-vivid); color: var(--white);
    border: none; border-radius: 10px;
    padding: 14px; font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-weight: 700; font-size: 0.95rem;
    cursor: pointer; transition: all 0.25s;
  }
  .form-submit:hover { background: #1530DD; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(42,42,255,0.4); }
  .form-submit:active { transform: translateY(0); }

  .form-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center; margin-top: 12px; }

  .success-msg {
    display: none;
    background: rgba(42,255,128,0.1); border: 1px solid rgba(42,255,128,0.3);
    border-radius: 10px; padding: 14px; margin-top: 12px;
    font-size: 0.88rem; color: #42FF80; text-align: center;
  }

  /* FAQ SECTION */
  .faq-section {
    padding: 100px 60px;
    max-width: 900px; margin: 0 auto;
  }
  .faq-banner {
    border-radius: 20px; overflow: hidden;
    margin-bottom: 60px; position: relative;
    min-height: 220px;
    display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center;
  }

  .faq-list { display: flex; flex-direction: column; gap: 2px; }
  .faq-item {
    border: 1px solid rgba(42,42,255,0.18);
    border-radius: 14px; overflow: hidden;
    margin-bottom: 8px;
    transition: border-color 0.25s;
  }
  .faq-item:hover { border-color: rgba(42,42,255,0.4); }
  .faq-q {
    width: 100%; background: rgba(255,255,255,0.03);
    border: none; color: var(--white);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-weight: 600; font-size: 1rem;
    padding: 20px 24px; text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.2s;
  }
  .faq-q:hover { background: rgba(255,255,255,0.05); }
  .faq-q.open { background: rgba(42,42,255,0.1); }
  .faq-arrow { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
  .faq-q.open .faq-arrow { transform: rotate(180deg); }
  .faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.9rem; color: var(--gray); line-height: 1.75; font-weight: 300;
    background: rgba(42,42,255,0.05);
  }

  /* FOOTER */
  footer {
    background: rgba(4,4,18,0.95);
    border-top: 1px solid rgba(42,42,255,0.15);
    padding: 60px;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
  .footer-brand p { font-size: 0.85rem; color: var(--gray); margin-top: 14px; max-width: 280px; line-height: 1.7; font-weight: 300; }
  .footer-col h4 { font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 0.85rem; color: var(--gray); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom {
    max-width: 1200px; margin: 40px auto 0;
    padding-top: 28px; border-top: 1px solid rgba(42,42,255,0.1);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.3);
  }

  /* MOBILE */
  @media(max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { padding: 100px 24px 60px; }
    .hero-content { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .stats-bar { padding: 24px; gap: 40px; }
    .section { padding: 60px 24px; }
    .steps-grid { grid-template-columns: 1fr; }
    .banner-section { margin: 0 24px; }
    .banner-content { padding: 40px 32px; }
    .forms-section { padding: 60px 24px; }
    .forms-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .faq-section { padding: 60px 24px; }
    .faq-banner { flex-direction: column; gap: 20px; padding: 36px 32px; }
    footer { padding: 40px 24px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }


/* =======================================
   Events Section
   ======================================= */


  .events-section { padding: 0 0 80px; }
  .event-block {
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }

  .event-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(42,42,255,0.2);
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    background: rgba(10,10,40,0.6);
    position: relative;
  }
  .event-card:hover {
    border-color: rgba(42,42,255,0.55);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    transform: translateY(-3px);
  }
  .event-card-inner { width: 100%; position: relative; }

  /* Front and maps sit on top of each other, crossfade with opacity */
  .event-card-front {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  .event-card.maps-open .event-card-front {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0; left: 0; right: 0;
  }
  .event-card-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .event-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,5,40,0.92) 0%, rgba(5,5,40,0.2) 55%, transparent 100%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
  }
  .event-artist-tag {
    display: inline-block;
    background: var(--blue-vivid); color: white;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px;
    margin-bottom: 10px; width: fit-content;
  }
  .event-card-title {
    font-weight: 800; font-size: 1.5rem;
    line-height: 1.1; color: white; margin-bottom: 8px;
  }
  .event-card-hint {
    font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 400;
  }

  /* Maps: always rendered, fades in over the front */
  .event-card-maps {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    position: absolute;
    top: 0; left: 0; right: 0;
  }
  .event-card.maps-open .event-card-maps {
    opacity: 1;
    pointer-events: auto;
    position: relative;
  }

  .event-map-item { width: 100%; border-bottom: 1px solid rgba(42,42,255,0.15); }
  .event-map-img { width: 100%; display: block; object-fit: cover; }
  .event-venue-footer {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px 10px;
    background: rgba(20,30,90,0.6);
  }
  .event-venue-date { font-size: 0.78rem; font-weight: 600; color: #9090FF; }
  .event-venue-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
  .event-venue-name { font-size: 0.84rem; font-weight: 700; color: white; }
  .event-venue-badges {
    display: flex; flex-wrap: wrap; gap: 5px;
    padding: 8px 14px 14px;
  }
  .event-dates-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 12px;
    border-top: 1px solid rgba(42,42,255,0.12);
  }
  .event-dates-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7B8FFF;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 10px;
    border-right: 1px solid rgba(42,42,255,0.2);
  }
  .event-dates-text {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    line-height: 1.4;
  }

  /* Also on event detail page */
  .ep-dates-container {
    margin-bottom: 28px;
  }
  .ep-dates-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7B8FFF;
    margin-bottom: 14px;
  }
  .ep-dates-month {
    margin-bottom: 16px;
  }
  .ep-dates-month-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
  .ep-dates-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .ep-date-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 58px;
    border-radius: 10px;
    background: rgba(30,58,255,0.08);
    border: 1px solid rgba(42,42,255,0.2);
    color: white;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    padding: 0;
    gap: 2px;
  }
  .ep-date-pill:hover {
    background: rgba(30,58,255,0.22);
    border-color: rgba(42,42,255,0.55);
    transform: translateY(-2px);
  }
  .ep-date-pill.selected {
    background: var(--blue-vivid);
    border-color: var(--blue-vivid);
    box-shadow: 0 4px 16px rgba(30,58,255,0.5);
    transform: translateY(-2px);
  }
  .ep-date-dow {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
  }
  .ep-date-pill.selected .ep-date-dow {
    color: rgba(255,255,255,0.8);
  }
  .ep-date-num {
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    line-height: 1;
  }
  .ep-dates-hint {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin-top: 10px;
    margin-bottom: 0;
  }

  .event-badge {
    font-size: 0.65rem; font-weight: 600;
    padding: 3px 9px; border-radius: 100px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    text-transform: uppercase; letter-spacing: 0.06em;
  }
  .event-badge.available {
    background: rgba(42,255,128,0.1);
    border-color: rgba(42,255,128,0.3);
    color: #42FF80;
  }
  .event-maps-cta {
    padding: 16px;
    background: rgba(10,10,40,0.8);
    display: flex; justify-content: center;
    border-top: 1px solid rgba(42,42,255,0.15);
  }

  @media(max-width:1024px) {
    .event-block { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }
  }
  @media(max-width:600px) {
    .event-block { padding: 0 24px; grid-template-columns: 1fr; }
  }


/* =======================================
   Event Detail Page
   ======================================= */


  #eventPage {
    position: fixed; inset: 0;
    background: linear-gradient(160deg, #06061e 0%, #0a0a38 40%, #12063a 100%);
    z-index: 1000;
    overflow-y: auto;
    animation: epSlideIn 0.35s ease;
  }
  @keyframes epSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .ep-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 60px;
    background: rgba(6,6,28,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42,42,255,0.1);
    position: sticky; top: 0; z-index: 10;
  }
  .ep-back {
    display: flex; align-items: center; gap: 7px;
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px; color: rgba(255,255,255,0.75); cursor: pointer;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-size: 0.75rem; font-weight: 500;
    padding: 7px 13px;
    transition: border-color 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: 0.01em;
  }
  .ep-back:hover { border-color: rgba(255,255,255,0.3); color: white; }
  .ep-back svg { width: 14px; height: 14px; opacity: 0.7; }

  @media(max-width:600px) {
    .ep-header {
      padding: 12px 20px;
      gap: 16px;
    }
    .ep-back {
      font-size: 0.7rem;
      padding: 6px 11px;
      gap: 6px;
      flex-shrink: 0;
    }
    .ep-header img {
      height: 24px !important;
    }
  }

  .ep-body {
    max-width: 1300px; margin: 0 auto;
    padding: 48px 60px 80px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 52px;
    align-items: start;
  }
  .ep-tag {
    display: inline-block;
    background: var(--blue-vivid); color: white;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 100px;
    margin-bottom: 14px;
  }
  .ep-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1; color: white;
    margin-bottom: 32px;
  }
  .ep-maps { display: flex; flex-direction: column; gap: 20px; }
  .ep-map-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(42,42,255,0.2);
    border-radius: 16px; overflow: hidden;
    width: 100%;
  }
  .ep-map-item img { width: 100%; display: block; }
  .ep-map-footer {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px 12px;
    background: rgba(20,30,90,0.6);
  }
  .ep-map-date { font-size: 0.82rem; font-weight: 600; color: #9090FF; }
  .ep-map-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
  .ep-map-venue { font-size: 0.9rem; font-weight: 700; color: white; }
  .ep-map-badges {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding: 10px 16px 16px;
  }
  .ep-map-badges .event-badge {
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  }
  .ep-map-badges .event-badge:hover {
    background: rgba(30,58,255,0.25);
    border-color: rgba(30,58,255,0.7);
    color: #ffffff;
    transform: translateY(-1px);
  }
  .ep-map-badges .event-badge.available:hover {
    background: rgba(42,255,128,0.22);
    border-color: rgba(42,255,128,0.6);
    color: #42FF80;
  }

  .ep-dates-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .ep-dates-header .ep-dates-section-label { margin-bottom: 0; }
  .ep-any-btn {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .ep-any-btn:hover, .ep-any-btn.active {
    background: var(--blue-vivid);
    border-color: var(--blue-vivid);
  }
  .ep-map-item {
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .ep-map-item:hover {
    border-color: rgba(42,42,255,0.5) !important;
    box-shadow: 0 0 0 2px rgba(42,42,255,0.2);
  }
  .ep-map-item.venue-selected {
    border-color: var(--blue-vivid) !important;
    box-shadow: 0 0 0 3px rgba(30,58,255,0.3);
  }
  .ep-map-item.venue-selected .ep-map-footer {
    background: rgba(30,58,255,0.3);
  }

  /* Venue map carousel */
  .ep-carousel {
    position: relative;
    margin-bottom: 28px;
  }
  /* Viewport clips the sliding track */
  .ep-carousel-viewport {
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
  }
  /* Track holds all slides side by side, transforms to slide */
  .ep-carousel-track {
    display: flex;
    width: 100%;
    will-change: transform;
  }
  .ep-carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
  }
  .ep-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
  }
  .ep-carousel-btn {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: white; cursor: pointer;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    flex-shrink: 0;
  }
  .ep-carousel-btn:hover {
    background: rgba(30,58,255,0.2);
    border-color: rgba(42,42,255,0.5);
  }
  .ep-carousel-dots {
    display: flex; gap: 8px; align-items: center;
  }
  .ep-carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none; cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s, width 0.2s;
  }
  .ep-carousel-dot.active {
    background: var(--blue-vivid);
    width: 22px;
    border-radius: 4px;
  }

  /* Single venue - no carousel styling needed */
  .ep-carousel:not(.has-carousel) .ep-carousel-track {
    border-radius: 16px;
  }
  .ep-carousel:not(.has-carousel) .ep-carousel-slide {
    width: 100%;
    min-width: 100%;
  }

  /* Venue selector strip */
  .ep-venue-strip-container {
    margin-bottom: 24px;
  }
  .ep-venue-strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .ep-venue-strip-header .ep-dates-section-label { margin-bottom: 0; }
  .ep-venue-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .ep-venue-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(42,42,255,0.2);
    background: rgba(30,58,255,0.06);
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .ep-venue-chip:hover {
    background: rgba(30,58,255,0.18);
    border-color: rgba(42,42,255,0.5);
    color: white;
    transform: translateY(-1px);
  }
  .ep-venue-chip.selected {
    background: var(--blue-vivid);
    border-color: var(--blue-vivid);
    color: white;
    box-shadow: 0 4px 14px rgba(30,58,255,0.4);
  }

  .ep-right { position: sticky; top: 88px; }
  .ep-form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(42,42,255,0.2);
    border-radius: 24px;
    padding: 36px 32px;
    position: relative; overflow: hidden;
  }
  .ep-form-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(135deg, #1E3AFF 0%, #7B2FE8 100%);
  }
  .ep-form-card h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-weight: 800; font-size: 1.3rem; margin-bottom: 8px; color: white;
  }
  .ep-form-card p { font-size: 0.86rem; color: var(--gray); margin-bottom: 24px; line-height: 1.6; }

  @media(max-width:960px) {
    .ep-header { padding: 12px 24px; }
    .ep-body { grid-template-columns: 1fr; padding: 32px 24px 60px; gap: 32px; }
    .ep-right { position: static; }
  }

