/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a2a5e;
  --navy-deep: #08214a;
  --blue: #1f6fd6;
  --blue-light: #3d8bf5;
  --text-dark: #17223b;
  --text-muted: #5b6b8c;
  --border-light: #e4e9f5;
  --bg-soft: #f2f6fd;
  --white: #ffffff;
  --radius-lg: 14px;
  --radius-md: 10px;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-outline-dark {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn-solid-dark {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  box-shadow: 0 0 0 3px rgba(255, 214, 0, .5);
}
.btn-primary {
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(31, 111, 214, .35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.6);
}

/* ===== Header ===== */
.site-header {
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo img { height: 32px; }

.main-nav ul {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  padding: 6px 2px;
}
.main-nav a.active,
.main-nav a:hover { color: var(--blue); }

.header-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.header-actions .btn { padding: 11px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ===== Hero ===== */
.hero {
  background: radial-gradient(120% 140% at 75% 20%, #123a7a 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 56px;
}

.badge {
  display: inline-block;
  background: rgba(61,139,245,.18);
  border: 1px solid rgba(61,139,245,.5);
  color: #9cc2f7;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: #c6d3ec;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #c6d3ec;
}
.hero-stats li { display: flex; align-items: center; gap: 8px; }
.icon { font-size: 15px; }
.icon-star { color: #ffc94d; }
.icon-shield { color: #3ea15a; }
.icon-bolt { color: #ffc94d; }

.hero-media { justify-self: center; width: 100%; }

/* ===== Info sections ===== */
.info-section {
  background: var(--bg-soft);
  padding: 72px 0;
}

.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
}
.info-block:last-child { margin-bottom: 0; }
.info-block.reverse .info-media { order: 2; }
.info-block.reverse .info-text { order: 1; }

.info-text h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 800;
}
.info-text p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.info-media img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(10,42,94,.15);
}

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 0;
}

.eyebrow {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.faq-title {
  text-align: center;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  font-weight: 800;
  max-width: 760px;
  margin: 0 auto 12px;
}

.faq-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto 40px;
}

.accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}
.accordion-item.open {
  border-color: var(--blue-light);
  box-shadow: 0 6px 18px rgba(31,111,214,.12);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.accordion-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 22px;
}
.accordion-item.open .accordion-panel {
  max-height: 240px;
  padding-bottom: 20px;
}
.accordion-panel p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-deep);
  color: #cfd9ef;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img { height: 30px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: #9fb0d6; }

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: #9fb0d6; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 14px; color: #9fb0d6; margin-bottom: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
  color: #7f90b8;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; padding-top: 40px; }
  .hero-media { order: -1; max-width: 380px; margin: 0 auto 12px; }
  .info-block, .info-block.reverse { grid-template-columns: 1fr; }
  .info-block.reverse .info-media,
  .info-block.reverse .info-text { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 8px 24px 16px; }
  .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border-light); }

  .header-actions .btn { padding: 9px 16px; font-size: 13px; }
  .nav-toggle { display: flex; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .hero-stats { flex-direction: column; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .accordion-trigger { font-size: 14px; padding: 15px 16px; }
  .info-section, .faq-section { padding: 48px 0; }
  .site-header {
    padding: 10px 0;
}
}
.responsive-table {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.sports-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #ddd;
}

.sports-table th {
  background: #0b1f3a;
  color: #ffffff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  border: 1px solid #ddd;
}

.sports-table td {
  padding: 13px 16px;
  border: 1px solid #ddd;
  color: #333;
  line-height: 1.6;
  vertical-align: top;
}

.sports-table tbody tr:nth-child(even) {
  background: #f3f6fa;
}

.sports-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.sports-table tbody tr:hover {
  background: #e9eef5;
}

.sports-table th:first-child,
.sports-table td:first-child {
  width: 25%;
}

.sports-table th:last-child,
.sports-table td:last-child {
  width: 75%;
}

@media (max-width: 768px) {
  .responsive-table {
    margin: 15px 0;
  }

  .sports-table {
    min-width: 550px;
  }

  .sports-table th,
  .sports-table td {
    padding: 11px 12px;
    font-size: 14px;
  }
}
.info-media img {
    margin: auto;
    margin-bottom: 20px;
    margin-top: 20px;
    display: block;
}
.sports-table th:nth-child(2),
.sports-table td:nth-child(2) {
  width: 40%;
}
ul.ullist {
    list-style: disc;
    margin-left: 30px;
}
ol.ullist {
    list-style: disc;
    margin-left: 30px;
}