/* ============================================================
   CSS CUSTOM PROPERTIES — FOREST / BRASS PALETTE
   ============================================================ */
:root {
  --base:    #1B3A25;
  --deep:    #102417;
  --accent:  #D4A017;
  --accent2: #6FA96A;
  --surface: #F5F3EA;
  --ink:     #14231A;
  --muted:   #5A6B5E;

  --radius:  0px;
  --container: 1040px;
  --gap:     1.5rem;
}

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

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.7;
  background-color: var(--surface);
  color: var(--ink);
}

h1, h2, h3, h4, h5, h6 {
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  line-height: 1.25;
  color: var(--base);
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.6rem;  margin-bottom: 0.85rem; margin-top: 2rem; }
h3 { font-size: 1.2rem;  margin-bottom: 0.65rem; margin-top: 1.5rem; }

p  { margin-bottom: 1rem; }

a {
  color: var(--base);
  text-decoration: underline;
}
a:hover  { color: var(--accent); }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

ul, ol { padding-left: 1.4rem; }

img { max-width: 100%; display: block; }

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

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background-color: var(--base);
  border-bottom: 3px solid var(--accent);
}

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

/* ---- Logo wordmark ---- */
.logo {
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.logo-ok {
  color: #ffffff;
  background-color: transparent;
  padding: 0 0.05em;
}

.logo-9 {
  color: var(--accent);
  background-color: var(--deep);
  padding: 0 0.2em;
  border-left: 3px solid var(--accent2);
}

/* ---- Main nav ---- */
.main-nav {
  width: 100%;
  background-color: var(--deep);
}

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

.main-nav ul li a {
  display: block;
  padding: 0.65rem 0.9rem;
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

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

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

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--base) 55%, #2a5438 100%);
  padding: 2.5rem 1rem;
  text-align: center;
}

.bonus-banner .banner-tag {
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1rem;
}

.banner-offer-box {
  display: inline-block;
  border: 2px solid var(--accent);
  background-color: rgba(16, 36, 23, 0.65);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  max-width: 520px;
  width: 100%;
}

.banner-headline {
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.banner-amount {
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.banner-sub {
  font-size: 0.82rem;
  color: #c8d4c9;
  margin-bottom: 0;
}

/* ---- CTA Button ---- */
.btn-cta {
  display: inline-block;
  background-color: var(--accent);
  color: var(--deep);
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-cta:hover {
  background-color: #b8890f;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-cta:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

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

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */
.content-area {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--muted);
  margin-bottom: 2rem;
}

.intro-section h1 {
  color: var(--base);
  border-left: 5px solid var(--accent);
  padding-left: 0.75rem;
}

/* ============================================================
   QUICK FACTS + PAYMENTS — TABLES
   ============================================================ */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border: 1px solid var(--muted);
}

table {
  width: 100%;
  min-width: 380px;
  border-collapse: collapse;
  font-size: 0.9rem;
  background-color: #ffffff;
}

thead tr {
  background-color: var(--base);
  color: #ffffff;
}

thead th {
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--deep);
  color: #ffffff;
}

tbody tr {
  border-bottom: 1px solid #d8d4c6;
}

tbody tr:nth-child(even) {
  background-color: #eeeae0;
}

tbody tr:hover {
  background-color: #e2dfd3;
}

tbody td {
  padding: 0.65rem 1rem;
  border: 1px solid #d8d4c6;
  vertical-align: top;
  color: var(--ink);
}

tbody td:first-child {
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  font-weight: 700;
  color: var(--base);
  white-space: nowrap;
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.quick-facts,
.bonus-section,
.games-section,
.payments-section,
.mobile-section,
.registration-section,
.security-section,
.support-section,
.faq-section,
.cards-section {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #d0ccc0;
}

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

.faq-item {
  border: 1px solid var(--muted);
  margin-bottom: 0.5rem;
  background-color: #ffffff;
}

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

.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--base);
  user-select: none;
  background-color: #ffffff;
  transition: background-color 0.2s;
  gap: 0.75rem;
}

.faq-label:hover {
  background-color: #eeeae0;
}

.faq-toggle:focus-visible + .faq-label {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* Plus/minus icon drawn in CSS */
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
}

/* Horizontal bar (always visible) */
.faq-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--accent);
  transform: translateY(-50%);
  transition: opacity 0.2s;
}

/* Vertical bar (the plus part) */
.faq-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: var(--accent);
  transform: translateX(-50%);
  transition: transform 0.25s, opacity 0.25s;
}

/* When checked: rotate vertical bar to make minus */
.faq-toggle:checked + .faq-label .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* FAQ body — collapsed by default */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.1rem;
  border-top: 0px solid var(--muted);
  background-color: #f9f7f0;
}

.faq-body p {
  margin-top: 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--ink);
}

/* When checked: expand body */
.faq-toggle:checked ~ .faq-body {
  max-height: 600px;
  padding: 0 1.1rem;
  border-top: 1px solid var(--muted);
}

/* ============================================================
   CARDS GRID
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  margin-top: 1.25rem;
}

.card {
  border: 1px solid var(--muted);
  border-left: 5px solid var(--accent);
  background-color: #ffffff;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 18px rgba(27, 58, 37, 0.12);
}

.card h3 {
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  color: var(--base);
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #d0ccc0;
}

.card p {
  font-size: 0.93rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

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

/* ============================================================
   BONUS SECTION HEADINGS (h3 inside sections)
   ============================================================ */
.bonus-section h3,
.games-section h3,
.payments-section h3,
.mobile-section h3,
.registration-section h3,
.security-section h3,
.support-section h3 {
  color: var(--base);
  padding-left: 0.6rem;
  border-left: 3px solid var(--accent2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--deep);
  color: #b8c8bc;
  padding: 2.5rem 1rem;
  margin-top: 2rem;
  border-top: 4px solid var(--accent);
}

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

.footer-logo {
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}

.footer-logo .logo-ok {
  color: #ffffff;
}

.footer-logo .logo-9 {
  color: var(--accent);
  background-color: var(--base);
  padding: 0 0.18em;
  border-left: 3px solid var(--accent2);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #a8bfac;
  max-width: 700px;
  margin-bottom: 0;
}

.footer-disclaimer {
  border-top: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
  padding: 1rem 0;
  max-width: 700px;
  width: 100%;
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: #8fa890;
  margin-bottom: 0.6rem;
  line-height: 1.55;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer strong {
  color: var(--accent2);
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0;
  font-family: Tahoma, 'Segoe UI', Verdana, sans-serif;
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (min-width: 640px) {
  .container {
    padding-left:  1.5rem;
    padding-right: 1.5rem;
  }

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

  .logo {
    font-size: 2.8rem;
  }

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

  .banner-amount {
    font-size: 2.5rem;
  }

  .banner-offer-box {
    padding: 2rem 2.5rem;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.2rem; }

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

  table {
    min-width: auto;
  }

  .footer-inner {
    gap: 1.5rem;
  }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .container {
    padding-left:  2rem;
    padding-right: 2rem;
  }

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

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

  .banner-amount {
    font-size: 3rem;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }

  .content-area {
    padding-top:    2.5rem;
    padding-bottom: 2.5rem;
  }

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

  .card {
    padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  }

  .footer-inner {
    max-width: var(--container);
  }

  .intro-section,
  .quick-facts,
  .bonus-section,
  .games-section,
  .payments-section,
  .mobile-section,
  .registration-section,
  .security-section,
  .support-section,
  .faq-section,
  .cards-section {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}