/* ============================================================
   CSS CUSTOM PROPERTIES – Slate / Electric Blue Palette
   ============================================================ */
:root {
  --base:    #1F2933;
  --deep:    #121A21;
  --accent:  #3DA9FC;
  --accent2: #F2B705;
  --surface: #F2F5F7;
  --ink:     #161E26;
  --muted:   #5C6B7A;

  --radius:  8px;
  --container: 1120px;

  --font-heading: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background-color: 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;
  margin-bottom: 0.6em;
}

h1 {
  font-size: 2.5rem;
  color: var(--base);
}

h2 {
  font-size: 1.8rem;
  margin-top: 0.2em;
}

h3 {
  font-size: 1.3rem;
  margin-top: 1.4em;
}

p {
  margin-bottom: 1rem;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--accent2);
  text-decoration: underline;
}

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

ul {
  list-style: none;
}

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--base);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
  flex-wrap: wrap;
}

/* Logo wordmark */
.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  line-height: 1;
}

.logo-wordmark:hover,
.logo-wordmark:focus-visible {
  text-decoration: none;
}

.logo-wordmark:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.logo-s {
  color: var(--accent);
  font-size: 2rem;
  font-style: italic;
}

.logo-666 {
  color: var(--accent2);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

/* Footer logo tweak */
.footer-logo .logo-s {
  font-size: 1.6rem;
}

.footer-logo .logo-666 {
  font-size: 1.3rem;
}

/* Main navigation */
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.1rem;
}

.main-nav a {
  display: inline-block;
  color: #c9d6e3;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
  background-color: rgba(61, 169, 252, 0.18);
  text-decoration: none;
}

.main-nav a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  color: #fff;
}

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background-color: var(--deep);
  position: relative;
  overflow: hidden;
}

.bonus-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding-block: 1.4rem;
}

.bonus-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.bonus-banner__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent2);
}

.bonus-banner__headline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
}

.bonus-banner__underline {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  width: 100%;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn--cta {
  background-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(61, 169, 252, 0.4);
}

.btn--cta:hover {
  background-color: #2196e0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 169, 252, 0.55);
  color: #fff;
  text-decoration: none;
}

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

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

.btn--large {
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
}

/* ============================================================
   SECTIONS – shared spacing
   ============================================================ */
.intro-section,
.quick-facts-section,
.bonuses-section,
.games-section,
.payments-section,
.mobile-section,
.faq-section,
.cards-section,
.closing-section {
  padding-block: 3rem;
}

/* Alternate section backgrounds for visual rhythm */
.quick-facts-section,
.payments-section,
.cards-section {
  background-color: #e8edf1;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-style: italic;
}

/* ============================================================
   TABLE SCROLL WRAPPER
   ============================================================ */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-block: 1.4rem;
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   TABLES – no zebra, thin horizontal rules, accent header text
   ============================================================ */
.facts-table,
.payments-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background-color: #fff;
  font-size: 0.9rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.facts-table thead tr,
.payments-table thead tr {
  background-color: var(--base);
}

.facts-table thead th,
.payments-table thead th {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem;
  text-align: left;
  border: none;
}

.facts-table tbody tr,
.payments-table tbody tr {
  border-bottom: 1px solid #d5dde5;
}

.facts-table tbody tr:last-child,
.payments-table tbody tr:last-child {
  border-bottom: none;
}

.facts-table tbody td,
.payments-table tbody td {
  padding: 0.65rem 1rem;
  color: var(--ink);
  vertical-align: top;
}

.facts-table tbody td:first-child,
.payments-table tbody td:first-child {
  font-weight: 600;
  color: var(--base);
  white-space: nowrap;
}

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background-color: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}

.card__accent-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  flex-shrink: 0;
}

.card__body {
  padding: 1.4rem 1.5rem;
  flex: 1;
}

.card__body h3 {
  margin-top: 0;
  color: var(--base);
  font-size: 1.15rem;
}

.card__body p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ============================================================
   FAQ ACCORDION – CSS only with <details>/<summary>
   ============================================================ */
.faq-item {
  border: 1px solid #c8d3dc;
  border-radius: var(--radius);
  background-color: #fff;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item[open] {
  box-shadow: 0 4px 16px rgba(61, 169, 252, 0.12);
  border-color: var(--accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--base);
  list-style: none;
  user-select: none;
  transition: background-color 0.2s ease;
}

/* Remove default marker in all browsers */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
}

.faq-item[open] .faq-question {
  background-color: var(--base);
  color: #fff;
}

.faq-question:hover {
  background-color: rgba(31, 41, 51, 0.06);
}

.faq-item[open] .faq-question:hover {
  background-color: var(--base);
}

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

/* Rotating chevron drawn in CSS */
.faq-chevron {
  display: inline-block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s ease, background-color 0.2s ease;
}

.faq-chevron::before {
  left: 1px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

.faq-chevron::after {
  right: 1px;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left center;
}

/* When open, chevron points up */
.faq-item[open] .faq-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
  background-color: var(--accent2);
}

.faq-item[open] .faq-chevron::after {
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--accent2);
}

.faq-answer {
  padding: 1rem 1.2rem 1.2rem;
  border-top: 1px solid #d5dde5;
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--muted);
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  margin-top: 2rem;
  text-align: center;
  padding: 2rem;
  background-color: var(--base);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 480px;
  text-align: center;
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--deep);
  color: #9ab0c4;
  padding-block: 2.5rem 1.5rem;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}

.footer-nav a {
  color: #9ab0c4;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
  background-color: rgba(61, 169, 252, 0.15);
  text-decoration: none;
}

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

.footer-disclaimer {
  padding-block: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

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

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

.footer-copy {
  padding-top: 1rem;
}

.footer-copy p {
  font-size: 0.78rem;
  color: #4e6072;
  margin-bottom: 0;
}

/* ============================================================
   SECTION HEADINGS DECORATION
   ============================================================ */
.bonuses-section h2,
.games-section h2,
.mobile-section h2,
.faq-section h2,
.cards-section h2,
.closing-section h2 {
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  margin-bottom: 1rem;
}

.quick-facts-section h2,
.payments-section h2 {
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent2);
  display: inline-block;
  margin-bottom: 1rem;
}

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

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

  .bonus-banner__headline {
    font-size: 1.3rem;
  }

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

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .main-nav a {
    font-size: 0.88rem;
    padding: 0.45rem 0.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.35rem;
  }
}

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

  .header-inner {
    flex-wrap: nowrap;
    padding-block: 1rem;
  }

  .logo-wordmark {
    font-size: 2rem;
  }

  .logo-s {
    font-size: 2.3rem;
  }

  .logo-666 {
    font-size: 1.9rem;
  }

  .main-nav ul {
    gap: 0.15rem;
  }

  .main-nav a {
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
  }

  .bonus-banner__headline {
    font-size: 1.45rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .intro-section,
  .quick-facts-section,
  .bonuses-section,
  .games-section,
  .payments-section,
  .mobile-section,
  .faq-section,
  .cards-section,
  .closing-section {
    padding-block: 4rem;
  }

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

  .faq-question {
    font-size: 1.05rem;
    padding: 1.1rem 1.4rem;
  }

  .cta-block {
    padding: 2.5rem;
  }

  .footer-inner {
    align-items: center;
  }

  .footer-nav ul {
    gap: 0.25rem 0.75rem;
  }
}