:root {
  --bg: #0f120d;
  --panel: #152014;
  --panel-strong: #1c2a1a;
  --card: rgba(24, 33, 21, 0.9);
  --text: #f7edd1;
  --muted: #d6c9a2;
  --accent: #d4a63a;
  --accent-strong: #f0c45f;
  --red: #8a1f26;
  --emerald: #1d5f46;
  --border: rgba(240, 196, 95, 0.24);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(212, 166, 58, 0.2), transparent 28%),
    radial-gradient(circle at left, rgba(138, 31, 38, 0.24), transparent 25%),
    linear-gradient(180deg, #1d2718 0%, #12160f 30%, #0d100b 100%);
  line-height: 1.65;
}

a {
  color: var(--accent-strong);
}

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

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

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
}

.site-shell::before {
  top: -8rem;
  left: -6rem;
  background: var(--red);
}

.site-shell::after {
  right: -6rem;
  bottom: 8rem;
  background: var(--emerald);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(13, 16, 11, 0.85);
  border-bottom: 1px solid var(--border);
}

.topbar-inner,
.footer-inner,
.page-main {
  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 {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.brand-mark {
  color: var(--accent-strong);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(240, 196, 95, 0.3);
  border-radius: 999px;
  background: rgba(138, 31, 38, 0.18);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.menu-toggle-line {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.18rem 0;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  width: min(88vw, 320px);
  padding: 5.5rem 1.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(20, 26, 17, 0.98), rgba(8, 10, 7, 0.98));
  border-left: 1px solid rgba(240, 196, 95, 0.24);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu nav {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.02rem;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(240, 196, 95, 0.3);
  border-radius: 50%;
  background: rgba(138, 31, 38, 0.18);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 29;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav a,
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.footer-links a:hover,
.brand:hover {
  color: var(--accent-strong);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 1.75rem;
}

.hero-card,
.content-card,
.legal-card {
  background: linear-gradient(180deg, rgba(25, 33, 22, 0.96), rgba(17, 22, 15, 0.94));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(240, 196, 95, 0.32);
  border-radius: 999px;
  background: rgba(138, 31, 38, 0.24);
  color: var(--accent-strong);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.content-card h1,
.content-card h2,
.content-card h3,
.content-card h4,
.legal-card h1,
.legal-card h2,
.legal-card h3 {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  line-height: 1.15;
  text-wrap: balance;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  color: #fff4cc;
}

.hero p {
  max-width: 52rem;
  color: var(--muted);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.meta-pill {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(29, 95, 70, 0.24);
  border: 1px solid rgba(212, 166, 58, 0.2);
  color: var(--text);
  font-size: 0.88rem;
}

.page-main {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}

.content-card,
.legal-card {
  padding: 1.3rem;
}

.content-card p,
.content-card li,
.content-card th,
.content-card td,
.legal-card p,
.legal-card li {
  color: var(--text);
}

.content-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.4rem;
}

.content-card h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  color: #fff0b8;
}

.content-card h3 {
  margin-top: 1.65rem;
  margin-bottom: 0.65rem;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  color: var(--accent-strong);
  overflow-wrap: anywhere;
}

.content-card h4 {
  margin-top: 1.25rem;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f8d478;
  overflow-wrap: anywhere;
}

.content-card ul,
.content-card ol,
.legal-card ul {
  padding-left: 1.2rem;
}

.content-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.3rem;
  border-radius: 18px;
  background: rgba(10, 12, 9, 0.28);
  border: 1px solid rgba(240, 196, 95, 0.16);
}

.content-card th,
.content-card td {
  padding: 0.9rem 0.8rem;
  border-bottom: 1px solid rgba(240, 196, 95, 0.12);
  text-align: left;
}

.content-card th {
  background: rgba(138, 31, 38, 0.28);
  color: #fff0b8;
}

.spotlight-section {
  margin: 1.75rem 0 0.5rem;
  padding: 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(240, 196, 95, 0.2);
  background:
    linear-gradient(135deg, rgba(138, 31, 38, 0.25), rgba(29, 95, 70, 0.2)),
    rgba(19, 24, 16, 0.9);
}

.spotlight-section h2 {
  margin-top: 0;
}

.review-card {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(10, 12, 9, 0.45);
  border: 1px solid rgba(240, 196, 95, 0.22);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 166, 58, 0.12);
  color: var(--accent-strong);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-main {
  display: grid;
  gap: 0.65rem;
}

.review-main h3,
.review-main p {
  margin: 0;
}

.cta-link,
.popup-button,
.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 196, 95, 0.38);
  background: linear-gradient(180deg, #f0c45f, #d49a27);
  color: #221605;
  text-decoration: none;
  font-weight: 700;
}

.cta-link:hover,
.popup-button:hover,
.hero-link:hover {
  background: linear-gradient(180deg, #ffd97b, #e0ab34);
}

.five-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0 0 0 1.2rem;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(8, 10, 7, 0.85);
}

.footer-inner {
  padding: 1.4rem 0 2.6rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-bottom: 0.7rem;
}

.footer-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.sticky-popup {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  width: min(92vw, 340px);
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(240, 196, 95, 0.3);
  background: linear-gradient(180deg, rgba(23, 30, 20, 0.97), rgba(10, 14, 10, 0.96));
  box-shadow: var(--shadow);
}

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

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

.popup-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(138, 31, 38, 0.3);
  border: 1px solid rgba(240, 196, 95, 0.25);
  color: #fff0b8;
  font-weight: 700;
}

.popup-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
}

.popup-title {
  margin: 0.45rem 0 0;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 1.15rem;
  color: #fff4cc;
}

.popup-stars {
  margin: 0.25rem 0 0.55rem;
  color: var(--accent-strong);
  letter-spacing: 0.12em;
}

.popup-offer {
  margin: 0 0 0.95rem;
  color: var(--text);
}

.legal-card {
  margin-top: 2rem;
}

.legal-card h1 {
  margin-top: 0;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

@media (min-width: 760px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-card,
  .content-card,
  .legal-card {
    padding: 2rem;
  }

  .review-card {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}

@media (max-width: 759px) {
  .nav {
    display: none;
  }

  .topbar-inner {
    align-items: center;
    flex-direction: row;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #casino-widget-iframe {
    height: 1850px !important;
  }

  .content-card table {
    display: block;
    overflow-x: auto;
  }

  .content-card th,
  .content-card td {
    min-width: 140px;
  }
}
