
  :root {
    --ink:       #0e0d0b;
    --surface:   #141210;
    --lane:      #1c1a15;
    --panel:     #211f19;
    --border:    #2e2b22;
    --muted:     #6b6555;
    --cream:     #f0ead8;
    --cream-dim: #bfb89e;
    --gold:      #d4a832;
    --gold-dim:  #8a6b18;
    --gold-glow: #e8c66040;
    --pin-white: #f5f0e4;
    --red:       #8b2020;
    --radius:    10px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--surface);
    color: var(--cream);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(14,13,11,0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  nav.scrolled { border-color: var(--border); }
  .nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 1.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  @media (max-width: 500px) { .nav-links { display: none; } }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    background: radial-gradient(ellipse at 50% 65%, #1e1a0f 0%, var(--surface) 70%);
  }

  /* Lane perspective background */
  .lane-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.18;
  }
  .lane-bg::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 320px; height: 100%;
    background: linear-gradient(to top, #2a2416 0%, #1e1a0e 28%, transparent 72%);
  }
  .lane-lines {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 320px; height: 68%;
    display: none;
  }
  .lane-lines span {
    flex: 1;
    border-right: 1px solid #2c2618;
    opacity: 0.55;
  }
  .lane-arrows {
    position: absolute;
    bottom: 26%; left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 20px;
  }
  .lane-arrows i {
    display: block;
    width: 7px; height: 16px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    opacity: 0.5;
  }

  /* Bowler silhouette */
  .bowler-wrap {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 240px;
    opacity: 0.16;
    pointer-events: none;
  }
  .bowler-wrap svg { width: 100%; height: auto; }

  /* Canvas for pin animation */

  /* STRIKE banner */

  /* Hero content */
  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.92;
    text-align: center;
    letter-spacing: 0.03em;
    color: var(--cream);
    position: relative;
    z-index: 10;
    text-shadow: 0 4px 40px rgba(0,0,0,0.9);
    max-width: 900px;
  }
  .hero-title em { color: var(--gold); font-style: normal; }
  .hero-subtitle {
    margin-top: 1.25rem;
    font-size: 1.05rem;
    color: var(--cream-dim);
    text-align: center;
    max-width: 480px;
    position: relative;
    z-index: 10;
  }

  /* Badge row */
  .badge-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
  }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1rem;
    border: 1.5px solid var(--gold);
    border-radius: 60px;
    background: rgba(212,168,50,0.07);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    box-shadow: 0 0 18px var(--gold-glow);
  }
  .badge.usbc {
    border-color: #3a7fc1;
    background: rgba(58,127,193,0.08);
    color: #6aabf0;
    box-shadow: 0 0 18px rgba(58,127,193,0.2);
  }
  .badge svg { width: 16px; height: 16px; flex-shrink: 0; }

  .hero-cta {
    margin-top: 2.25rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 10;
  }

  /* Buttons */
  .btn-primary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--gold);
    color: #0e0d0b;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(212,168,50,0.35);
    font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover {
    background: #e8c660;
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(212,168,50,0.5);
  }
  .btn-secondary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border: 1.5px solid var(--border);
    color: var(--cream-dim);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
  }
  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  .scroll-hint {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 10;
    animation: fadeUpIn 1s 1.2s both;
  }
  .scroll-hint-line {
    width: 1px; height: 28px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scrollPulse 2.2s 2.5s infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity:0.35; transform:scaleY(1); }
    50% { opacity:1; transform:scaleY(1.25); }
  }
  @keyframes fadeUpIn {
    from { opacity:0; transform:translateX(-50%) translateY(10px); }
    to   { opacity:1; transform:translateX(-50%) translateY(0); }
  }

  /* ─── SHARED SECTION STYLES ─── */
  section { padding: 5rem 1.5rem; }
  .container { max-width: 1000px; margin: 0 auto; }
  .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1;
    color: var(--cream);
    margin-bottom: 1.25rem;
  }
  .divider {
    width: 48px; height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1.5rem 0;
  }

  /* ─── USBC SANCTIONED BANNER ─── */
  .usbc-banner {
    background: linear-gradient(90deg, #0d1e35, #0f2540, #0d1e35);
    border-top: 1px solid #1e3a5f;
    border-bottom: 1px solid #1e3a5f;
    padding: 1.1rem 1.5rem;
    text-align: center;
  }
  .usbc-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
  }
  .usbc-shield {
    flex-shrink: 0;
  }
  .usbc-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    color: #6aabf0;
    margin-bottom: 0.15rem;
  }
  .usbc-text p {
    font-size: 0.8rem;
    color: #4a7aaa;
    line-height: 1.5;
  }
  .usbc-text strong { color: #8ec4f8; }

  /* ─── SEASON ─── */
  .season-section { background: var(--lane); }
  .season-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2rem;
  }
  @media (max-width: 640px) { .season-grid { grid-template-columns: 1fr; } }
  .info-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .info-list li .info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
  .info-list li strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
  }
  .info-list li span { font-size: 1rem; color: var(--cream); }

  /* ─── PRIZES ─── */
  .prize-section { background: var(--surface); }
  .prize-podium {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    align-items: end;
  }
  @media (max-width: 580px) {
    .prize-podium { grid-template-columns: 1fr; align-items: start; }
    .prize-card.first { order: -1; }
  }
  .prize-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
  }
  .prize-card:hover { transform: translateY(-4px); }
  .prize-card.first {
    border-color: var(--gold);
    background: linear-gradient(160deg, #1e1a0e, var(--panel));
    box-shadow: 0 0 40px rgba(212,168,50,0.15);
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .prize-card.first::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
  }
  .prize-rank {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 0.4rem;
  }
  .prize-card.first .prize-rank { color: var(--gold); }
  .prize-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--cream);
    line-height: 1;
  }
  .prize-card.first .prize-amount {
    font-size: clamp(3rem, 7vw, 5rem);
    color: var(--gold);
  }
  .prize-label { font-size: 0.72rem; color: var(--cream-dim); margin-top: 0.4rem; }
  .prize-everyone {
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
  .prize-everyone .pe-icon { font-size: 1.8rem; flex-shrink: 0; }
  .prize-everyone p { font-size: 0.95rem; color: var(--cream-dim); line-height: 1.5; }
  .prize-everyone strong { color: var(--cream); }

  /* ─── EXTRAS ─── */
  .extras-section { background: var(--lane); }
  .extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }
  @media (max-width: 600px) { .extras-grid { grid-template-columns: 1fr; } }
  .extra-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
  }
  .extra-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
  .extra-icon { font-size: 2rem; margin-bottom: 0.75rem; }
  .extra-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    margin-bottom: 0.5rem;
  }
  .extra-body { font-size: 0.88rem; color: var(--cream-dim); line-height: 1.6; }

  /* ─── STRING PIN ─── */
  .stringpin-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stringpin-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  @media (max-width: 640px) { .stringpin-inner { grid-template-columns: 1fr; } }
  .stringpin-visual { display: flex; justify-content: center; align-items: center; }
  .stringpin-copy p {
    font-size: 0.95rem;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .stringpin-copy ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .stringpin-copy li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--cream-dim);
  }
  .stringpin-copy li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0; }

  /* ─── VENUE ─── */
  .venue-section { background: var(--lane); }
  .venue-card {
    margin-top: 2rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  @media (max-width: 640px) { .venue-card { grid-template-columns: 1fr; } }
  .venue-lane-visual {
    background: linear-gradient(160deg, #1a1710, #0e0c08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    position: relative;
    overflow: hidden;
  }
  .venue-info { padding: 2rem 1.75rem; }
  .venue-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--cream);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }
  .venue-name em { color: var(--gold); font-style: normal; }
  .venue-details { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
  .venue-details li {
    font-size: 0.9rem;
    color: var(--cream-dim);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .venue-details li span:first-child { color: var(--gold); flex-shrink: 0; font-size: 1rem; }

  /* ─── RULES ─── */
  .rules-section { background: var(--surface); }
  .rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  @media (max-width: 600px) { .rules-grid { grid-template-columns: 1fr; } }
  .rule-item {
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--panel);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .rule-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
  }
  .rule-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--cream); margin-bottom: 0.2rem; }
  .rule-text span { font-size: 0.82rem; color: var(--cream-dim); line-height: 1.55; }

  /* ─── CTA ─── */
  .cta-section { background: var(--lane); text-align: center; }
  .cta-box {
    background: linear-gradient(135deg, #1a1710, #111009);
    border: 1px solid var(--gold-dim);
    border-radius: 16px;
    padding: 3.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(212,168,50,0.08);
  }
  .cta-box .section-heading { margin-bottom: 0.75rem; }
  .cta-box p { font-size: 0.95rem; color: var(--cream-dim); margin-bottom: 2rem; line-height: 1.65; }
  .cta-box .btn-primary { font-size: 1rem; padding: 1rem 2.75rem; }
  .cta-phone { margin-top: 1.5rem; font-size: 0.85rem; color: var(--muted); }
  .cta-phone a { color: var(--gold); text-decoration: none; }
  .cta-phone a:hover { text-decoration: underline; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border);
  }
  footer p { font-size: 0.78rem; color: var(--muted); line-height: 1.9; }
  footer strong { color: var(--cream-dim); }
  .footer-usbc {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid #1e3a5f;
    border-radius: 4px;
    font-size: 0.7rem;
    color: #4a7aaa;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .footer-usbc svg { width: 14px; height: 14px; }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── REGISTRATION MODAL ─── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }
  .modal-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  .modal {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 60px rgba(212,168,50,0.06);
  }
  .modal-overlay.open .modal {
    transform: scale(1) translateY(0);
  }
  .modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 1.2rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, color 0.2s;
  }
  .modal-close:hover { border-color: var(--gold); color: var(--gold); }
  .modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: var(--cream);
    margin-bottom: 0.35rem;
  }
  .modal-title em { color: var(--gold); font-style: normal; }
  .modal-sub {
    font-size: 0.82rem;
    color: var(--cream-dim);
    margin-bottom: 0.5rem;
    line-height: 1.55;
  }
  .modal-usbc-note {
    font-size: 0.75rem;
    color: #4a7aaa;
    background: rgba(58,127,193,0.08);
    border: 1px solid #1e3a5f;
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  .modal-usbc-note strong { color: #6aabf0; }
  .form-divider {
    width: 100%; height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
  }
  .form-group {
    margin-bottom: 1.1rem;
  }
  .form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }
  .form-input {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-input:focus {
    border-color: var(--gold-dim);
    box-shadow: 0 0 0 3px rgba(212,168,50,0.12);
  }
  .form-input::placeholder { color: var(--muted); }
  .input-with-status { display: flex; gap: .35rem; align-items: stretch; }
  .input-with-status .form-input { min-width: 0; flex: 1; }
  .field-option { border: 1px solid var(--gold-dim); border-radius: 7px; background: rgba(212,168,50,.12); color: var(--gold); padding: 0 .55rem; font: inherit; cursor: pointer; white-space: nowrap; }
  .field-option:hover, .field-option:focus-visible { background: rgba(212,168,50,.24); outline: 2px solid rgba(212,168,50,.35); outline-offset: 1px; }
  .bowler-block {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.1rem 1.1rem 0.5rem;
    margin-bottom: 1rem;
  }
  .bowler-block-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.85rem;
  }
  .bowler-block.required-female .bowler-block-title {
    color: var(--gold);
  }
  .bowler-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  @media (max-width: 480px) { .bowler-fields { grid-template-columns: 1fr; } }
  .modal-submit-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
    align-items: center;
  }
  .modal-note {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.5;
    flex: 1;
    min-width: 180px;
  }
  .modal-note a { color: var(--gold-dim); }

  @media (prefers-reduced-motion: reduce) {
    .reveal { animation: none; transition: none; opacity: 1; transform: none; }

  .venue-card { grid-template-columns: 0.9fr 1.1fr; overflow: hidden; }
  .venue-card { grid-template-columns: 0.85fr 1.15fr; overflow: hidden; }
  .honeypot-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
  .venue-name a { color: inherit; text-decoration: none; }
  .venue-details a { color: inherit; text-decoration: none; }
  .venue-details a:hover { color: #d4a832; }
  .league-logo { width: 96px; height: 96px; object-fit: contain; display: block; filter: drop-shadow(0 10px 24px rgba(0,0,0,.35)); }
  .nav-brand { display: inline-flex; align-items: center; gap: .6rem; }
  .nav-brand .league-logo { width: 34px; height: 34px; filter: none; }
  .hero-logo { position: relative; z-index: 2; margin: 0 auto .65rem; width: 96px; height: 96px; max-width: 96px; max-height: 96px; object-fit: contain; }
  @media (max-width: 640px) {
    .hero { min-height: 720px; padding-top: 6rem; padding-bottom: 4rem; overflow-y: auto; }
    .hero-logo { width: 72px; height: 72px; max-width: 72px; max-height: 72px; margin-bottom: .5rem; }
    .hero-title { font-size: clamp(2.7rem, 14vw, 4.5rem); }
    .hero-subtitle { font-size: .95rem; max-width: 340px; }
    .badge-row { margin-top: 1rem; }
    .hero-cta { margin-top: 1.25rem; }
  }
  @media (max-width: 760px) { .venue-card { grid-template-columns: 1fr; } }

