:root {
  --bg: #06080f;
  --bg-top: #101521;
  --panel: rgba(15, 20, 32, 0.92);
  --panel-strong: rgba(10, 13, 24, 0.96);
  --panel-soft: rgba(22, 28, 43, 0.88);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f1dd;
  --muted: #d1c9b3;
  --soft: #a79f8c;
  --gold: #ffbf2f;
  --gold-deep: #ff8c1a;
  --crimson: #ff5f3d;
  --ruby: #d92e4f;
  --teal: #56e4ff;
  --mint: #67f0a8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 191, 47, 0.12), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(255, 95, 61, 0.14), transparent 20%),
    linear-gradient(180deg, #121725 0%, #090b12 32%, #05070b 100%);
  line-height: 1.72;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 80%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 40vh;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.44));
  pointer-events: none;
  z-index: -1;
}

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

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

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(8, 11, 19, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.brand__name,
.site-nav,
.footer-nav,
.eyebrow,
.table-note,
th,
.takeaway-card span,
.mini-rank__rank,
.stat-card span,
.support-tag {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand__name {
  font-size: 1.08rem;
  color: var(--gold);
}

.brand__tag {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--muted);
}

.site-nav a,
.footer-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.anchor-nav a:hover {
  color: #101521;
  background: linear-gradient(135deg, var(--gold), #ffd770);
  transform: translateY(-1px);
}

main {
  padding-bottom: 52px;
}

.surface,
.support-hero,
.support-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  padding: 34px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.hero-panel {
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 191, 47, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(18, 23, 37, 0.96), rgba(34, 13, 20, 0.96)),
    var(--panel-strong);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 61, 0.22), rgba(255, 95, 61, 0));
}

.scoreboard {
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(86, 228, 255, 0.16), transparent 22%),
    linear-gradient(160deg, rgba(12, 16, 28, 0.98), rgba(14, 23, 38, 0.98));
}

.eyebrow,
.support-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow::before,
.support-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--crimson));
  box-shadow: 0 0 18px rgba(255, 191, 47, 0.5);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  line-height: 1.04;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
}

h4 {
  font-size: 1.08rem;
}

p,
li,
td {
  font-size: 1rem;
}

p:last-child,
li:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 20px;
}

.lede {
  max-width: 62ch;
  font-size: 1.1rem;
  color: #fff7e7;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  font-size: 1.3rem;
  color: var(--gold);
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.74rem;
}

.hero-note {
  margin-top: 20px;
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.leaderboard {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.leaderboard__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.leaderboard__item h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.leaderboard__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.leaderboard--promo {
  gap: 18px;
}

.leaderboard__item--offer {
  grid-template-columns: minmax(160px, 200px) minmax(0, 1fr) minmax(220px, 0.95fr) 170px;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(39, 49, 72, 0.95), rgba(24, 31, 48, 0.96));
  border: 1px solid rgba(91, 123, 214, 0.26);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.leaderboard__item--top {
  border-color: rgba(255, 210, 54, 0.85);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 210, 54, 0.24);
}

.leaderboard__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 124px;
}

.leaderboard__rank-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #101521;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.55rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.leaderboard__rank-badge--1 {
  background: linear-gradient(180deg, #ffd200, #ffb300);
}

.leaderboard__rank-badge--2,
.leaderboard__rank-badge--3 {
  background: linear-gradient(180deg, #5f8dff, #4b75dc);
  color: #f7fbff;
}

.leaderboard__logo {
  width: min(100%, 180px);
  min-height: 118px;
  padding: 18px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 20px;
  background: #f4f4f7;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.leaderboard__logo span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.leaderboard__logo small {
  color: #131c2f;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leaderboard__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leaderboard__main h3 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.leaderboard__stars {
  color: #ffd90f;
  font-size: 1.55rem;
  letter-spacing: 0.16em;
  text-shadow: 0 0 16px rgba(255, 217, 15, 0.28);
}

.leaderboard__offer {
  display: flex;
  align-items: center;
  margin: 0;
  color: #f5f4ec;
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
}

.leaderboard__actions {
  display: flex;
  align-items: center;
}

.leaderboard__cta {
  width: 100%;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, #5d8cff, #4a73d7);
  color: #f8fbff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 24px rgba(74, 115, 215, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.leaderboard__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(74, 115, 215, 0.32);
  filter: brightness(1.05);
}

.leaderboard__rank {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 191, 47, 0.24), rgba(255, 95, 61, 0.24));
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.25rem;
}

.leaderboard__score,
.rating-badge,
.score-pill {
  min-width: 68px;
  text-align: center;
  padding: 12px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff0af, #ffb32b);
  color: #1b1402;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 24px rgba(255, 191, 47, 0.22);
}

.leaderboard__play {
  width: 68px;
  min-width: 68px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff0af, #ffb32b);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 24px rgba(255, 191, 47, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.leaderboard__play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #1b1402;
  margin-left: 4px;
}

.leaderboard__play:hover,
.leaderboard__play:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 20px 32px rgba(255, 191, 47, 0.34);
  filter: brightness(1.03);
}

.leaderboard__play:focus-visible {
  outline: 3px solid rgba(255, 214, 100, 0.8);
  outline-offset: 3px;
}

.rank-1 .leaderboard__score,
.pick-card--champion .score-pill {
  background: linear-gradient(180deg, #fff6c8, #ffc82f);
  animation: pulse 2.8s ease-in-out infinite;
}

.scoreboard__note,
.muted-note,
.table-note {
  color: var(--soft);
}

.anchor-row {
  padding: 0 0 8px;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.anchor-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.content-section {
  padding: 18px 0;
}

.content-section > .surface,
.arena-callout,
.support-hero,
.support-card {
  padding: 34px;
}

.section-heading {
  margin-bottom: 18px;
}

.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.takeaway-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.takeaway-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.9rem;
}

.frame-shell {
  margin: 18px 0 28px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 191, 47, 0.16), rgba(255, 95, 61, 0.08)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#casino-widget-iframe {
  height: 1750px;
  min-height: 1750px;
  border-radius: calc(var(--radius-lg) - 6px);
  background: #ffffff;
}

.mini-rank-grid,
.quick-picks-grid {
  display: grid;
  gap: 16px;
}

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

.mini-rank {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.mini-rank__rank {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
}

.mini-rank h4 {
  margin-bottom: 8px;
}

.mini-rank p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.mini-rank strong {
  color: var(--mint);
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 16px 0 10px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: rgba(255, 255, 255, 0.03);
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

th {
  background: linear-gradient(180deg, rgba(255, 191, 47, 0.18), rgba(255, 95, 61, 0.12));
  color: #fff6dc;
  font-size: 0.86rem;
}

tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.prose-block p + p {
  margin-top: 14px;
}

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

.pick-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 191, 47, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
}

.pick-card--champion {
  background:
    radial-gradient(circle at top right, rgba(255, 191, 47, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 191, 47, 0.1), rgba(255, 255, 255, 0.02));
}

.pick-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.pick-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.2rem;
}

.review-stack {
  display: grid;
  gap: 20px;
}

.review-card__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 18px;
}

.review-grid,
.proscons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-panel,
.proscons section {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-panel h4,
.proscons h4 {
  color: var(--gold);
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.warning-box {
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 95, 61, 0.14), rgba(255, 191, 47, 0.1));
  border: 1px solid rgba(255, 191, 47, 0.16);
}

.site-footer {
  padding: 12px 0 36px;
}

.site-footer__shell {
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.footer-copy {
  max-width: 54ch;
  color: var(--muted);
}

.support-page main {
  padding-top: 32px;
}

.support-layout {
  width: min(calc(100% - 32px), 980px);
  margin: 0 auto 42px;
  display: grid;
  gap: 18px;
}

.support-hero {
  background:
    radial-gradient(circle at top right, rgba(255, 191, 47, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(18, 23, 37, 0.96), rgba(33, 15, 24, 0.96));
}

.support-card {
  background: rgba(255, 255, 255, 0.04);
}

.support-card p {
  color: var(--muted);
}

.contact-line {
  font-size: 1.08rem;
  color: #fff7e7;
}

.contact-line a {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

.reveal-1 {
  animation-delay: 0.08s;
}

.reveal-2 {
  animation-delay: 0.18s;
}

.reveal-3 {
  animation-delay: 0.28s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 24px rgba(255, 191, 47, 0.22);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 18px 28px rgba(255, 191, 47, 0.35);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .takeaway-grid,
  .mini-rank-grid,
  .quick-picks-grid,
  .review-grid,
  .proscons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header__inner,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid,
  .takeaway-grid,
  .mini-rank-grid,
  .quick-picks-grid,
  .review-grid,
  .proscons,
  .hero-stat-grid,
  .review-card__header {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .scoreboard,
  .content-section > .surface,
  .arena-callout,
  .support-hero,
  .support-card,
  .site-footer__shell {
    padding: 24px;
  }

  .leaderboard__item,
  .leaderboard__item--offer {
    grid-template-columns: 1fr;
  }

  .leaderboard__media,
  .leaderboard__actions {
    justify-content: flex-start;
  }

  .leaderboard__cta {
    width: 100%;
  }

  #casino-widget-iframe {
    height: 1750px;
    min-height: 1750px;
  }

  table {
    min-width: 620px;
  }
}