:root {
  --bg: #ffffff;
  --bg2: #f6f7fb;
  --text: #0e1116;
  --muted: #6b7280;
  --card: #ffffff;
  --border: #e7e9f0;

  --nav: #0b0f16;
  --navText: #e5e7eb;

  --green: #176306;
  --green2: #045d12;

  --green: #16854d;
  --pill: #eef2ff;

  --shadow: 0 10px 24px rgba(13, 17, 23, 0.08);
  --shadow2: 0 18px 44px rgba(13, 17, 23, 0.1);
  --radius: 18px;
  --radius2: 24px;
  --max: 1160px;
}

[data-theme="dark"] {
  --bg: #0c111a;
  --bg2: #0f1623;
  --text: #e6e9ef;
  --muted: #9aa3b2;
  --card: #0f1724;
  --border: #1f2a3a;

  --nav: #070a10;
  --navText: #e6e9ef;

  --shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  --shadow2: 0 18px 44px rgba(0, 0, 0, 0.55);
}

/* =========================
   RESPONSIVE FIXES (ADDED)
========================= */

/* stop surprise overflow + make sizing consistent */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* make images/iframes never exceed container */
img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* make container fluid on all widths */
.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding-inline: clamp(12px, 3vw, 18px);
}

/* make big text scale more smoothly */
.hero-title {
  font-size: clamp(30px, 5vw, 46px);
}

/* make strip + grid layouts fluid (breakpoint-independent) */
.strip-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* allow nav row to wrap so it doesn't overflow */
.nav-inner {
  flex-wrap: wrap;
}
.nav-right {
  flex-wrap: wrap;
}

/* mobile hero buttons full width */
@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    white-space: normal;
  }

  /* schedule controls stack nicely */
  .schedule-controls select,
  .schedule-controls button {
    width: 100%;
  }

  /* modal tighter */
  .modal-panel {
    width: 94vw;
    margin: 3vh auto;
    border-radius: 16px;
  }
}

/* =========================
   YOUR ORIGINAL CSS CONTINUES
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.4;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
/* NOTE: container is overridden above for responsiveness */
.muted {
  color: var(--muted);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
}
.chip.green {
  background: rgba(31, 183, 107, 0.12);
  border-color: rgba(31, 183, 107, 0.35);
  color: var(--green);
}
.chip.green {
  background: rgba(0, 255, 38, 0.12);
  border-color: rgba(2, 98, 15, 0.35);
  color: var(--green);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.primary {
  border: none;
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: white;
  padding: 13px 22px;
  box-shadow: none;
}
.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--navText);
  box-shadow: none;
}
.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  fill: currentColor;
}

/* NAV */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    var(--nav);
  color: var(--navText);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.brand-mark span {
  font-size: 12px;
  color: #111;
  background: #fff;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.95;
}
.nav-links a {
  padding: 8px 8px;
  border-radius: 10px;
  color: var(--navText);
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--navText);
  font-weight: 600;
  font-size: 12px;
}
.switch {
  width: 48px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #dbe1ea);
  transition: left 0.18s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
[data-theme="dark"] .knob {
  left: 26px;
}
.cta-nav {
  padding: 10px 14px;
}

.cta-link {
  color: #00b931;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.cta-link:hover {
  text-decoration: underline;
  filter: brightness(1.1);
}

.mobile-menu-btn {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--navText);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 700;
}

/* HERO */
.hero {
  padding: 44px 0 22px;
  background: radial-gradient(
      1200px 480px at 50% -180px,
      rgba(255, 106, 0, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg), var(--bg2));
  border-bottom: 1px solid var(--border);
  margin-top: 30px;
}
.hero-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0 10px;
}
.logo {
  width: 60px;
  height: 60px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-mid {
  text-align: center;
  padding: 14px 0 10px;
}
/* NOTE: hero-title is overridden above with clamp() */
.hero-title {
  font-size: 46px;
  letter-spacing: -1px;
  margin: 14px 0 8px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-desc {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: 13px;
  color: var(--muted);
  text-align: justify;
  text-align-last: center;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-qr {
  margin: 18px auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.hero-qr img {
  display: block;
  width: 140px;
  height: 140px;
}
.hero-qr-caption {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #111;
}
.hero-mini {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.hero-mini a {
  color: var(--muted);
  font-weight: 600;
}
.hero-mini a:hover {
  color: var(--text);
}
.divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--border);
}

/* INFO STRIP */
.strip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  margin: 18px auto 0;
  padding: 16px 16px;
}
.strip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.strip-item {
  display: flex;
  flex: 1 1 200px;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}
[data-theme="dark"] .strip-item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.03)
  );
}
.strip-ic {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(0, 255, 38, 0.12);
  border: 1px solid rgba(0, 255, 89, 0.22);
  display: grid;
  place-items: center;
  color: var(--green);
  flex: 0 0 auto;
}
.strip-k {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}
.strip-v {
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

/* SECTIONS */
.section {
  padding: 38px 0;
  background: var(--bg);
}
.section.alt {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 10px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  align-items: start;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-pad {
  padding: 18px;
}
.card-pad {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-pad .mini-btn {
  align-self: center;
  margin-top: 12px;
}

.list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-top: 14px;
}
.li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(31, 183, 107, 0.35);
  background: rgba(31, 183, 107, 0.12);
  display: grid;
  place-items: center;
  color: var(--green);
  flex: 0 0 auto;
  margin-top: 2px;
}
.check svg {
  width: 12px;
  height: 12px;
}
.aside-stack {
  display: grid;
  gap: 14px;
}
.map {
  height: 180px;
  border-bottom: 1px solid var(--border);
  position: relative;
  background-color: #e5e7eb;
  background-image: url("assets/img/map.png"); /* your screenshot */
  background-size: cover;
  background-position: center;
}

.map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.06);
}

[data-theme="dark"] .map::after {
  background: rgba(0, 0, 0, 0.25);
}

.map-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  color: #111827;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .map-label {
  background: rgba(15, 23, 36, 0.92);
  color: #e5e7eb;
  border-color: #1f2937;
}
.aside-title {
  font-weight: 900;
  font-size: 14px;
  margin: 0 0 6px;
}
.aside-text {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
}
.mini-btn {
  width: auto;
  border-radius: 999px;
  border: 1px solid rgba(2, 124, 8, 0.1);
  background: rgba(0, 255, 76, 0.08);
  color: var(--green);
  font-weight: 800;
  padding: 10px 12px;
  cursor: pointer;
}
.mini-btn:hover {
  background: #00ff261f;
}
.contact {
  display: grid;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.contact a {
  color: var(--text);
  font-weight: 700;
}
.store-btn {
  width: 100%;
  border-radius: 999px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}
.store-btn:hover {
  filter: brightness(0.98);
}
[data-theme="dark"] .store-btn {
  background: #0b1220;
}

/* MEDIA PACKAGE CARD */
.media {
  border-radius: var(--radius2);
  background: linear-gradient(135deg, #0b0f16, #101a2b);
  color: #e7e9ef;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow2);
}
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(255, 106, 0, 0.18);
  border: 1px solid rgba(255, 106, 0, 0.22);
  color: #ffd6b8;
}
.media h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  letter-spacing: -0.3px;
}
.media p {
  margin: 0 0 14px;
  font-size: 12.5px;
  color: rgba(231, 233, 239, 0.78);
  max-width: 520px;
}
.media .btn.primary {
  box-shadow: 0 18px 36px rgba(255, 106, 0, 0.25);
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}
.qa {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.qbtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  text-align: left;
}
.qbtn span {
  font-size: 13px;
}
.chev {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(2, 124, 8, 0.1);
  border: 1px solid rgba(2, 124, 8, 0.1);
  display: grid;
  place-items: center;
  color: var(--green);
  transition: transform 0.15s ease;
  flex: 0 0 auto;
}
.ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}
[data-theme="dark"] .ans {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.03)
  );
}
.ans-inner {
  padding: 14px 16px;
  font-size: 12.5px;
  color: var(--muted);
}
.qa.open .ans {
  max-height: 220px;
}
.qa.open .chev {
  transform: rotate(180deg);
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #070a10, #0b0f16);
  color: #e7e9ef;
  padding: 36px 0 18px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p {
  color: rgba(231, 233, 239, 0.72);
  font-size: 12px;
  margin-top: 10px;
}
.footer-col h4 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.footer-col a {
  display: block;
  color: rgba(231, 233, 239, 0.74);
  font-size: 12px;
  padding: 6px 0;
}
.footer-col a:hover {
  color: #fff;
}
.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.input {
  flex: 1;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
}
.send {
  width: 48px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: white;
  font-weight: 900;
  cursor: pointer;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  color: rgba(231, 233, 239, 0.62);
  font-size: 11px;
  flex-wrap: wrap;
}
.social {
  display: flex;
  gap: 10px;
}
.soc {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.soc:hover {
  background: rgba(255, 255, 255, 0.1);
}
.legal a {
  color: rgba(231, 233, 239, 0.72);
  padding: 0 8px;
}
.legal a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 980px) {
  /* strip-grid + grid-2 now fluid by default */
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 38px;
  }
}

/* Collapse nav earlier for tablets */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .hero-title {
    font-size: 32px;
  }
  .list {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* Mobile dropdown */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0 14px;
}
.mobile-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--navText);
  font-weight: 700;
  font-size: 14px;
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.mobile-menu.open {
  display: block;
}

/* Schedule style */
.schedule-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.schedule-controls select,
.schedule-controls button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid #00ff2259;
  font-weight: 600;
  cursor: pointer;
}

.game-card {
  border: 1px solid #00ff2259;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  background: #0c471459;
}

.game-meta {
  font-size: 12px;
  color: #6b7280;
}

.game-teams {
  font-weight: 800;
  margin: 6px 0;
}

.game-info {
  font-size: 13px;
  color: #374151;
}

@media print {
  .schedule-controls {
    display: none;
  }
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal-panel {
  position: relative;
  width: min(980px, 92vw);
  max-height: 86vh;
  margin: 6vh auto;
  background: var(--card, #fff);
  border: 1px solid var(--border, #e7e9f0);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border, #e7e9f0);
}

.modal-title {
  font-weight: 900;
}
.modal-close {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #00b931;
}
.modal-close:hover {
  background: #0c471459;
}

.modal-body {
  padding: 16px;
  overflow: auto;
  max-height: calc(86vh - 60px);
}
/* ===========================
   MOBILE NAV BAR FIX (ADD LAST)
=========================== */

.brand-short {
  display: none;
}

/* mobile layout */
@media (max-width: 760px) {
  /* one single bar */
  .nav-inner {
    height: 64px;
    flex-wrap: nowrap;
    gap: 10px;
  }

  /* left brand becomes A5 only */
  .brand-full {
    display: none;
  }
  .brand-short {
    display: inline;
    font-weight: 900;
    letter-spacing: 0.4px;
  }

  /* shrink logo a bit */
  .logo {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  /* keep everything on same row */
  .nav-right {
    gap: 10px;
    flex-wrap: nowrap;
  }

  /* compact "Get in Touch" so it fits */
  .cta-nav {
    display: none !important;
  }

  /* make toggle compact and icon-based */
  .toggle {
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
  }

  /* hide Light/Dark text on mobile */
  .toggle .toggle-txt {
    display: none;
  }

  /* show icons on mobile */
  .toggle .toggle-ic {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
  }

  /* slightly smaller switch on mobile */
  .switch {
    width: 42px;
    height: 22px;
  }
  .knob {
    width: 18px;
    height: 18px;
  }
  [data-theme="dark"] .knob {
    left: 22px;
  }

  /* ensure Menu button is visible and compact */
  .mobile-menu-btn {
    display: inline-flex; /* you already do this, but enforce it */
    padding: 10px 12px;
    border-radius: 12px;
    white-space: nowrap;
  }
}
