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

  --radius: 0px;
  --container: 1040px;
  --gap: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  background: var(--surface);
  color: var(--ink);
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  line-height: 1.25;
  color: var(--ink);
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

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

a:hover { text-decoration: underline; }

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

ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

strong { font-weight: 700; }

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

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

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

.age-notice {
  color: var(--accent2);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.utility-right {
  color: var(--muted);
  font-size: 0.7rem;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background: var(--base);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

/* Wordmark */
.wordmark {
  font-family: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  user-select: none;
}

.wm-num {
  color: var(--accent);
  background: var(--deep);
  padding: 0.1em 0.25em;
  border-left: 4px solid var(--accent);
  margin-right: 0.05em;
  font-style: normal;
}

.wm-bet {
  color: #fff;
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

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

.main-nav a {
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover {
  background: rgba(255,159,28,0.18);
  color: var(--accent);
  text-decoration: none;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-cta {
  display: inline-block;
  cursor: pointer;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--deep);
  border: none;
  border-radius: var(--radius);
  padding: 0.6rem 1.4rem;
  background: linear-gradient(180deg, #ffb944 0%, var(--accent) 50%, #e08800 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 2px 6px rgba(0,0,0,0.3);
  transition: filter 0.2s, box-shadow 0.2s, transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta:hover {
  filter: brightness(1.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 4px 12px rgba(0,0,0,0.35);
  text-decoration: none;
  color: var(--deep);
}

.btn-cta:active {
  transform: translateY(1px);
  filter: brightness(0.97);
}

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

.btn-cta--large {
  font-size: 1.05rem;
  padding: 0.8rem 2rem;
}

.nav-cta {
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
}

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background: linear-gradient(135deg, var(--base) 0%, var(--deep) 100%);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
  padding: 2.5rem 0;
}

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

.banner-left {
  flex: 1 1 0;
  min-width: 0;
}

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

.banner-headline {
  font-family: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  font-size: 1.7rem;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

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

.banner-sub {
  color: #c8c9cc;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

/* Boxed offer terms list — right column */
.banner-right {
  flex: 0 0 auto;
  width: 100%;
}

.offer-terms {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 2px solid var(--accent);
  background: rgba(255,159,28,0.06);
}

.offer-terms li {
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(255,159,28,0.2);
  color: #d8d9dc;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.offer-terms li:last-child {
  border-bottom: none;
}

.offer-terms li strong {
  color: var(--accent);
}

/* ============================================================
   MAIN ARTICLE
   ============================================================ */
.main-article {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  border-left: 4px solid var(--accent2);
  padding-left: 1rem;
  margin-bottom: 2rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.cards-section {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.cards-section h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.card {
  border: 1px solid var(--muted);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-icon {
  font-size: 1.75rem;
  color: var(--accent2);
  line-height: 1;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.card p {
  color: var(--ink);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 0;
}

.card .btn-cta {
  align-self: flex-start;
  margin-top: 0.5rem;
}

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

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

.payment-table th,
.payment-table td {
  border: 1px solid var(--muted);
  padding: 0.65rem 0.9rem;
  text-align: left;
  white-space: nowrap;
}

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

.payment-table thead th {
  border-color: #3a3d48;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.payment-table tbody tr {
  background: #fff;
}

.payment-table tbody tr:nth-child(even) {
  background: #f0f0ee;
}

.payment-table tbody tr:hover {
  background: rgba(255,159,28,0.08);
}

.payment-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
}

/* ============================================================
   FAQ ACCORDION — CSS-only hidden checkbox technique
   ============================================================ */
.faq-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.faq-title {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--muted);
}

.faq-item {
  border-bottom: 1px solid var(--muted);
  background: #fff;
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  user-select: none;
  transition: background 0.2s;
  list-style: none;
}

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

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

/* Plus/minus icon drawn purely in CSS */
.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: transparent;
  transition: background 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: var(--accent);
  transition: background 0.2s;
}

/* Vertical bar (only when collapsed → shows + sign) */
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
  background: var(--accent);
  transition: opacity 0.2s, background 0.2s;
  opacity: 1;
}

/* When checked: vertical bar disappears → shows − sign */
.faq-toggle:checked + .faq-question .faq-icon {
  background: var(--accent);
}

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

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

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
  background: #fafaf8;
  border-top: 0px solid transparent;
}

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

/* Expand on check */
.faq-toggle:checked ~ .faq-answer {
  max-height: 600px;
  padding-top: 1rem;
  border-top: 1px solid rgba(99,102,111,0.25);
}

/* ============================================================
   RESPONSIBLE PLAY — section spacing already handled by article
   ============================================================ */
#responsible-play h2 {
  color: var(--ink);
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--base);
  color: #aeb0b7;
  border-top: 4px solid var(--accent);
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

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

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

.wordmark--footer .wm-num {
  font-size: 1.5rem;
}

.wordmark--footer .wm-bet {
  font-size: 1.5rem;
}

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

.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  border-top: 1px solid #3a3d48;
  border-bottom: 1px solid #3a3d48;
  padding: 1rem 0;
}

.footer-links nav a {
  color: #c0c2c8;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

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

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

.footer-disclaimer p {
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid #3a3d48;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--accent2);
  color: var(--accent2);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ============================================================
   640px BREAKPOINT
   ============================================================ */
@media (min-width: 640px) {
  .banner-inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .banner-left {
    flex: 1 1 0;
  }

  .banner-right {
    flex: 0 0 280px;
    width: 280px;
  }

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

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

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

  .main-nav {
    flex-wrap: nowrap;
  }

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

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

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

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

  .banner-right {
    flex: 0 0 320px;
    width: 320px;
  }

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

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .wordmark {
    font-size: 2rem;
  }

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

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

  .faq-answer p {
    font-size: 1rem;
  }

  .offer-terms li {
    font-size: 0.95rem;
  }
}