:root {
  --bg: #040608;
  --bg-soft: #0c1218;
  --panel: rgba(19, 25, 33, 0.9);
  --panel-strong: rgba(15, 19, 26, 0.98);
  --panel-gloss: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 22%, rgba(255, 255, 255, 0));
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #eef3f7;
  --muted: #b7c0ca;
  --money: #72ff9b;
  --money-strong: #23db68;
  --gold: #ffd56a;
  --gold-deep: #f4a300;
  --danger: #ff6f61;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(83, 98, 117, 0.28), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(37, 219, 104, 0.14), transparent 24%),
    linear-gradient(180deg, #070a0d 0%, #05070a 28%, #040608 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
li,
td,
th,
input,
textarea,
button {
  font-size: 1rem;
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.25rem, 7vw, 4.7rem);
}

h2 {
  font-size: clamp(1.65rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
}

p,
ul,
ol,
table {
  margin: 0 0 1.2rem;
}

ul,
ol {
  padding-left: 1.3rem;
}

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

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 8, 12, 0.72);
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

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

.brand-mark svg {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

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

.main-nav a,
.footer-nav a {
  color: var(--muted);
  padding: 0.65rem 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 {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

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

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 213, 106, 0.17), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(114, 255, 155, 0.12), transparent 22%);
  pointer-events: none;
}

.hero-panel,
.promo-strip,
.review-card,
.deep-dive-card,
.article-shell,
.support-card,
.sticky-popup,
.notice-panel {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-panel,
.article-shell,
.support-card,
.sticky-popup {
  overflow: hidden;
}

.hero-panel::before,
.promo-strip::before,
.review-card::before,
.deep-dive-card::before,
.article-shell::before,
.support-card::before,
.sticky-popup::before,
.notice-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--panel-gloss);
  pointer-events: none;
}

.hero-panel {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-radius: var(--radius-xl);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(114, 255, 155, 0.28);
  background: rgba(114, 255, 155, 0.09);
  color: var(--money);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.hero-metrics,
.review-grid,
.deep-dive-grid,
.support-grid {
  display: grid;
  gap: 1rem;
}

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

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

.button {
  color: #041108;
  background: linear-gradient(180deg, #a8ffb8 0%, #4be87f 56%, #26bf5b 100%);
  box-shadow: 0 12px 30px rgba(35, 219, 104, 0.28);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 213, 106, 0.34);
  background: linear-gradient(180deg, rgba(255, 213, 106, 0.18), rgba(255, 213, 106, 0.08));
}

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

.hero-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.metric {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  color: var(--gold);
}

.metric span {
  color: var(--muted);
}

.section-pad {
  padding: 1.2rem 0;
}

.section-heading {
  margin-bottom: 1rem;
}

.promo-strip,
.notice-panel {
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.promo-strip p,
.notice-panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.iframe-panel {
  padding: 1rem 0 0;
}

#casino-widget-iframe {
  border-radius: 22px;
  background: #0d1218;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.review-grid,
.deep-dive-grid,
.support-grid {
  grid-template-columns: 1fr;
}

.review-card,
.deep-dive-card,
.support-card {
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.rank-badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rank-badge {
  background: rgba(255, 213, 106, 0.16);
  color: var(--gold);
  border: 1px solid rgba(255, 213, 106, 0.28);
}

.pill {
  background: rgba(114, 255, 155, 0.1);
  color: var(--money);
  border: 1px solid rgba(114, 255, 155, 0.22);
}

.review-card h3,
.deep-dive-title {
  margin-bottom: 0.35rem;
}

.deep-dive-title {
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.2;
}

.review-card p,
.deep-dive-card p,
.support-card p,
.footer-copy,
.footer-legal {
  color: var(--muted);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.review-card .button,
.review-card .button-secondary {
  width: 100%;
}

.popular-list {
  display: grid;
  gap: 0.85rem;
  padding-left: 1.15rem;
}

.popular-list li {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-shell {
  margin: 1.2rem 0 2rem;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border-radius: var(--radius-xl);
}

.article-shell > * {
  position: relative;
}

.article-shell h2 {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.article-shell h3 {
  margin-top: 1.6rem;
  color: var(--gold);
}

.article-shell strong {
  color: var(--text);
}

.article-shell table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.article-shell thead,
.article-shell tbody,
.article-shell tr {
  width: 100%;
}

.article-shell th,
.article-shell td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.article-shell th {
  color: var(--gold);
  background: rgba(255, 213, 106, 0.08);
}

.article-shell tr:last-child td {
  border-bottom: 0;
}

.article-shell ul li::marker,
.article-shell ol li::marker,
.popular-list li::marker {
  color: var(--money);
}

.support-section {
  padding: 2rem 0 3rem;
}

.support-card h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.support-card h2 {
  margin-top: 1.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.16));
}

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

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

.sticky-popup {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  border-radius: 22px;
  padding: 1rem;
  background: rgba(8, 12, 16, 0.95);
}

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

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

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

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

.popup-title {
  font-size: 1.15rem;
  font-weight: 800;
}

.popup-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.popup-offer {
  margin: 0.65rem 0 0.95rem;
  font-weight: 700;
}

.popup-button {
  width: 100%;
  color: #041108;
  background: linear-gradient(180deg, #a8ffb8 0%, #4be87f 56%, #26bf5b 100%);
}

.legal-note {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 700px) {
  .hero-actions {
    grid-template-columns: repeat(2, max-content);
  }

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

  .footer-inner {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }

  .sticky-popup {
    left: auto;
    right: 1.2rem;
    width: min(360px, calc(100vw - 2rem));
  }
}

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

  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .deep-dive-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 1.25rem;
    align-items: center;
  }

  .hero-metrics {
    margin-top: 0;
  }
}

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

  .header-inner {
    min-height: 72px;
  }

  .article-shell table {
    font-size: 0.95rem;
  }
}
