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

  --radius:  4px;
  --container: 1120px;
  --ff-head: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --ff-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

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

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

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

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

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

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

ul {
  list-style: disc;
  padding-left: 1.4rem;
}

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

h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.65rem;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
}

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

strong {
  font-weight: 700;
}

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

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

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

/* WORDMARK */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius);
  transition: opacity 0.2s;
}

.wordmark:hover {
  opacity: 0.82;
}

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

.wordmark-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--deep);
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.wordmark-brand {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--surface);
  letter-spacing: 0.01em;
}

.wordmark-brand strong {
  color: var(--accent);
  font-weight: 900;
}

/* NAV */
.main-nav {
  width: 100%;
  background-color: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.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.85rem;
  color: var(--surface);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s, background-color 0.2s;
}

.main-nav ul li a:hover {
  color: var(--accent);
  background-color: rgba(255,159,28,0.08);
}

.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) 60%, #2a2d36 100%);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
  padding: 2.5rem 1rem;
  text-align: center;
}

.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.banner-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0;
}

.banner-headline {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--surface);
  line-height: 1.2;
  margin-bottom: 0;
}

.banner-sub {
  font-size: 0.9rem;
  color: rgba(245,245,243,0.75);
  max-width: 520px;
  margin-bottom: 0;
}

.banner-fine {
  font-size: 0.75rem;
  color: rgba(245,245,243,0.5);
  max-width: 480px;
  margin-bottom: 0;
}

/* ============================================================
   BUTTON – CTA
   ============================================================ */
.btn-cta {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 0.7rem 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1.2;
}

.btn-cta:hover {
  background-color: var(--accent);
  color: var(--deep);
  border-color: var(--accent);
}

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

/* ============================================================
   MAIN CONTENT SECTIONS
   ============================================================ */
main {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* intro */
.intro-section {
  margin-bottom: 3rem;
}

.intro-lead {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.75;
}

/* impressions */
.impressions-section {
  margin-bottom: 3rem;
}

.impressions-section h2,
.games-section h2,
.bonuses-section h2,
.payments-section h2 {
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent2);
  margin-bottom: 1rem;
}

.impressions-section h3,
.games-section h3,
.bonuses-section h3 {
  color: var(--base);
  margin-top: 1.6rem;
}

/* games */
.games-section {
  margin-bottom: 3rem;
}

.games-section ul,
.bonuses-section ul {
  margin-bottom: 1rem;
}

/* bonuses */
.bonuses-section {
  margin-bottom: 3rem;
}

/* payments */
.payments-section {
  margin-bottom: 3rem;
}

/* ============================================================
   TABLE
   ============================================================ */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--muted);
}

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

thead tr {
  border-bottom: 2px solid var(--muted);
}

thead th {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 0.75rem 1rem;
  text-align: left;
  white-space: nowrap;
  background-color: var(--base);
}

tbody tr {
  border-bottom: 1px solid rgba(99,102,111,0.2);
}

tbody tr:last-child {
  border-bottom: none;
}

tbody td {
  padding: 0.7rem 1rem;
  color: var(--ink);
  vertical-align: middle;
  white-space: nowrap;
}

/* ============================================================
   RESPONSIBLE GAMBLING SECTION
   ============================================================ */
.responsible-section {
  margin-bottom: 3rem;
}

.responsible-section h2 {
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent2);
  margin-bottom: 1rem;
}

.responsible-section h3 {
  margin-top: 1.6rem;
  color: var(--base);
}

.responsible-section ul {
  margin-bottom: 1rem;
}

.responsible-section ul li {
  margin-bottom: 0.4rem;
}

/* ============================================================
   FAQ ACCORDION (CSS-only, details/summary)
   ============================================================ */
.faq-section {
  margin-bottom: 3rem;
}

.faq-section h2 {
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent2);
  margin-bottom: 1.25rem;
}

.faq-item {
  border: 1px solid rgba(99,102,111,0.25);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: #fff;
}

.faq-item + .faq-item {
  /* already has margin-bottom on each item */
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--base);
  cursor: pointer;
  list-style: none;
  user-select: none;
  background-color: #fff;
  transition: background-color 0.18s;
}

/* remove default disclosure triangle */
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::marker {
  display: none;
}

/* CSS chevron */
.faq-question::after {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-right: 0.2rem;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
}

.faq-question:hover {
  background-color: rgba(255,159,28,0.06);
}

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

.faq-item[open] .faq-question {
  background-color: rgba(255,159,28,0.05);
  border-bottom: 1px solid rgba(99,102,111,0.15);
}

.faq-answer {
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
  color: var(--ink);
  background-color: #fff;
}

.faq-answer p {
  margin-bottom: 0.6rem;
}

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

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

.cards-section h2 {
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent2);
  margin-bottom: 1.5rem;
}

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

.card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 2px 12px rgba(26,27,32,0.10), 0 1px 3px rgba(26,27,32,0.06);
  border: 1px solid rgba(99,102,111,0.15);
  overflow: visible;
}

.card-numeral {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--deep);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(255,159,28,0.35);
}

.card h3 {
  font-size: 1.08rem;
  color: var(--base);
  margin-top: 0.6rem;
  margin-bottom: 0.55rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--deep);
  border-top: 3px solid var(--accent);
  padding: 2.5rem 0 1.5rem;
  color: rgba(245,245,243,0.7);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* footer wordmark */
.footer-brand {
  text-align: center;
}

.footer-wordmark {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  color: var(--surface);
  letter-spacing: 0.01em;
}

.footer-wordmark strong {
  color: var(--accent);
  font-weight: 900;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245,245,243,0.5);
  margin-top: 0.3rem;
  margin-bottom: 0;
}

/* footer info */
.footer-info {
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-disclaimer {
  color: rgba(245,245,243,0.55);
  margin-bottom: 0.6rem;
}

.footer-rg {
  color: rgba(245,245,243,0.65);
  margin-bottom: 0.6rem;
}

.footer-rg strong {
  color: var(--accent2);
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0;
  color: rgba(245,245,243,0.55);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* footer copy */
.footer-copy {
  font-size: 0.76rem;
  color: rgba(245,245,243,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
  text-align: center;
}

.footer-copy p {
  margin-bottom: 0;
}

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

  h1 {
    font-size: 2.25rem;
  }

  .header-inner {
    gap: 0;
  }

  .wordmark-brand {
    font-size: 1.8rem;
  }

  .banner-headline {
    font-size: 2rem;
  }

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

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

  .footer-brand {
    text-align: left;
    flex: 0 0 auto;
    min-width: 180px;
  }

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

  .footer-copy {
    flex: 0 0 100%;
  }

  .bonus-banner {
    padding: 3rem 1.5rem;
  }
}

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

  .header-inner {
    flex-direction: column;
    align-items: center;
  }

  .wordmark {
    margin-bottom: 0.5rem;
  }

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

  .banner-headline {
    font-size: 2.4rem;
  }

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

  main {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

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

  .intro-lead {
    font-size: 1.12rem;
  }

  .footer-inner {
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .footer-brand {
    flex: 0 0 220px;
  }

  .footer-copy {
    flex: 0 0 100%;
  }
}

/* ============================================================
   BREAKPOINT – 1120px (full container)
   ============================================================ */
@media (min-width: 1120px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}