:root {
  --bg: #06111f;
  --bg-2: #0b1f3a;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 223, 126, 0.18);
  --text: #ffffff;
  --muted: #aab7c4;
  --gold: #f7c948;
  --gold-soft: #ffdf7e;
  --red-neon: #ff2d55;
  --blue-neon: #3d8bff;
  --glow-gold: 0 0 20px rgba(247, 201, 72, 0.45), 0 0 60px rgba(247, 201, 72, 0.15);
  --glow-red: 0 0 18px rgba(255, 45, 85, 0.4);
  --glow-blue: 0 0 18px rgba(61, 139, 255, 0.35);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1200px;
  --header-height: 76px;
  --focus-ring: 0 0 0 3px rgba(247, 201, 72, 0.35);
  --font-display: "Outfit", Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.7;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(247, 201, 72, 0.18), transparent 24%),
    radial-gradient(circle at 78% 12%, rgba(83, 130, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #06111f 0%, #081629 48%, #06111f 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(82px);
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
}

.site-shell::before {
  top: 120px;
  left: -90px;
  background: rgba(247, 201, 72, 0.34);
}

.site-shell::after {
  right: -90px;
  bottom: 120px;
  background: rgba(65, 124, 255, 0.28);
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 76px 0;
}

.section-head {
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.8rem;
  backdrop-filter: blur(14px);
}

.section-title {
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.glass,
.card,
.hero-panel,
.toc,
.article,
.faq-item,
.footer-panel,
.cta-band,
.meta-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 17, 31, 0.72);
  backdrop-filter: blur(20px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 17, 31, 0.94);
  border-bottom-color: rgba(255, 223, 126, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 30;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--gold);
  color: #09111d;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
  outline: none;
  box-shadow: var(--focus-ring);
}

.header-inner {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  width: auto;
  height: 48px;
  max-width: 140px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 22px rgba(247, 201, 72, 0.32);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.logo-link:hover img {
  box-shadow: 0 0 30px rgba(247, 201, 72, 0.5);
  transform: scale(1.02);
}

.logo-copy {
  display: grid;
  gap: 2px;
}

.logo-copy strong {
  font-size: 1rem;
}

.logo-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  font-size: 0.9rem;
}

.nav-toggle-text {
  line-height: 1;
}

.nav-toggle-icon {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(255, 223, 126, 0.28);
  background: rgba(247, 201, 72, 0.1);
  color: var(--gold-soft);
}

.header-nav {
  flex: 1 0 100%;
  display: none;
  padding: 14px;
  border-radius: 20px;
  background: rgba(6, 17, 31, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 101;
}

.header-nav.open {
  display: block;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a:not(.btn) {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  border: 1px solid transparent;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn):focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.nav-links a:not(.btn).active {
  color: #09111d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: transparent;
  font-weight: 800;
}

.nav-cta-mobile {
  display: flex;
  width: 100%;
  margin-top: 6px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #09111d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 16px 30px rgba(247, 201, 72, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-external::after {
  content: "↗";
  margin-left: 8px;
  font-size: 0.92em;
  line-height: 1;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.hero {
  padding: 42px 0 28px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero-copy h1 {
  margin: 18px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1rem;
}

.meta-row,
.mini-grid,
.grid-4,
.guide-grid,
.related-grid,
.info-grid {
  display: grid;
  gap: 18px;
}

.meta-panel {
  padding: 18px;
  border-radius: 20px;
}

.meta-panel strong {
  display: block;
  margin-bottom: 4px;
}

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

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 14px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(247, 201, 72, 0.14), rgba(255, 255, 255, 0.03) 42%, rgba(64, 119, 255, 0.12)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(247, 201, 72, 0.2);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(65, 124, 255, 0.18);
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 28px 22px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 223, 126, 0.24);
  background:
    radial-gradient(circle at 50% 12%, rgba(247, 201, 72, 0.28), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(65, 124, 255, 0.16), transparent 34%),
    linear-gradient(165deg, #122a4d 0%, #06111f 52%, #0a1a31 100%);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-visual-logo {
  width: min(58%, 230px);
  height: auto;
  margin-bottom: 18px;
  border-radius: 16px;
  object-fit: contain;
  filter: drop-shadow(0 14px 32px rgba(247, 201, 72, 0.38));
}

.hero-visual-title {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

.hero-visual-copy {
  margin: 0;
  color: #d5dee8;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.card-nav {
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card-nav:hover,
.card-nav:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 223, 126, 0.32);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  outline: none;
}

.card-nav:focus-visible {
  box-shadow: var(--focus-ring), 0 24px 48px rgba(0, 0, 0, 0.32);
}

.card-nav .card-link {
  margin-top: auto;
  padding-top: 14px;
}

.card h3 {
  margin: 16px 0 12px;
  font-size: 1.16rem;
}

.card p,
.article p,
.article li,
.faq-answer,
.footer-copy,
.author-box p {
  color: var(--muted);
}

.icon-chip {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 223, 126, 0.22), rgba(247, 201, 72, 0.08));
  border: 1px solid rgba(255, 223, 126, 0.24);
  color: var(--gold-soft);
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
}

.icon-chip--label {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 0.94rem;
}

.card-arrow {
  transition: transform 0.18s ease;
}

.card-nav:hover .card-arrow,
.card-nav:focus-visible .card-arrow {
  transform: translateX(4px);
}

.category-nav {
  margin-top: 4px;
}

.content-layout {
  display: grid;
  gap: 22px;
}

.toc {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 18px);
  padding: 22px;
  border-radius: var(--radius-lg);
}

.toc h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.toc a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.toc a:hover,
.toc a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.toc a.active {
  background: rgba(247, 201, 72, 0.12);
  color: var(--gold-soft);
  border-left: 3px solid var(--gold);
  padding-left: 9px;
  font-weight: 700;
}

.article {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.article h2,
.article h3 {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.article h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  line-height: 1.15;
}

.article h3 {
  margin: 22px 0 10px;
  font-size: 1.18rem;
}

.article p,
.article ul,
.article ol {
  margin: 0 0 16px;
}

.article ul,
.article ol {
  padding-left: 20px;
}

.highlight-box {
  margin: 24px 0;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 223, 126, 0.2);
  background: linear-gradient(135deg, rgba(247, 201, 72, 0.12), rgba(255, 255, 255, 0.04));
}

.highlight-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
}

.guide-step {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #09111d;
  font-weight: 900;
}

.breadcrumbs {
  padding-top: 18px;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--gold-soft);
  font-weight: 700;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  text-decoration: underline;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(170, 183, 196, 0.56);
}

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

.faq-item {
  border-radius: 20px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--gold-soft);
  font-size: 1.15rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 22px 20px;
}

.author-box {
  padding: 24px;
  border-radius: 24px;
}

.author-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.cta-band {
  padding: 28px;
  border-radius: 30px;
  color: #09111d;
  background:
    linear-gradient(135deg, rgba(255, 223, 126, 0.96), rgba(247, 201, 72, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.cta-band h2,
.cta-band p {
  margin: 0;
}

.cta-band p {
  margin-top: 10px;
  color: rgba(9, 17, 29, 0.8);
}

.cta-band .btn-primary {
  background: #09111d;
  color: var(--gold-soft);
  box-shadow: none;
}

.footer-panel {
  margin-top: 36px;
  padding: 40px 32px 120px;
  border-radius: 28px 28px 0 0;
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-soft);
}

.footer-copy {
  margin: 14px 0 0;
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 24;
  display: none;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  color: #09111d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-weight: 900;
  box-shadow: 0 20px 42px rgba(247, 201, 72, 0.25);
}

.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-2px);
  outline: none;
  box-shadow: var(--focus-ring), 0 20px 42px rgba(247, 201, 72, 0.25);
}

.sticky-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 25;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(6, 17, 31, 0.96);
  border: 1px solid rgba(255, 223, 126, 0.16);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.sticky-mobile-cta p {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.sticky-mobile-cta .btn {
  min-height: 46px;
  padding: 0 16px;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 760px) {
  .grid-4,
  .mini-grid,
  .guide-grid,
  .related-grid,
  .info-grid,
  .meta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .sticky-mobile-cta {
    left: 50%;
    right: auto;
    width: min(700px, calc(100% - 24px));
    transform: translateX(-50%);
  }
}

@media (min-width: 980px) {
  .header-inner {
    flex-wrap: nowrap;
    gap: 18px;
  }

  .nav-toggle {
    display: none;
  }

  .header-nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
  }

  .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a:not(.btn) {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 0.9rem;
  }

  .nav-links a:not(.btn):hover,
  .nav-links a:not(.btn):focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-links a:not(.btn).active {
    color: #09111d;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    box-shadow: 0 8px 20px rgba(247, 201, 72, 0.2);
  }

  .nav-cta-mobile {
    display: none;
  }

  .floating-cta {
    display: inline-flex;
  }

  .sticky-mobile-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  }

  .content-layout {
    grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  }

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

  .meta-row,
  .guide-grid,
  .info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-panel {
    padding-bottom: 44px;
  }
}

/* Neon glow & luxury casino accents — merged into :root above */

.neon-text {
  color: var(--gold-soft);
  text-shadow: var(--glow-gold);
}

.neon-border {
  border: 1px solid rgba(255, 223, 126, 0.35);
  box-shadow: var(--glow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-glow {
  position: relative;
  overflow: hidden;
  animation: pulse-glow 2.4s ease-in-out infinite;
}

.btn-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold-soft), var(--red-neon), var(--blue-neon), var(--gold));
  opacity: 0.55;
  z-index: -1;
  filter: blur(8px);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 16px 30px rgba(247, 201, 72, 0.22), var(--glow-gold); }
  50% { box-shadow: 0 20px 40px rgba(247, 201, 72, 0.38), 0 0 80px rgba(255, 45, 85, 0.2); }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.trust-badge strong {
  color: var(--gold-soft);
}

.games-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.game-card {
  padding: 18px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}

.game-card .game-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.8rem;
  background: linear-gradient(145deg, rgba(255, 45, 85, 0.2), rgba(61, 139, 255, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.game-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.game-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.game-card .hot-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 45, 85, 0.18);
  color: #ff6b8a;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.steps-grid {
  display: grid;
  gap: 20px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 900;
  font-size: 1.2rem;
  color: #09111d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: var(--glow-gold);
}

.promo-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0;
}

.promo-banner img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

.promo-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(6, 17, 31, 0.95));
}

.promo-overlay h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-soft);
  text-shadow: var(--glow-gold);
}

.testimonial-grid {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 3rem;
  color: rgba(247, 201, 72, 0.2);
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold-soft);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #09111d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.stats-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin: 28px 0;
}

.stat-box {
  padding: 18px;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-soft);
  text-shadow: var(--glow-gold);
}

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

.eeat-box {
  padding: 28px;
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--gold);
}

.eeat-box h2 {
  margin: 0 0 14px;
}

.eeat-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.eeat-item strong {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 4px;
}

.seo-content {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.seo-content h2 {
  margin: 28px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.seo-content h2:first-child {
  margin-top: 0;
}

.seo-content p,
.seo-content li {
  color: var(--muted);
}

.red-accent {
  color: var(--red-neon);
}

.blue-accent {
  color: var(--blue-neon);
}

@media (min-width: 760px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 980px) {
  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .btn {
    transition: none;
  }

  .btn-glow {
    animation: none;
  }

  .winner-ticker-track {
    animation: none;
  }

  .reveal,
  .reveal-stagger {
    opacity: 1;
    transform: none;
  }
}

/* ===== PREMIUM TEMPLATE v2 ===== */

.top-bar {
  position: relative;
  z-index: 101;
  background: linear-gradient(90deg, rgba(255, 45, 85, 0.15), rgba(247, 201, 72, 0.12), rgba(61, 139, 255, 0.12));
  border-bottom: 1px solid rgba(255, 223, 126, 0.15);
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 0;
  text-align: center;
}

.top-bar p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.top-bar a {
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-bar-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-neon);
  box-shadow: 0 0 12px var(--red-neon);
  animation: live-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.header-cta {
  display: none;
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.88rem;
}

.btn-lg {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.btn-row--center {
  justify-content: center;
}

.hero {
  position: relative;
  padding: 48px 0 32px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-orb--gold {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -120px;
  background: rgba(247, 201, 72, 0.35);
}

.hero-orb--red {
  width: 300px;
  height: 300px;
  top: 20%;
  right: -80px;
  background: rgba(255, 45, 85, 0.25);
}

.hero-orb--blue {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: 40%;
  background: rgba(61, 139, 255, 0.2);
}

.eyebrow--live {
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: live-pulse 1.5s ease-in-out infinite;
}

.hero-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  max-width: 580px;
  line-height: 1.75;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 40%, var(--red-neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(247, 201, 72, 0.3));
}

.hero-showcase {
  position: relative;
}

.showcase-frame {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.showcase-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}

.showcase-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showcase-badge--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #09111d;
  box-shadow: var(--glow-gold);
}

.showcase-badge--red {
  background: rgba(255, 45, 85, 0.9);
  color: #fff;
  box-shadow: var(--glow-red);
  animation: live-pulse 2s ease-in-out infinite;
}

.showcase-image {
  margin: 0;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 8px);
}

.showcase-prize {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(6, 17, 31, 0.6);
  border: 1px solid rgba(255, 223, 126, 0.2);
}

.showcase-prize-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.showcase-prize-amount {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-soft);
  text-shadow: var(--glow-gold);
  margin-right: auto;
}

.winner-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
  padding: 12px 0;
}

.winner-ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
  padding-left: 100%;
}

.winner-ticker-track span {
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.winner-ticker-track strong {
  color: var(--gold-soft);
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section--compact {
  padding: 40px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-copy {
  margin-inline: auto;
}

.trust-badge {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 16px;
}

.trust-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.trust-badge span span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.trust-badge small {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(170, 183, 196, 0.8);
}

.stat-icon {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.stat-box--accent {
  border-color: rgba(61, 139, 255, 0.25);
  background: linear-gradient(180deg, rgba(61, 139, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.stat-box--gold {
  border-color: rgba(255, 223, 126, 0.3);
  background: linear-gradient(180deg, rgba(247, 201, 72, 0.12), rgba(255, 255, 255, 0.04));
}

.feature-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red-neon), var(--blue-neon));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35), var(--glow-gold);
  border-color: rgba(255, 223, 126, 0.25);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.6rem;
  margin-bottom: 16px;
  background: linear-gradient(145deg, rgba(247, 201, 72, 0.2), rgba(255, 45, 85, 0.1));
  border: 1px solid rgba(255, 223, 126, 0.2);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

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

.feature-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(247, 201, 72, 0.12);
  border: 1px solid rgba(255, 223, 126, 0.2);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.game-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.game-card .game-icon {
  margin: 0;
}

.game-card--featured {
  border-color: rgba(255, 223, 126, 0.3);
  background: linear-gradient(180deg, rgba(247, 201, 72, 0.1), rgba(255, 255, 255, 0.04));
}

.game-rtp {
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.game-rtp span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.hot-tag--gacor { background: rgba(255, 45, 85, 0.2); color: #ff6b8a; }
.hot-tag--4d { background: rgba(61, 139, 255, 0.2); color: var(--blue-neon); }
.hot-tag--vip { background: rgba(247, 201, 72, 0.2); color: var(--gold-soft); }
.hot-tag--new { background: rgba(34, 197, 94, 0.2); color: #4ade80; }

.steps-timeline {
  display: grid;
  gap: 20px;
  position: relative;
}

.payment-strip {
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.payment-strip-title {
  margin: 0 0 16px;
  font-weight: 800;
  color: var(--gold-soft);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.payment-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.payment-chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.payment-chip:hover {
  border-color: rgba(255, 223, 126, 0.3);
  color: var(--text);
}

.bonus-layout {
  display: grid;
  gap: 24px;
}

.promo-banner--large img {
  aspect-ratio: 1;
  object-fit: cover;
}

.promo-overlay-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 45, 85, 0.25);
  color: #ff8fa8;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-overlay p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 0.94rem;
}

.bonus-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.bonus-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bonus-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 223, 126, 0.25);
}

.bonus-card-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonus-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.bonus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-top {
  display: grid;
  gap: 28px;
}

.footer-brand .logo-link img {
  height: 56px;
  margin-bottom: 14px;
}

.footer-heading {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav a:hover {
  color: var(--gold-soft);
  padding-left: 4px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-disclaimer {
  font-size: 0.78rem !important;
  opacity: 0.75;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.54s; opacity: 1; transform: none; }

@media (min-width: 760px) {
  .bonus-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

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

@media (min-width: 980px) {
  .header-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 480px);
    gap: 40px;
  }

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

  .steps-timeline::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 223, 126, 0.3), transparent);
    z-index: 0;
  }

  .steps-timeline .step-card {
    position: relative;
    z-index: 1;
    flex-direction: column;
    text-align: center;
    grid-template-columns: 1fr;
  }

  .steps-timeline .step-number {
    margin: 0 auto 12px;
  }
}
