:root {
  --gold-primary: #d4a017;
  --gold-light: #ffe08a;
  --gold-soft: #f5e6c8;
  --red-fortune: #c62828;
  --red-deep: #8b1a1a;
  --sun-glow: #ffb347;
  --teal-accent: #2ec4b6;
  --jade-green: #1b8a6b;
  --bg-warm: #fff8f0;
  --bg-section: #fff0e6;
  --bg-card: #ffffff;
  --text-primary: #1a1210;
  --text-muted: #5c4f47;
  --border-soft: rgba(212, 160, 23, 0.22);
  --shadow-soft: 0 18px 48px rgba(139, 26, 26, 0.08);
  --shadow-card: 0 10px 28px rgba(26, 18, 16, 0.06);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --header-height: 68px;
  --sticky-cta-height: 64px;
  --font-ui: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", "DM Sans", system-ui, sans-serif;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

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

a {
  color: var(--red-deep);
}

a:hover {
  color: var(--red-fortune);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  color: var(--text-primary);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand img {
  width: auto;
  height: 44px;
  max-width: min(176px, 46vw);
  object-fit: contain;
}

.nav-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.primary-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 1.25rem 1rem;
  background: rgba(255, 248, 240, 0.98);
  border-bottom: 1px solid var(--border-soft);
}

.primary-nav.is-open {
  display: flex;
}

.primary-nav a {
  padding: 0.75rem 0;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(26, 18, 16, 0.06);
}

.header-meta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.header-meta strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 999px;
  background: var(--red-fortune);
  color: #fff;
  font-size: 0.75rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.25rem 2.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 179, 71, 0.28), transparent 42%),
    radial-gradient(circle at 15% 0%, rgba(198, 40, 40, 0.12), transparent 38%),
    linear-gradient(180deg, #fff3e8 0%, var(--bg-warm) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-intro {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.chip-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red-fortune);
  line-height: 1.1;
}

.chip-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.affiliate-note {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  border-left: 3px solid var(--gold-primary);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.affiliate-note a {
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--text-primary);
  box-shadow: 0 10px 24px rgba(212, 160, 23, 0.28);
}

.btn--ghost {
  background: transparent;
  border-color: var(--gold-primary);
  color: var(--red-deep);
}

.hero-visual {
  position: relative;
  margin: 0;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.hero-visual-bg {
  position: absolute;
  width: min(100%, 420px);
  max-height: 360px;
  object-fit: contain;
  opacity: 0.42;
  filter: blur(0.2px);
  transform: translateY(8%);
}

.hero-visual-fg {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  filter: drop-shadow(0 18px 28px rgba(139, 26, 26, 0.18));
}

.hero-coin {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--gold-primary);
  background: radial-gradient(circle at 30% 30%, #fff6d6, var(--gold-primary));
  opacity: 0.55;
}

.hero-coin--one {
  top: 8%;
  left: 6%;
}

.hero-coin--two {
  bottom: 10%;
  right: 8%;
}

.section {
  padding: 3rem 1.25rem;
}

.section--alt {
  background: var(--bg-section);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  min-width: 0;
}

.section-header {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.section-header h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0;
  color: var(--text-muted);
}

.fact-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.fact-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26, 18, 16, 0.06);
}

.fact-card-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.fact-card-source {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

.fact-item {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fffdfa 0%, #fff7ee 100%);
  border: 1px solid rgba(26, 18, 16, 0.05);
}

.fact-item dt {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.fact-item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.split-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split-visual {
  margin: 0;
  display: flex;
  justify-content: center;
}

.character-cutout {
  width: min(100%, 280px);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 14px 24px rgba(139, 26, 26, 0.12));
}

.split-visual img:not(.character-cutout) {
  width: min(100%, 280px);
  filter: drop-shadow(0 14px 24px rgba(139, 26, 26, 0.12));
}

.split-copy h3 {
  margin: 1.5rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.split-copy p,
.split-copy ul {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.split-copy ul {
  padding-left: 1.2rem;
}

.ways-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.ways-figure {
  margin: 0;
  max-width: 100%;
}

.ways-top-row {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  gap: 0.35rem;
  align-items: end;
  max-width: 360px;
  margin: 0 auto 0.25rem;
}

.ways-col-spacer {
  min-height: 1px;
}

.ways-top-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}

.ways-top-caption {
  margin: 0 0 0.65rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--jade-green);
}

.ways-reels {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.35rem;
  max-width: 360px;
  margin: 0 auto;
}

.ways-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.ways-stack {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  width: 100%;
}

.ways-dot {
  display: block;
  width: 100%;
  height: 9px;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff4df 0%, #f8dca8 100%);
  border: 1px solid rgba(212, 160, 23, 0.25);
}

.ways-dot--top {
  height: 8px;
  background: linear-gradient(180deg, #dff8f3 0%, #b8ece4 100%);
  border-color: rgba(46, 196, 182, 0.35);
}

.ways-col-meta {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.2;
}

.ways-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.ways-facts li {
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fffdfa 0%, #fff7ee 100%);
  border: 1px solid rgba(26, 18, 16, 0.05);
}

.ways-facts-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.ways-facts strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.ways-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.feature-cards {
  display: grid;
  gap: 1rem;
}

.feature-card {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.feature-card h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: rgba(46, 196, 182, 0.14);
  color: var(--jade-green);
  font-size: 1rem;
}

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

.rtp-cards {
  display: grid;
  gap: 1rem;
}

.rtp-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
}

.rtp-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

.rtp-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.rtp-card--highlight {
  border-color: rgba(212, 160, 23, 0.45);
  background: linear-gradient(180deg, #fffdf8 0%, #fff6e8 100%);
}

.rtp-footnote {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.steps {
  display: grid;
  gap: 0.85rem;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1rem 1rem 1rem 3.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-primary);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.steps strong {
  display: block;
  margin-bottom: 0.25rem;
}

.steps span {
  color: var(--text-muted);
  font-size: 0.94rem;
}

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

.mobile-pill {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  font-weight: 600;
}

.mobile-pill small {
  display: block;
  margin-top: 0.15rem;
  font-weight: 500;
  color: var(--text-muted);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.faq-list summary {
  padding: 1rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list details[open] summary {
  border-bottom: 1px solid rgba(26, 18, 16, 0.06);
}

.faq-list p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--text-muted);
}

.play-block {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff6ea 0%, #ffe8cf 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.play-block-watermark {
  position: absolute;
  inset: auto -10% -20% auto;
  width: min(55%, 260px);
  opacity: 0.12;
  pointer-events: none;
}

.play-block h2 {
  position: relative;
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.play-block p {
  position: relative;
  margin: 0 auto 1.25rem;
  max-width: 34rem;
  color: var(--text-muted);
}

.play-block .hero-actions {
  position: relative;
  justify-content: center;
}

.sources-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.sources-list li + li {
  margin-top: 0.45rem;
}

.sources-note {
  margin: 1rem 0 0;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border-left: 3px solid var(--gold-primary);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.site-footer {
  padding: 2.5rem 1.25rem 5.5rem;
  background: #fff3e8;
  border-top: 1px solid var(--border-soft);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-row .brand img {
  height: 56px;
  max-width: min(220px, 62vw);
}

.footer-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  border-radius: 999px;
  background: var(--red-fortune);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
}

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

.footer-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: var(--sticky-cta-height);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 248, 240, 0.96);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 24px rgba(26, 18, 16, 0.08);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  flex: 1 1 auto;
  max-width: 280px;
  min-height: 44px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.cta-inline {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: 0;
    margin-left: auto;
  }

  .primary-nav a {
    padding: 0;
    border: 0;
    font-size: 0.92rem;
  }

  .header-meta {
    display: inline-flex;
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .split-section {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .split-section--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split-section--reverse .split-visual {
    order: 2;
  }

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

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

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

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

  .site-footer {
    padding-bottom: 2.5rem;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 960px) {
  .hero {
    padding-top: 2.75rem;
    padding-bottom: 3rem;
  }
}
