/* ============================================================
   CSS CUSTOM PROPERTIES — DEEP TEAL / AMBER PALETTE
   ============================================================ */
:root {
  --base:    #0E3B36;
  --deep:    #082622;
  --accent:  #E9A93C;
  --accent2: #57C2A8;
  --surface: #F7F4EC;
  --ink:     #12211F;
  --muted:   #5E706C;

  --font-heading: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-body:    system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --container: 1120px;
  --radius:    0px;
}

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

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

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

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

a {
  color: var(--accent2);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   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.5rem;  margin-top: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.2rem;  margin-top: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1rem;    margin-bottom: 0.5rem; color: var(--accent2); }

p {
  margin-bottom: 1rem;
}

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

/* ============================================================
   UTILITY STRIP (age notice / geo)
   ============================================================ */
.utility-strip {
  background-color: var(--deep);
  color: #a8ccc9;
  font-size: 0.72rem;
  padding: 0.35rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

.utility-strip span {
  white-space: nowrap;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  background-color: var(--base);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 56px;
}

/* LOGO WORDMARK */
.logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  user-select: none;
  text-transform: uppercase;
}

.logo-badge {
  background-color: var(--accent);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.15em 0.45em;
  border-radius: 2px;
  text-transform: uppercase;
  vertical-align: middle;
}

/* NAV */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

nav ul li a {
  display: block;
  color: #c5ddd9;
  font-size: 0.8rem;
  padding: 0.45rem 0.65rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

nav ul li a:hover {
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

nav ul li a.active {
  background-color: var(--accent);
  color: var(--deep);
  font-weight: 700;
}

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

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--base) 60%, #0f4a43 100%);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.02) 30px,
    rgba(255,255,255,0.02) 60px
  );
  pointer-events: none;
}

.bonus-banner .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bonus-banner .banner-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.bonus-banner p {
  color: #c5ddd9;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

.bonus-banner .fine {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ============================================================
   BUTTON
   ============================================================ */
.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.7em 2em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 3px 12px rgba(233,169,60,0.35);
  text-transform: none; /* sentence case */
}

.btn:hover {
  background-color: #f5bd56;
  box-shadow: 0 5px 20px rgba(233,169,60,0.5);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(233,169,60,0.3);
}

.btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* ============================================================
   MAIN CONTENT WRAP
   ============================================================ */
main {
  padding: 1.5rem 0 2rem;
}

.content-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--accent2);
}

/* ============================================================
   RATING BLOCK
   ============================================================ */
.rating-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.rating-stars {
  color: var(--accent);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.rating-val {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.badge {
  background-color: var(--accent2);
  color: var(--deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2em 0.6em;
  border-radius: 2px;
}

/* ============================================================
   STYLED LIST (ordered walkthrough)
   ============================================================ */
.styled-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-bottom: 1.5rem;
}

.styled-list li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(94,112,108,0.2);
}

.styled-list li::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  height: 1.8rem;
  background-color: var(--accent);
  color: var(--deep);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ============================================================
   CHECKLIST (ul.checklist)
   ============================================================ */
.checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.checklist li {
  padding: 0.55rem 0 0.55rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(94,112,108,0.15);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--accent2);
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.75rem;
  border: 1px solid var(--muted);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 480px;
}

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

thead th {
  padding: 0.7rem 0.85rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.15);
}

tbody tr {
  background-color: #fff;
}

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

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

tbody td {
  padding: 0.65rem 0.85rem;
  border: 1px solid #d4d0c5;
  vertical-align: top;
}

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  background-color: #fff8e8;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.93rem;
  color: var(--ink);
}

/* ============================================================
   CARD GRID
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.card {
  background-color: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--accent);
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 2px 10px rgba(14,59,54,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(14,59,54,0.14);
  transform: translateY(-2px);
}

.card .icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.card h3 {
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--base);
}

.card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ============================================================
   FAQ ACCORDION — CSS-ONLY (hidden checkbox technique)
   ============================================================ */
.faq {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.faq-item {
  border: 1px solid #d4d0c5;
  border-top: none;
  background-color: #fff;
}

.faq-item:first-child {
  border-top: 1px solid #d4d0c5;
}

/* Hide native checkbox */
.faq-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Label acts as the clickable toggle */
.faq-item label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.97rem;
  color: var(--base);
  font-weight: 600;
  user-select: none;
  transition: background 0.2s;
  background-color: #fff;
}

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

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

/* Plus / minus drawn purely in CSS */
.faq-item label::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  background-color: transparent;
  border: 2px solid var(--accent2);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
  /* horizontal bar of the + */
  background-image:
    linear-gradient(var(--accent2), var(--accent2)),
    linear-gradient(var(--accent2), var(--accent2));
  background-size: 10px 2px, 2px 10px;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
}

/* When checked: show minus (hide vertical bar) */
.faq-item input[type="checkbox"]:checked ~ label::after {
  background-image:
    linear-gradient(var(--accent), var(--accent));
  background-size: 10px 2px;
  background-position: center center;
  background-repeat: no-repeat;
  border-color: var(--accent);
  background-color: #fff8e8;
}

.faq-item input[type="checkbox"]:checked ~ label {
  background-color: #f7f4ec;
  color: var(--deep);
}

/* Answer panel — hidden by default */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.1rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0;
}

/* Reveal when checkbox is checked */
.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 800px;
  padding: 0.85rem 1.1rem 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background-color: var(--deep);
  color: #c5ddd9;
  padding: 2.5rem 1rem 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

footer .footer-title {
  color: var(--accent2);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.35rem;
}

footer ul li a {
  color: #8aada8;
  font-size: 0.83rem;
  transition: color 0.2s;
}

footer ul li a:hover {
  color: var(--accent);
  text-decoration: none;
}

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

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ============================================================
   RESPONSIBLE GAMING BANNER (bottom bar)
   ============================================================ */
.responsible-gaming {
  background-color: var(--ink);
  color: #8aada8;
  font-size: 0.75rem;
  text-align: center;
  padding: 0.6rem 1rem;
  line-height: 1.5;
}

/* ============================================================
   MOBILE-FIRST BREAKPOINTS
   ============================================================ */

/* ---- 640px ---- */
@media (min-width: 640px) {
  .bonus-banner {
    padding: 3.5rem 2rem;
  }

  .bonus-banner .banner-title {
    font-size: 2rem;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: 2.0rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}

/* ---- 1024px ---- */
@media (min-width: 1024px) {
  .header-inner {
    padding: 0 2rem;
    min-height: 60px;
  }

  .content-wrap {
    padding: 0 2rem;
  }

  .bonus-banner {
    padding: 4rem 2rem;
  }

  .bonus-banner .banner-title {
    font-size: 2.4rem;
  }

  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    padding: 0 2rem 2rem;
  }

  .footer-bottom {
    padding: 1rem 2rem;
  }

  nav ul li a {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }

  main {
    padding: 2rem 0 3rem;
  }
}

/* ============================================================
   UTILITY STRIP — WIDER SCREENS
   ============================================================ */
@media (min-width: 640px) {
  .utility-strip {
    padding: 0.35rem 2rem;
  }
}