:root {
  --sand: #f4e4c5;
  --sand-deep: #e5cda3;
  --sun: #d97841;
  --sun-soft: #efb06b;
  --gumleaf: #214a40;
  --gumleaf-soft: #35685a;
  --reef: #183543;
  --reef-soft: #315564;
  --paper: #fff8ee;
  --paper-strong: #fff3e0;
  --ink: #1f2b2b;
  --muted: #5a625d;
  --line: rgba(24, 53, 67, 0.14);
  --shadow: 0 18px 42px rgba(24, 53, 67, 0.14);
  --shadow-soft: 0 10px 24px rgba(24, 53, 67, 0.1);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(217, 120, 65, 0.16), transparent 26%),
    radial-gradient(circle at left 20%, rgba(33, 74, 64, 0.1), transparent 22%),
    linear-gradient(180deg, #f8ebd3 0%, #f3e1bf 42%, #f8f1e4 100%);
  min-height: 100vh;
}

a {
  color: var(--reef);
}

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 53, 67, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 53, 67, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 86%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 238, 0.88);
  border-bottom: 1px solid rgba(24, 53, 67, 0.08);
}

.topbar-inner,
.page-footer-inner,
.hero-inner,
.content-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--reef);
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #ffd18c 0%, #ffd18c 18%, transparent 19%),
    linear-gradient(180deg, var(--sun-soft) 0%, var(--sun) 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 248, 238, 0.55);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 42% 14% 18%;
  border-top: 2px solid rgba(255, 248, 238, 0.65);
  border-bottom: 2px solid rgba(33, 74, 64, 0.24);
  border-radius: 50% 50% 35% 35%;
}

.brand-text {
  display: grid;
  gap: 0.08rem;
}

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  line-height: 1;
}

.brand-tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 53, 67, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--reef);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font: inherit;
}

.primary-nav {
  display: none;
  width: 100%;
}

.primary-nav[data-open="true"] {
  display: block;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--reef);
  background: rgba(24, 53, 67, 0.04);
}

.primary-nav a[aria-current="page"] {
  color: var(--paper);
  background: var(--reef);
}

.hero {
  position: relative;
  padding: 3rem 0 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  right: -4rem;
  top: -2rem;
  width: min(38vw, 18rem);
  height: min(38vw, 18rem);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 209, 140, 0.95) 0%, rgba(239, 176, 107, 0.94) 35%, rgba(217, 120, 65, 0.22) 68%, transparent 70%);
  filter: blur(1px);
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-panel {
  background:
    linear-gradient(145deg, rgba(255, 248, 238, 0.94), rgba(245, 227, 195, 0.92)),
    linear-gradient(135deg, rgba(24, 53, 67, 0.08), transparent 50%);
  border: 1px solid rgba(24, 53, 67, 0.09);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  padding: 1.3rem;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  border-radius: 999px;
  background: rgba(33, 74, 64, 0.1);
  color: var(--gumleaf);
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2,
.article-content h1,
.page-content h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--reef);
}

.hero-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

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

.hero-stat {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(24, 53, 67, 0.08);
}

.hero-stat strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  color: var(--gumleaf);
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-art {
  position: relative;
  min-height: 18rem;
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 209, 140, 0.95) 0%, rgba(239, 176, 107, 0.95) 14%, transparent 15%),
    linear-gradient(180deg, rgba(24, 53, 67, 0.02) 0%, rgba(24, 53, 67, 0.16) 100%),
    linear-gradient(160deg, #f4d6a0 0%, #d87a45 45%, #275346 46%, #183543 100%);
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  inset: auto;
}

.hero-art::before {
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 56%;
  background:
    linear-gradient(90deg, rgba(255, 248, 238, 0.15) 0 12%, transparent 12% 18%, rgba(255, 248, 238, 0.15) 18% 26%, transparent 26% 34%, rgba(255, 248, 238, 0.15) 34% 42%, transparent 42%),
    linear-gradient(180deg, transparent 0 58%, rgba(255, 248, 238, 0.22) 58% 60%, transparent 60%);
  clip-path: polygon(0 100%, 12% 52%, 21% 58%, 30% 44%, 41% 64%, 51% 34%, 61% 50%, 73% 24%, 84% 44%, 100% 0, 100% 100%);
  opacity: 0.75;
}

.hero-art::after {
  width: 48%;
  height: 38%;
  right: 5%;
  bottom: 8%;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.95), rgba(255, 240, 222, 0.7)),
    rgba(255, 248, 238, 0.9);
  box-shadow: var(--shadow-soft);
  transform: rotate(-7deg);
}

.hero-note {
  position: absolute;
  right: 11%;
  bottom: 16%;
  z-index: 1;
  width: 38%;
  color: var(--reef);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.25;
  transform: rotate(-7deg);
}

.hero-note small {
  display: block;
  margin-top: 0.35rem;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.content-shell {
  display: grid;
  gap: 1.4rem;
  padding-bottom: 4rem;
}

.section-card,
.article-panel,
.footer-card,
.support-card,
.review-card,
.faq-callout,
.page-card {
  background: rgba(255, 249, 241, 0.88);
  border: 1px solid rgba(24, 53, 67, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section-card,
.article-panel,
.footer-card,
.support-card,
.page-card {
  padding: 1.2rem;
}

.intro-grid,
.support-grid,
.summary-grid,
.review-grid,
.page-grid {
  display: grid;
  gap: 1rem;
}

.summary-strip {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.summary-pill {
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(33, 74, 64, 0.12), rgba(24, 53, 67, 0.05));
  border: 1px solid rgba(24, 53, 67, 0.07);
  padding: 0.95rem 1rem;
}

.summary-pill strong {
  display: block;
  color: var(--gumleaf);
  font-size: 1rem;
}

.summary-pill span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-header {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.section-header h2,
.article-content h2,
.page-content h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--reef);
  line-height: 1.08;
}

.section-header p,
.section-card p,
.page-content p,
.article-content p,
.article-content li,
.page-content li {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.72;
  color: var(--muted);
}

.section-header p:last-child,
.article-content p:last-child,
.page-content p:last-child {
  margin-bottom: 0;
}

.review-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.review-card {
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
  min-height: 100%;
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--paper);
  background: linear-gradient(180deg, var(--gumleaf-soft), var(--gumleaf));
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: rgba(24, 53, 67, 0.06);
  color: var(--reef);
  font-size: 0.86rem;
  font-weight: 600;
}

.review-card h3,
.article-content h3,
.page-content h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--reef);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.review-card p {
  margin: 0;
}

.offer-band {
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(217, 120, 65, 0.14), rgba(239, 176, 107, 0.12));
  border: 1px solid rgba(217, 120, 65, 0.16);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

.review-card a,
.cta-link,
.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: fit-content;
  min-height: 2.95rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: var(--reef);
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(24, 53, 67, 0.18);
}

.hero-link.secondary,
.review-card a.secondary {
  background: rgba(24, 53, 67, 0.06);
  color: var(--reef);
  box-shadow: none;
}

.list-block {
  margin: 0;
  padding-left: 1.15rem;
}

.list-block li + li {
  margin-top: 0.65rem;
}

.article-panel {
  overflow: hidden;
}

.article-content {
  display: grid;
  gap: 0;
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content ul,
.article-content ol,
.page-content ul,
.page-content ol {
  padding-left: 1.2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.article-content h2,
.article-content h3,
.article-content h4,
.page-content h2,
.page-content h3,
.page-content h4 {
  margin-top: 1.7rem;
  margin-bottom: 0.7rem;
}

.article-content h4,
.page-content h4 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gumleaf);
}

.article-content table,
.page-content table {
  display: block;
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  overflow: hidden;
  overflow-x: auto;
}

.article-content table,
.page-content table,
.article-content th,
.article-content td,
.page-content th,
.page-content td {
  border: 1px solid var(--line);
}

.article-content th,
.article-content td,
.page-content th,
.page-content td {
  padding: 0.82rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

.article-content th,
.page-content th {
  background: rgba(24, 53, 67, 0.07);
  color: var(--reef);
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
  border-radius: 18px;
}

#casino-widget-iframe {
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

.faq-callout {
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.65rem;
  background:
    linear-gradient(135deg, rgba(33, 74, 64, 0.12), rgba(24, 53, 67, 0.06)),
    rgba(255, 249, 241, 0.92);
}

.faq-callout strong {
  font-family: "Fraunces", Georgia, serif;
  color: var(--reef);
  font-size: 1.2rem;
}

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

.support-card h3,
.page-card h3 {
  margin-top: 0;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.poster-card {
  position: relative;
  overflow: hidden;
}

.poster-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 120, 65, 0.2) 0%, transparent 68%);
}

.page-content {
  display: grid;
  gap: 0;
}

.page-content .lede {
  font-size: 1.05rem;
  color: var(--ink);
}

.footer-card {
  margin-bottom: 2rem;
}

.page-footer-inner {
  padding-bottom: 2rem;
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--reef);
  background: rgba(24, 53, 67, 0.05);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
}

.smallprint {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-offer {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  width: min(calc(100% - 2rem), 320px);
  padding: 0.95rem;
  background:
    linear-gradient(150deg, rgba(24, 53, 67, 0.98), rgba(33, 74, 64, 0.96)),
    var(--reef);
  color: var(--paper);
  border-radius: 24px;
  box-shadow: 0 22px 40px rgba(16, 29, 37, 0.28);
  border: 1px solid rgba(255, 248, 238, 0.14);
}

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

.sticky-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.sticky-rank {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 248, 238, 0.85);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sticky-title {
  margin: 0.3rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.12;
}

.sticky-close {
  appearance: none;
  border: 0;
  background: rgba(255, 248, 238, 0.08);
  color: var(--paper);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font: inherit;
}

.sticky-stars {
  letter-spacing: 0.1em;
  color: #ffd18c;
}

.sticky-offer strong {
  display: block;
  margin-top: 0.85rem;
  font-size: 1rem;
  line-height: 1.45;
}

.sticky-offer a {
  width: 100%;
  margin-top: 0.95rem;
  background: linear-gradient(180deg, var(--sun-soft), var(--sun));
  color: var(--paper);
}

.hidden-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 780px) {
  .topbar-inner {
    padding: 1rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    display: block;
    width: auto;
  }

  .primary-nav ul {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0;
  }

  .hero {
    padding: 4rem 0 2.4rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 2rem;
    padding: 1.6rem;
  }

  .section-card,
  .article-panel,
  .footer-card,
  .support-card,
  .page-card {
    padding: 1.5rem;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  }

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

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .sticky-offer {
    right: 1.4rem;
    bottom: 1.4rem;
  }
}

@media (min-width: 1080px) {
  .content-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .summary-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}
