/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --base:    #22242B;
  --deep:    #141519;
  --accent:  #FF9F1C;
  --accent2: #2EC4B6;
  --surface: #F5F5F3;
  --ink:     #1A1B20;
  --muted:   #63666F;

  --radius:  4px;
  --max-w:   1040px;

  --font-heading: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  --font-body:    system-ui, -apple-system, Roboto, Arial, sans-serif;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.7;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--base);
  line-height: 1.25;
}

h1 { font-size: 2.0rem; margin-bottom: 0.75rem; }
h2 { font-size: 1.55rem; margin-bottom: 0.65rem; margin-top: 2rem; }
h3 { font-size: 1.2rem;  margin-bottom: 0.5rem;  margin-top: 1.5rem; }

p  { margin-bottom: 1rem; }
ul { margin-bottom: 1rem; padding-left: 1.4rem; }
li { margin-bottom: 0.3rem; }

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
a:hover  { color: var(--accent2); }
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}

strong { color: var(--ink); }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--base);
  padding: 0;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 1.1rem;
  padding-bottom: 0;
}

/* ---- Logo wordmark ---- */
.logo,
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  user-select: none;
  text-decoration: none;
  display: inline-block;
}

.logo {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.logo-sh {
  color: var(--surface);
  background: transparent;
}

.logo-bet {
  color: var(--accent);
  position: relative;
}

/* Decorative underline on wordmark */
.logo::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 2px;
}

/* ---- Navigation bar ---- */
.main-nav {
  width: 100%;
  background: var(--deep);
  margin-top: 0;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.main-nav ul li a {
  display: block;
  padding: 0.65rem 0.85rem;
  color: var(--surface);
  text-decoration: none;
  font-size: 0.88rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a:hover {
  background: var(--accent);
  color: var(--deep);
}

.main-nav ul li a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
  border-radius: 0;
}

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background: var(--base);
  border-bottom: 3px solid var(--accent);
  padding: 0.9rem 0;
}

.bonus-banner--mid {
  background: var(--deep);
}

.bonus-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.bonus-banner__text {
  color: var(--surface);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bonus-banner__text strong {
  color: var(--accent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--deep);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.55rem 1.5rem;
  border: none;
  border-radius: 999px;   /* pill */
  cursor: pointer;
  text-transform: none;   /* sentence case */
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255,159,28,0.25);
}

.btn-cta:hover {
  background: #e88a00;
  box-shadow: 0 4px 14px rgba(255,159,28,0.4);
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-cta:focus-visible {
  outline: 3px solid var(--accent2);
  outline-offset: 3px;
}

/* ============================================================
   MAIN ARTICLE
   ============================================================ */
.main-article {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* ============================================================
   SECTION BLOCKS
   ============================================================ */
.section-block {
  margin-bottom: 2.5rem;
}

.intro-section {
  margin-bottom: 2.5rem;
}

.intro-section h1 {
  color: var(--base);
}

/* ============================================================
   TABLES
   ============================================================ */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 1px 6px rgba(34,36,43,0.1);
}

.styled-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.88rem;
  border: 2px solid var(--muted);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

.styled-table thead tr {
  background: var(--base);
  color: var(--surface);
}

.styled-table thead th {
  padding: 0.75rem 0.85rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}

.styled-table tbody tr {
  border-bottom: 1px solid #ddd;
  transition: background 0.15s;
}

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

.styled-table tbody tr:hover {
  background: rgba(46,196,182,0.1);
}

.styled-table td {
  padding: 0.7rem 0.85rem;
  border: 1px solid #ddd;
  vertical-align: top;
  line-height: 1.45;
}

/* ============================================================
   CARDS
   ============================================================ */
.cards-section {
  margin-bottom: 3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid #ddd;
  border-top: 5px solid var(--accent);
  padding: 1.25rem 1.2rem 1.2rem;
  box-shadow: 0 2px 8px rgba(34,36,43,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(34,36,43,0.14);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 1.05rem;
  color: var(--base);
  margin-top: 0;
  margin-bottom: 0.65rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--accent2);
}

.card ul {
  font-size: 0.92rem;
}

.card p {
  font-size: 0.92rem;
}

/* ============================================================
   FAQ ACCORDION — CSS-only hidden-checkbox technique
   ============================================================ */
.faq-section h2 {
  margin-bottom: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Hide the checkbox */
.faq-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--base);
  background: var(--surface);
  user-select: none;
  transition: background 0.2s, color 0.2s;
  border-left: 4px solid var(--accent2);
}

.faq-question:hover {
  background: rgba(46,196,182,0.08);
  color: var(--base);
}

.faq-question:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

/* Plus / Minus icon drawn purely in CSS */
.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
}

/* Horizontal bar — always present */
.faq-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  background: var(--deep);
  border-radius: 1px;
}

/* Vertical bar — visible when collapsed (plus sign) */
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
  background: var(--deep);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

/* When checked → minus (hide vertical bar) */
.faq-toggle:checked ~ .faq-question .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1rem;
  font-size: 0.93rem;
  color: var(--ink);
  border-top: 1px solid transparent;
}

.faq-answer p:last-child { margin-bottom: 0; }

/* Open state */
.faq-toggle:checked ~ .faq-answer {
  max-height: 800px;
  padding: 0.9rem 1rem;
  border-top-color: #e0e0de;
}

/* Checked label style tweak */
.faq-toggle:checked ~ .faq-question {
  background: rgba(255,159,28,0.07);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--base);
  color: var(--muted);
  padding: 2rem 0 1.25rem;
  margin-top: 3rem;
  border-top: 3px solid var(--accent);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.footer-logo {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.footer-logo .logo-sh  { color: var(--surface); }
.footer-logo .logo-bet { color: var(--accent); }

.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
}

.footer-disclaimer p { margin-bottom: 0.5rem; }

.footer-age {
  font-size: 0.82rem;
  color: var(--accent2);
  font-weight: 600;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
}

.footer-nav ul li a {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.footer-nav ul li a:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.05);
}

.footer-nav ul li a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   BREAKPOINT — 640px
   ============================================================ */
@media (min-width: 640px) {

  .container {
    padding-inline: 1.5rem;
  }

  .header-inner {
    padding-top: 1.3rem;
  }

  .logo {
    font-size: 2.6rem;
  }

  .main-nav ul li a {
    padding: 0.7rem 1.1rem;
    font-size: 0.92rem;
  }

  .bonus-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .bonus-banner__text {
    font-size: 1rem;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem 2rem;
  }

  .footer-logo {
    flex: 0 0 auto;
  }

  .footer-disclaimer {
    flex: 1 1 300px;
  }

  .footer-nav {
    flex: 0 0 auto;
  }
}

/* ============================================================
   BREAKPOINT — 1024px
   ============================================================ */
@media (min-width: 1024px) {

  .container {
    padding-inline: 2rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    padding-top: 1.5rem;
  }

  .logo {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .main-nav ul li a {
    padding: 0.8rem 1.3rem;
    font-size: 0.95rem;
  }

  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.22rem; }

  .card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .bonus-banner__text {
    font-size: 1.05rem;
  }

  .main-article {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .footer-inner {
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 2rem 3rem;
  }

  .footer-disclaimer {
    flex: 1 1 auto;
  }
}