:root {
  --bg: #f7f2e9;
  --bg-soft: #fbf8f2;
  --panel: #ffffff;
  --panel-2: #fffdf9;
  --panel-3: #f4ede2;
  --line: #e7dccb;
  --line-strong: #d8c7ae;
  --text: #111111;
  --muted: #383838;
  --green: #17785d;
  --green-2: #0f5f4a;
  --gold: #d3a240;
  --gold-2: #af7e24;
  --sky: #8db7c9;
  --danger: #b45c4b;
  --shadow: 0 18px 40px rgba(80, 58, 28, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(211, 162, 64, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(23, 120, 93, 0.1), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 52%, #f5efe5 100%);
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
h1, h2, h3 {
  margin: 0 0 1rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-family: Arial, Helvetica, sans-serif;
}
h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p, li, td, th, a, span { line-height: 1.7; }
p, ul, ol, table { margin: 0 0 1.15rem; }
ul, ol { padding-left: 1.25rem; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: #fff;
  color: #111;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.hero-inner,
.section-inner,
.footer-inner,
.support-inner {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fffdf9;
  background: linear-gradient(135deg, var(--gold-2), var(--green));
  font-size: 0.86rem;
  box-shadow: 0 10px 22px rgba(31, 25, 19, 0.12);
}

.main-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.main-nav a,
.footer-nav a {
  color: var(--muted);
  padding: 0.66rem 0.95rem;
  border-radius: 999px;
  transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  background: rgba(211, 162, 64, 0.12);
  color: var(--text);
}

.hero { padding: 3.6rem 0 1.4rem; }

.hero-panel,
.compare-intro,
.board-card,
.content-wrap,
.support-card,
.sticky-popup {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fffdf9, var(--panel));
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  display: grid;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.compare-intro::before,
.board-card::before,
.content-wrap::before,
.support-card::before,
.sticky-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), transparent 16%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -5rem;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 162, 64, 0.16), transparent 64%);
  pointer-events: none;
}

.eyebrow,
.section-kicker,
.odds-pill,
.review-rank {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.eyebrow,
.section-kicker {
  padding: 0.45rem 0.75rem;
  color: var(--gold-2);
  background: rgba(211, 162, 64, 0.1);
  border: 1px solid rgba(211, 162, 64, 0.18);
  font-size: 0.8rem;
}

.hero-copy p,
.support-card p,
.footer-copy,
.footer-note {
  color: var(--muted);
}

.compare-intro p,
.content-wrap :is(p, li, td) {
  color: var(--text);
}

.hero-actions { margin-top: 1.4rem; }

.button,
.button-secondary,
.popup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  border-radius: 14px;
  font-weight: 800;
  transition: 180ms ease;
  border: 1px solid transparent;
}

.button {
  color: #fffdf9;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-2) 100%);
  box-shadow: 0 12px 26px rgba(15, 95, 74, 0.16);
}

.button-secondary {
  color: var(--text);
  background: #fffaf2;
  border-color: rgba(211, 162, 64, 0.22);
}

.button:hover,
.button-secondary:hover,
.popup-button:hover,
.button:focus-visible,
.button-secondary:focus-visible,
.popup-button:focus-visible {
  transform: translateY(-2px);
}

.hero-stats,
.review-grid,
.support-grid {
  display: grid;
  gap: 1rem;
}

.hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.stat-box {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.stat-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--green));
}

.stat-box strong {
  display: block;
  color: var(--green);
  font-size: 1.35rem;
}

.section-pad { padding: 1rem 0 1.5rem; }

.compare-intro,
.support-card {
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.review-grid { margin-top: 1rem; }

.board-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffefb, var(--panel-2));
}

.board-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--sky));
}

.review-rank {
  padding: 0.38rem 0.7rem;
  font-size: 0.78rem;
  color: var(--gold-2);
  background: rgba(211, 162, 64, 0.1);
  border: 1px solid rgba(211, 162, 64, 0.16);
}

.odds-pill {
  padding: 0.34rem 0.72rem;
  font-size: 0.82rem;
  color: var(--green);
  background: rgba(23, 120, 93, 0.08);
  border: 1px solid rgba(23, 120, 93, 0.16);
}

.review-meta {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.review-meta strong { color: var(--text); }

.iframe-wrap {
  margin-top: 1rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: #fff;
}

#casino-widget-iframe {
  background: #fff;
}

.content-wrap {
  padding: clamp(1.35rem, 3vw, 2.35rem);
  overflow: hidden;
  position: relative;
}

.content-wrap table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.content-wrap td,
.content-wrap th {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.content-wrap th {
  color: var(--gold-2);
  background: rgba(211, 162, 64, 0.08);
}

.content-wrap tr:last-child td,
.content-wrap tr:last-child th { border-bottom: 0; }

.content-wrap h2,
.content-wrap h3 {
  color: var(--text);
  margin-top: 1.8rem;
}

.content-wrap a { color: var(--green); }
.content-wrap ul li::marker,
.content-wrap ol li::marker { color: var(--gold-2); }

.site-footer {
  margin-top: 2rem;
  padding: 2rem 0 5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.72), rgba(247, 242, 233, 0.96));
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.sticky-popup {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(320px, calc(100vw - 2rem));
  padding: 1rem;
  z-index: 60;
  background: linear-gradient(180deg, #fffefb, #fff8ee);
  box-shadow: 0 18px 36px rgba(49, 33, 14, 0.14);
}

.sticky-popup[hidden] { display: none; }

.popup-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.popup-rank {
  min-width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fffdf9;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
}

.popup-close {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: rgba(103, 91, 77, 0.1);
  cursor: pointer;
}

.popup-title {
  margin: 0.5rem 0 0.1rem;
  font-size: 1.15rem;
  font-weight: 900;
}

.popup-stars { color: var(--gold-2); letter-spacing: 0.08em; margin: 0 0 0.35rem; }
.popup-offer { margin: 0 0 0.95rem; font-weight: 700; }

.popup-button {
  width: 100%;
  color: #fffdf9;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-2) 100%);
}

.support-section { padding: 3rem 0; }
.support-card h1 { font-size: clamp(1.9rem, 5vw, 3rem); }

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li { margin-bottom: 0.9rem; }

.contact-chip {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: #fffaf2;
  border: 1px solid var(--line);
}

@media (min-width: 860px) {
  .hero-panel {
    grid-template-columns: minmax(0, 1.28fr) minmax(290px, 0.72fr);
    align-items: center;
  }

  .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 719px) {
  .main-nav { display: none; }
  .hero-stats { grid-template-columns: 1fr; }
  .sticky-popup {
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}
