/* ============================================================
   CSS CUSTOM PROPERTIES — Ocean / Sand palette
   ============================================================ */
:root {
  --base:    #0C3A54;
  --deep:    #062435;
  --accent:  #F0B67F;
  --accent2: #4FB6C8;
  --surface: #F4F7F8;
  --ink:     #0F2533;
  --muted:   #54707F;

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

  --font-head: Tahoma, 'Segoe UI', Verdana, sans-serif;
  --font-body: Georgia, 'Times New Roman', 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-color: var(--surface);
  line-height: 1.7;
}

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

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

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

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--deep); }

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

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

/* ============================================================
   UTILITY STRIP
   ============================================================ */
.utility-strip {
  background-color: var(--deep);
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 1rem;
  gap: 0.5rem;
}

.age-notice {
  color: var(--accent);
  font-weight: 700;
}

.utility-right {
  color: var(--muted);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background-color: var(--base);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(6, 36, 53, 0.45);
}

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

/* WORDMARK */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.9rem;
  line-height: 1;
  text-decoration: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.wm-w {
  color: #ffffff;
  background-color: var(--accent2);
  padding: 0.08em 0.18em;
  border-radius: 6px 0 0 6px;
}

.wm-88 {
  color: var(--accent);
  background-color: var(--deep);
  padding: 0.08em 0.18em;
  border-radius: 0 6px 6px 0;
}

/* NAV */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.main-nav a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c9dce6;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover {
  background-color: var(--accent2);
  color: var(--deep);
  text-decoration: none;
}

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

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--base) 55%, #0e4f72 100%);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(79, 182, 200, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(240, 182, 127, 0.10) 0%, transparent 55%);
  pointer-events: none;
}

.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

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

.banner-offer-box {
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 560px;
  width: 100%;
  background-color: rgba(6, 36, 53, 0.55);
}

.offer-headline {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--accent);
  display: block;
}

.offer-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #cde8f0;
}

.banner-terms {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-cta {
  display: inline-block;
  background-color: var(--accent);
  color: var(--deep);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  padding: 0.85rem 2.2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(240, 182, 127, 0.35);
}

.btn-cta:hover {
  background-color: #f5c996;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(240, 182, 127, 0.5);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(240, 182, 127, 0.3);
}

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

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

/* ============================================================
   SECTIONS — General spacing
   ============================================================ */
.section-intro,
.section-impressions,
.section-games,
.section-bonuses,
.section-payments,
.section-responsible {
  margin-bottom: 3rem;
}

.section-intro h1.site-title {
  font-size: 2.5rem;
  color: var(--base);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-intro h1.site-title::after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 0.3rem;
}

.intro-lead {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.section-impressions h2,
.section-games h2,
.section-bonuses h2,
.section-payments h2,
.section-responsible h2 {
  border-left: 5px solid var(--accent2);
  padding-left: 0.75rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

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

/* ============================================================
   PAYMENTS TABLE
   ============================================================ */
.table-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(84, 112, 127, 0.25);
}

.payments-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.payments-table thead tr {
  border-bottom: 2px solid var(--accent);
}

.payments-table thead th {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent);
  text-align: left;
  padding: 0.8rem 1rem;
  background-color: var(--deep);
  white-space: nowrap;
}

.payments-table tbody tr {
  border-bottom: 1px solid rgba(84, 112, 127, 0.2);
  transition: background 0.15s;
}

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

.payments-table tbody tr:hover {
  background-color: rgba(79, 182, 200, 0.07);
}

.payments-table tbody td {
  padding: 0.75rem 1rem;
  color: var(--ink);
  vertical-align: middle;
}

/* ============================================================
   FAQ ACCORDION — CSS-only hidden checkbox technique
   ============================================================ */
.section-faq {
  background-color: #e8eff2;
  padding: 3rem 0;
}

.section-faq h2 {
  border-left: 5px solid var(--accent2);
  padding-left: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.faq-item {
  border-bottom: 1px solid rgba(84, 112, 127, 0.25);
}

.faq-item:first-child {
  border-top: 1px solid rgba(84, 112, 127, 0.25);
}

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

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

.faq-question:hover {
  color: var(--accent2);
}

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

/* Plus / minus icon drawn in CSS */
.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent2);
  border-radius: 50%;
  transition: background 0.2s, border-color 0.2s;
}

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

/* Vertical bar (the + part, hidden when open) */
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
  background-color: var(--accent2);
  border-radius: 1px;
  transition: opacity 0.2s, background 0.2s;
  opacity: 1;
}

/* When checked: vertical bar disappears → minus sign */
.faq-toggle:checked ~ .faq-question .faq-icon {
  background-color: var(--accent2);
  border-color: var(--accent2);
}

.faq-toggle:checked ~ .faq-question .faq-icon::before {
  background-color: #ffffff;
}

.faq-toggle:checked ~ .faq-question .faq-icon::after {
  opacity: 0;
}

.faq-toggle:checked ~ .faq-question {
  color: var(--accent2);
}

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

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

.faq-toggle:checked ~ .faq-answer {
  max-height: 600px;
  padding-top: 0.25rem;
}

/* ============================================================
   CARD GRID
   ============================================================ */
.section-cards {
  padding: 3rem 0;
  background-color: var(--surface);
}

.section-cards h2 {
  border-left: 5px solid var(--accent2);
  padding-left: 0.75rem;
  margin-bottom: 1.75rem;
}

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

.card {
  border: 1px solid rgba(84, 112, 127, 0.3);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  background-color: #ffffff;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.card h3 {
  color: var(--base);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(84, 112, 127, 0.2);
}

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

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

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

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

.wordmark--footer .wm-w {
  background-color: rgba(79, 182, 200, 0.25);
  color: #ffffff;
}

.wordmark--footer .wm-88 {
  background-color: transparent;
  color: var(--accent);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
}

.footer-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a0bcc7;
  transition: color 0.2s;
}

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

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

.footer-disclaimer {
  border-top: 1px solid rgba(84, 112, 127, 0.3);
  padding-top: 1.25rem;
}

.footer-disclaimer p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-copy {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: rgba(84, 112, 127, 0.75);
  margin-bottom: 0 !important;
}

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

  .offer-headline {
    font-size: 1.55rem;
  }

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

  .footer-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem 2.5rem;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1;
    align-items: flex-start;
  }

  .footer-disclaimer {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .payments-table {
    font-size: 0.95rem;
  }

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

/* ============================================================
   BREAKPOINT: 1024px
   ============================================================ */
@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .wordmark {
    font-size: 2.1rem;
  }

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

  .banner-offer-box {
    padding: 1.4rem 2.2rem;
  }

  .offer-headline {
    font-size: 1.75rem;
  }

  .main-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-intro,
  .section-impressions,
  .section-games,
  .section-bonuses,
  .section-payments,
  .section-responsible {
    margin-bottom: 3.5rem;
  }

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

  .footer-inner {
    grid-template-columns: 220px 1fr;
    gap: 1.5rem 3rem;
  }

  .section-faq {
    padding: 4rem 0;
  }

  .section-cards {
    padding: 4rem 0;
  }

  .bonus-banner {
    padding: 3.5rem 0;
  }
}