/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --base:    #3B1220;
  --deep:    #250A14;
  --accent:  #E3B44B;
  --accent2: #C4566E;
  --surface: #F8F3F1;
  --ink:     #22121A;
  --muted:   #75606A;

  --radius:  14px;
  --container: 1200px;

  --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: 16px;
}

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(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

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

h2 {
  font-size: 1.75rem;
  margin-bottom: 0.875rem;
}

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

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;
}

/* ============================================================
   SECTION PADDING
   ============================================================ */
.section-pad {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* ============================================================
   BACKGROUND VARIANTS
   ============================================================ */
.bg-deep {
  background-color: var(--deep);
  color: var(--surface);
}

.bg-deep h1,
.bg-deep h2,
.bg-deep h3,
.bg-deep h4 {
  color: var(--accent);
}

.bg-deep p {
  color: var(--surface);
}

.bg-deep a {
  color: var(--accent);
}

.bg-accent-light {
  background-color: #f2e8e2;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

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

/* CTA button */
.btn-cta {
  background-color: var(--accent);
  color: var(--deep);
}

.btn-cta:hover {
  background-color: #f0c55a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 180, 75, 0.45);
  text-decoration: none;
  color: var(--deep);
}

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

/* Nav button */
.btn-nav {
  background-color: var(--accent2);
  color: #fff;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
}

.btn-nav:hover {
  background-color: #d4677f;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(196, 86, 110, 0.4);
  text-decoration: none;
  color: #fff;
}

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

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

/* ── Logo wordmark ── */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  font-family: var(--font-heading);
  line-height: 1;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent) 0%, #f5d07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline-block;
  border: 2px solid var(--accent);
  border-radius: 6px;
  padding: 0 0.18em;
  -webkit-text-fill-color: var(--accent);
  background: none;
  margin-right: 0.05em;
}

.logo-word {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-casino {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.3em;
  align-self: center;
}

/* ── Main nav ── */
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.main-nav a {
  color: #e8dada;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  text-decoration: none;
}

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

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--base) 60%, #5a1e32 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(227,180,75,0.08) 0%, transparent 70%);
  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-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0;
}

.banner-headline {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 0;
}

.banner-headline span {
  color: var(--accent);
}

.banner-fine {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro .container h1 {
  color: var(--base);
}

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

.payments-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

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

.payments-table thead th {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1rem;
  text-align: left;
  background-color: transparent;
  white-space: nowrap;
}

.payments-table tbody tr {
  border-bottom: 1px solid var(--muted);
}

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

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

.payments-table tbody tr:hover td {
  background-color: rgba(59, 18, 32, 0.04);
}

/* ============================================================
   FAQ ACCORDION – CSS-ONLY (hidden-checkbox technique)
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--muted);
}

.faq-item {
  border-bottom: 1px solid var(--muted);
  background-color: var(--surface);
  position: relative;
}

.faq-item:last-child {
  border-bottom: none;
}

/* Hide the checkbox visually but keep it accessible to CSS */
.faq-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

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

.faq-question:hover {
  background-color: rgba(59, 18, 32, 0.05);
  color: var(--accent);
}

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

/* Plus / Minus icon – pure CSS */
.faq-icon {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background-color: var(--base);
  transition: background-color 0.2s ease, transform 0.25s ease;
}

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

/* Vertical bar (becomes invisible when open) */
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 0.65rem;
  background-color: var(--accent);
  border-radius: 2px;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

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

.faq-answer p {
  padding: 0 1.25rem 1.1rem;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Checked state – open */
.faq-toggle:checked + .faq-question {
  background-color: var(--base);
  color: var(--accent);
}

.faq-toggle:checked + .faq-question .faq-icon {
  background-color: var(--accent);
  transform: rotate(180deg);
}

.faq-toggle:checked + .faq-question .faq-icon::before {
  background-color: var(--base);
}

.faq-toggle:checked + .faq-question .faq-icon::after {
  opacity: 0;
  background-color: var(--base);
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 600px;
}

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

.card {
  position: relative;
  background-color: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  box-shadow:
    0 2px 8px rgba(59, 18, 32, 0.08),
    0 8px 28px rgba(59, 18, 32, 0.1);
  border: 1px solid rgba(117, 96, 106, 0.18);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  overflow: hidden;
}

.card:hover {
  box-shadow:
    0 4px 16px rgba(59, 18, 32, 0.14),
    0 16px 48px rgba(59, 18, 32, 0.16);
  transform: translateY(-4px);
}

/* Circled numeral in corner */
.card-numeral {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--base);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  line-height: 1;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--base);
  margin-bottom: 0.75rem;
  padding-right: 3rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.7;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--deep);
  color: var(--surface);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  margin-top: 0;
}

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

/* Footer logo reuses logo styles */
.footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-heading);
  line-height: 1;
}

.footer-logo .logo-mark {
  font-size: 1.6rem;
  color: var(--accent);
  border-color: var(--accent);
}

.footer-logo .logo-word {
  font-size: 1.4rem;
  color: #fff;
}

.footer-logo .logo-casino {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-nav a {
  color: #c9b8bf;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

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

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

/* Responsible gambling block */
.footer-responsible {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
}

.footer-responsible p {
  font-size: 0.82rem;
  color: #c9b8bf;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

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

.footer-responsible strong {
  color: var(--accent);
}

/* Copyright & disclaimer */
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   SECTION-SPECIFIC OVERRIDES
   ============================================================ */

/* Impressions section on dark background */
.impressions h2,
.impressions h3 {
  color: var(--accent);
}

/* Responsible section on dark background */
.responsible h2,
.responsible h3 {
  color: var(--accent);
}

/* Bonuses section light bg */
.bonuses h2,
.bonuses h3 {
  color: var(--base);
}

/* Payments section */
.payments h2 {
  color: var(--base);
}

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

  .section-pad {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .bonus-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

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

  .main-nav {
    gap: 0.5rem 1.25rem;
  }
}

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

  .section-pad {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

  .bonus-banner {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

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

  .card {
    padding: 2.25rem 2rem 2rem;
  }

  .main-nav {
    gap: 0.5rem 1.5rem;
  }

  .main-nav a {
    font-size: 0.95rem;
  }

  .header-inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .logo-mark {
    font-size: 2.1rem;
  }

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

  .logo-casino {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 1rem;
  }

  .payments-table thead th {
    padding: 0.875rem 1.25rem;
  }

  .payments-table tbody td {
    padding: 0.85rem 1.25rem;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem 2rem;
    align-items: start;
  }

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

  .footer-nav {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

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

  .footer-copy {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-bottom: 0;
  }

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

/* ============================================================
   1280px BREAKPOINT – wider reading
   ============================================================ */
@media (min-width: 1280px) {
  .card-grid {
    gap: 2.5rem;
  }
}