/* ===== YGR Slots Malaysia — Homepage ===== */

:root {
  --bg: #0f0b1a;
  --bg-alt: #171224;
  --surface: #1e1830;
  --surface-hover: #29213f;
  --border: #322a49;

  --text: #f5f3ff;
  --text-muted: #b8aed1;

  --purple: #a855f7;
  --pink: #ec4899;
  --gold: #f59e0b;
  --teal: #14b8a6;

  --gradient-brand: linear-gradient(135deg, var(--purple), var(--pink));
  --gradient-gold: linear-gradient(135deg, #fbbf24, #f59e0b);

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --sticky-bar-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  padding-bottom: var(--sticky-bar-height);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

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

/* In-content links inside body copy — buttons and card links keep their own styling */
main p a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

main p a:hover {
  color: var(--gold);
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 64px 0;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.section-intro {
  color: var(--text-muted);
  /* max-width: 640px; */
  margin-bottom: 32px;
}

.section-outro {
  margin-top: 24px;
  margin-bottom: 0;
}

.subheading {
  font-size: 1.1rem;
  color: var(--pink);
  margin-top: 28px;
  margin-bottom: 6px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

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

.btn-primary {
  background: var(--gradient-gold);
  color: #1a1206;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--purple);
}

.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.12);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 11, 26, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand img {
  height: 48px;
  width: auto;
}

.header-login-btn {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text);
  border: 1.5px solid var(--purple);
  border-radius: 999px;
  padding: 7px 18px;
  transition: background 0.15s ease;
}

.header-login-btn:hover {
  background: rgba(168, 85, 247, 0.12);
}

@media (max-width: 420px) {
  .header-login-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
}

.nav-desktop {
  display: none;
  gap: 28px;
  font-weight: 700;
  font-size: 0.95rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 14px 20px;
  font-weight: 700;
  border-top: 1px solid var(--border);
}

@media (min-width: 860px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* ---------- Breadcrumbs ---------- */

.breadcrumbs {
  padding: 14px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--pink);
}

.breadcrumbs .sep {
  margin: 0 8px;
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumbs .current {
  color: var(--text);
  font-weight: 700;
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.25), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(236, 72, 153, 0.2), transparent 45%),
    var(--bg);
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-content {
  text-align: left;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 0 28px;
}

.hero-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art-full {
  aspect-ratio: 256 / 326;
  max-width: 65%;
  margin: 0 auto;
}

.hero-art-full img {
  width: 100%;
  height: 100%;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
  margin: 0;
}

@media (min-width: 520px) {
  .hero-ctas {
    flex-direction: row;
    max-width: none;
    justify-content: flex-start;
  }
}

/* ---------- Brand Intro ---------- */

.brand-intro .container {
  max-width: 720px;
  text-align: center;
}

.brand-intro .btn-outline {
  margin-top: 8px;
}

/* ---------- Content Block (intro + info cards) ---------- */

.content-block-intro {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}

.content-block-intro p {
  color: var(--text-muted);
}

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

@media (min-width: 800px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
}

.info-card h3 {
  color: var(--pink);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

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

@media (min-width: 900px) {
  .info-grid.info-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Perks Icon Grid ---------- */

.perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

@media (min-width: 900px) {
  .perks-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.perk-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
}

.perk-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
}

.perk-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

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

/* ---------- Legal Note Block ---------- */

.legal-note-block {
  max-width: 600px;
  text-align: center;
}

.legal-note-block a {
  color: var(--pink);
  text-decoration: underline;
}

.legal-note-block p:not(.section-label) {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- VS Compare Cards ---------- */

.vs-compare {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 700px) {
  .vs-compare {
    grid-template-columns: 1fr 1fr;
  }
}

.vs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  border-top: 3px solid transparent;
}

.vs-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.vs-demo {
  border-top-color: var(--teal);
}

.vs-real {
  border-top-color: var(--gold);
}

.vs-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vs-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.vs-check {
  color: var(--teal);
  font-weight: 700;
}

.vs-cross {
  color: var(--pink);
  font-weight: 700;
}

/* ---------- Game Grid ---------- */

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

@media (min-width: 640px) {
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .game-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.game-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
}

.game-card img {
  aspect-ratio: 256 / 326;
  object-fit: cover;
}

.game-card-body {
  padding: 12px 14px 16px;
}

.game-card-body h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.game-card-stats {
  line-height: 1.5;
}

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

.game-card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  background: var(--gradient-brand);
  color: #fff;
}

.game-card-cta:hover {
  border-color: var(--gold);
}

.game-card-cta .cta-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.game-card-cta h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #fff;
}

.game-card-cta p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.spotlight-rank {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

/* ---------- Register Steps ---------- */

.register-disclosure {
  background: var(--surface);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 32px;
}

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

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1.1rem;
}

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

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.payment-icon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 320px;
  margin: 32px auto 0;
}

@media (min-width: 520px) {
  .cta-row {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }
}

/* ---------- Stat Tiles ---------- */

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

@media (max-width: 480px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
}

.stat-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 12px;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-label small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 3px;
}

/* ---------- Comparison Table ---------- */

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: normal;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--surface);
}

.compare-table td:first-child {
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
}

.compare-table .col-demo {
  border-left: 3px solid var(--teal);
}

.compare-table .col-real {
  border-left: 3px solid var(--gold);
}

/* ---------- Demo Section ---------- */

.demo-section {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
}

.demo-section .container {
  padding: 0;
  max-width: 560px;
}

/* ---------- FAQ ---------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.faq-item .chevron {
  transition: transform 0.2s ease;
  color: var(--pink);
  flex-shrink: 0;
}

.faq-item[open] .chevron {
  transform: rotate(180deg);
}

.faq-item p {
  color: var(--text-muted);
  margin: 0 0 18px;
  font-size: 0.95rem;
}

/* ---------- Legal Pages ---------- */

.legal-page {
  padding: 48px 0 64px;
}

.legal-container {
  max-width: 760px;
  text-align: left;
}

.legal-container h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

.legal-subtitle {
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-container h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-container p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-container a {
  color: var(--pink);
  text-decoration: underline;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 44px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
  margin: 0;
}

.footer-col-title {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--pink);
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.88rem;
}

.footer-disclaimer strong {
  color: var(--text);
}

.responsible-note {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  line-height: 1.6;
}

/* ---------- Sticky Mobile CTA Bar ---------- */

.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--sticky-bar-height);
  display: flex;
  z-index: 60;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
}

.sticky-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  gap: 6px;
}

.sticky-cta-bar .sticky-demo {
  background: var(--surface);
  color: var(--text);
}

.sticky-cta-bar .sticky-real {
  background: var(--gradient-gold);
  color: #1a1206;
}

.sticky-badge {
  font-size: 0.65rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 6px;
  opacity: 0.85;
}

@media (min-width: 860px) {
  .sticky-cta-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

/* ========================================================================== */
/* DIRECTION 01: REEL MECHANICS                                                */
/* Industrial print, slot-machine movement, hard geometry, typographic scale. */
/* ========================================================================== */

:root {
  --bg: #11110f;
  --bg-alt: #1a1a17;
  --surface: #20201c;
  --surface-hover: #292924;
  --border: rgba(241, 236, 217, 0.24);
  --text: #f1ecd9;
  --text-muted: #b8b2a1;
  --purple: #ff3d00;
  --pink: #ff3d00;
  --gold: #ff3d00;
  --teal: #ff3d00;
  --signal: #ff3d00;
  --ink: #11110f;
  --paper: #f1ecd9;
  --gradient-brand: #ff3d00;
  --gradient-gold: #ff3d00;
  --radius-lg: 2px;
  --radius-md: 2px;
  --radius-sm: 2px;
  --font-display: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sticky-bar-height: 62px;
}

html {
  scrollbar-color: var(--signal) var(--ink);
}

body {
  position: relative;
  overflow-x: hidden;
  background: var(--ink);
  letter-spacing: 0.05rem;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

::selection {
  background: var(--signal);
  color: var(--paper);
}

.container {
  width: min(100% - 40px, 1240px);
  max-width: none;
  padding: 0;
}

section {
  position: relative;
  padding: clamp(88px, 11vw, 168px) 0;
  border-top: 1px solid var(--border);
}

h1,
h2,
h3,
.btn,
.header-login-btn,
.faq-item summary,
.sticky-cta-bar a {
  text-transform: uppercase;
}

/* h1,
h2,
h3 {
  letter-spacing: -0.045em;
} */

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--signal);
  font: 700 0.71rem/1 var(--font-body);
  letter-spacing: 0.18em;
}

.section-label::before {
  content: '';
  width: 42px;
  height: 1px;
  background: currentColor;
}

.section-title {
  max-width: 900px;
  font-size: clamp(2.5rem, 5.3vw, 5rem);
  line-height: 0.94;
}

.section-intro {
  /* margin: 28px 0 52px auto;
  max-width: 510px; */
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.subheading {
  color: var(--signal);
}

main p a {
  color: inherit;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

main p a:hover {
  color: var(--signal);
}

/* Buttons are machine controls, not capsules. */
.btn {
  position: relative;
  min-height: 54px;
  padding: 15px 25px;
  border: 1px solid var(--paper);
  border-radius: 0;
  overflow: hidden;
  font: 800 0.76rem/1 var(--font-body);
  letter-spacing: 0.12em;
  box-shadow: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.btn::after {
  content: '\2197';
  margin-left: 12px;
  font-size: 1rem;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0 var(--paper);
}

.btn-primary {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--paper);
}

.btn-primary:hover {
  box-shadow: 4px 4px 0 var(--paper);
}

.btn-secondary,
.btn-outline {
  background: transparent;
  border: 1px solid currentColor;
  color: var(--paper);
}

.btn-outline {
  color: var(--signal);
}

.btn-outline:hover,
.btn-secondary:hover {
  background: transparent;
}

/* Technical top rail. */
.site-header {
  background: rgba(17, 17, 15, 0.94);
  border-bottom: 1px solid var(--paper);
  backdrop-filter: blur(12px);
}

.site-header .container {
  height: 78px;
}

.brand img {
  object-fit: contain;
}

.site-header .brand img {
  width: 92px;
  height: 92px;
}

.footer-brand .brand img {
  width: 92px;
  height: 92px;
}

.nav-desktop {
  margin-left: auto;
  margin-right: clamp(28px, 6vw, 94px);
  gap: clamp(22px, 3.2vw, 52px);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-desktop a {
  position: relative;
}

.nav-desktop a::before {
  content: '0' counter(nav);
  counter-increment: nav;
  margin-right: 7px;
  color: var(--signal);
  font-size: 0.58rem;
}

.nav-desktop {
  counter-reset: nav;
}

.header-login-btn {
  padding: 13px 20px;
  border: 0;
  border-radius: 0;
  background: var(--signal);
  color: var(--paper);
  font: 800 0.68rem/1 var(--font-body);
  letter-spacing: 0.14em;
}

.header-login-btn:hover {
  background: var(--paper);
  color: var(--ink);
}

.nav-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--paper);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0;
}

.nav-toggle::before,
.nav-toggle::after {
  content: '';
  position: absolute;
  left: 10px;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.nav-toggle::before {
  top: 15px;
}

.nav-toggle::after {
  bottom: 15px;
}

.nav-toggle[aria-expanded='true']::before {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded='true']::after {
  bottom: 20px;
  transform: rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 78px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  justify-content: flex-start;
  gap: 0;
  height: calc(100dvh - 78px);
  padding: clamp(30px, 8vh, 70px) 20px 100px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--signal);
  border: 0;
}

.nav-mobile a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(241, 236, 217, 0.65);
  color: var(--paper);
  font: 400 clamp(2.8rem, 7vw, 5.5rem)/0.9 var(--font-display);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.nav-mobile a::after {
  content: '\2197';
  font: 700 1rem/1 var(--font-body);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  z-index: 100;
}

body.menu-open .sticky-cta-bar {
  display: none;
}

.breadcrumbs {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero: eight-column type mass cut by a vertical reel window. */
.hero {
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  padding: clamp(58px, 8vw, 110px) 0;
  background: var(--ink);
  border-top: 0;
}

.hero::before {
  content: 'YGR / MY / 2026';
  position: absolute;
  right: 13px;
  top: 50%;
  color: var(--text-muted);
  font: 700 0.6rem/1 var(--font-body);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 0 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1 / 10;
  grid-row: 1 / 2;
  padding: clamp(26px, 4vw, 62px) 0;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--paper);
  background: none;
  font-size: clamp(2.1rem, 6vw, 5.75rem);
  line-height: 0.9;
  text-wrap: balance;
}

.hero-content>p {
  width: min(100%, 510px);
  margin: 34px 0 0 clamp(0px, 15vw, 190px);
  padding-left: 18px;
  border-left: 1px solid var(--signal);
  color: var(--text-muted);
  font-size: clamp(0.96rem, 1.35vw, 1.14rem);
  line-height: 1.55;
}

.hero-ctas {
  flex-direction: row;
  flex-wrap: wrap;
  margin: 34px 0 0 clamp(0px, 15vw, 190px);
  max-width: none;
}

.hero-art {
  position: relative;
  z-index: 3;
  grid-column: 9 / 13;
  grid-row: 1 / 2;
  align-self: center;
  width: 85%;
  justify-self: end;
  height: min(56vh, 560px);
  min-height: 340px;
  border: 1px solid var(--paper);
  border-radius: 0;
  background: var(--signal);
  overflow: hidden;
  mix-blend-mode: normal;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  padding: 8px 10px;
  background: var(--paper);
  color: var(--ink);
  font: 800 0.6rem/1 var(--font-body);
  letter-spacing: 0.15em;
}

.hero-art::before {
  content: 'REEL / 001';
  top: 0;
}

.hero-art::after {
  content: 'SPIN TO INSPECT';
  bottom: 0;
}

.hero-art img {
  width: 100%;
  max-width: none;
  filter: saturate(0.85) contrast(1.08);
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1);
}

.hero:hover .hero-art img {
  transform: scale(1.05);
}

.hero-art-full {
  max-width: none;
  margin: 0;
}

/* Editorial offset instead of centered blocks. */
.brand-intro {
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.brand-intro .container {
  max-width: 1240px;
  text-align: left;
}

.brand-intro .container>div {
  width: min(70%, 830px);
  margin-left: 17%;
}

.brand-intro .section-title {
  margin-left: -16%;
}

.brand-intro p:not(.section-label) {
  max-width: 610px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  color: var(--text-muted);
}

.brand-intro .btn-outline {
  margin-top: 24px;
}

.content-block-intro {
  max-width: 780px;
  margin: 0 0 60px;
  text-align: left;
}

/* Horizontal reel. */
.games {
  padding-bottom: clamp(100px, 13vw, 190px);
  overflow: hidden;
}

.games::after {
  content: 'DRAG \2192';
  position: absolute;
  top: clamp(104px, 14vw, 190px);
  right: max(20px, calc((100vw - 1240px) / 2));
  color: var(--signal);
  font: 800 0.7rem/1 var(--font-body);
  letter-spacing: 0.18em;
}

.game-grid {
  display: flex;
  width: calc(100vw - max(20px, (100vw - 1240px) / 2));
  gap: 1px;
  overflow-x: auto;
  padding: 0 0 24px;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--signal) var(--surface);
}

.game-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.game-card {
  position: relative;
  flex: 0 0 clamp(180px, 20vw, 260px);
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  overflow: hidden;
  scroll-snap-align: start;
  transition: background 180ms ease, color 180ms ease;
}

.game-card:nth-child(even) {
  margin-top: 40px;
}

.game-card:hover {
  transform: none;
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.game-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  filter: saturate(0.78);
  transition: filter 200ms ease, transform 500ms cubic-bezier(.16, 1, .3, 1);
}

.game-card:hover img {
  filter: saturate(1.12);
  transform: scale(1.035);
}

.game-card-body {
  min-height: 90px;
  padding: 14px;
  border-top: 1px solid var(--border);
}

.game-card-body h3 {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1;
}

.game-card-body p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-card:hover .game-card-body p {
  color: var(--ink);
}

.game-card-cta {
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
  background: var(--signal);
  color: var(--paper);
  text-align: left;
}

.game-card-cta .cta-icon {
  font-size: 3rem;
  filter: grayscale(1);
}

.game-card-cta h3 {
  max-width: 240px;
  font-size: 1.6rem;
  line-height: 0.94;
}

/* Registration uses the site palette with a subdued dark background. */
.register {
  background: var(--bg-alt);
  color: var(--paper);
  border-color: var(--border);
}

.register .section-label {
  color: var(--signal);
}

.register .section-title,
.register .step-card h3 {
  color: var(--paper);
}

.register .register-disclosure,
.register .step-card p,
.register .payment-icon {
  color: var(--text-muted);
}

.register .step-number {
  color: var(--gradient-brand);
}

.register .steps,
.register .step-card,
.register .register-disclosure,
.register .payment-icons,
.register .payment-icon {
  border-color: var(--border);
}

.register-disclosure {
  width: min(100%, 660px);
  margin: 44px 0 70px auto;
  padding: 18px 0 18px 22px;
  border: 0;
  border-left: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.steps {
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: 1px solid var(--paper);
}

.step-card {
  grid-column: span 4;
  /* min-height: 410px; */
  padding: 24px clamp(18px, 3vw, 42px) 34px;
  border: 0;
  border-right: 1px solid var(--paper);
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.step-card:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 auto;
  border-radius: 0;
  background: none;
  color: var(--paper);
  font: 400 clamp(3rem, 6vw, 5.5rem)/0.8 var(--font-display);
  letter-spacing: -0.06em;
}

.step-card h3 {
  margin-top: 50px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.step-card p {
  color: var(--ink);
  font-size: 0.94rem;
}

.payment-icons {
  gap: 0;
  margin-top: 45px;
  border: 1px solid var(--ink);
}

.payment-icon {
  flex: 1;
  padding: 13px 18px;
  border: 0;
  border-right: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.payment-icon:last-child {
  border-right: 0;
}

.register .cta-row {
  justify-content: flex-end;
}

.register .btn-primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.register .btn-secondary {
  border-color: var(--border);
  color: var(--paper);
}

.register .btn:hover {
  box-shadow: 4px 4px 0 var(--signal);
}

/* Paper inversion. */
.demo-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  max-width: 1240px;
  padding: clamp(54px, 8vw, 100px);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  text-align: left;
}

.demo-section .section-label {
  grid-column: 1 / 4;
  color: var(--signal);
}

.demo-section .section-title {
  grid-column: 1 / 11;
}

.demo-section>p:not(.section-label) {
  grid-column: 7 / 13;
  margin: 54px 0 30px;
}

.demo-section>.btn {
  grid-column: 7 / 11;
  justify-self: start;
}

/* Operating manual FAQ. */
.faq .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 20px;
}

.faq .section-label {
  grid-column: 1 / 5;
}

.faq .section-title {
  grid-column: 1 / 7;
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-list {
  grid-column: 7 / 13;
  gap: 0;
  border-top: 1px solid var(--paper);
}

.faq-item {
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
}

.faq-item summary {
  padding: 24px 0;
  font: 700 0.87rem/1.25 var(--font-body);
  letter-spacing: 0.04em;
}

.faq-item .chevron {
  color: var(--signal);
}

.faq-item p {
  margin: 0;
  padding: 0 40px 26px 0;
}

/* Supporting shared page patterns. */
.info-grid,
.perks-grid,
.vs-compare,
.stat-row {
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.info-card,
.perk-card,
.vs-card,
.stat-tile {
  border: 0;
  border-radius: 0;
  background: var(--ink);
}

.info-card,
.perk-card {
  padding: clamp(24px, 4vw, 44px);
}

.info-card h3,
.perk-card h3 {
  color: var(--paper);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
}

.perk-card {
  text-align: left;
}

.perk-icon {
  filter: grayscale(1);
  font-size: 2.6rem;
}

.vs-card {
  border-top: 4px solid var(--signal);
  padding: 30px;
}

.stat-value {
  background: none;
  color: var(--signal);
  font-size: clamp(2rem, 4vw, 4rem);
}

.compare-table-wrap {
  border-radius: 0;
}

.compare-table thead th {
  background: var(--signal);
  color: var(--paper);
}

.compare-table .col-demo,
.compare-table .col-real {
  border-left-color: var(--signal);
}

.legal-page {
  padding: clamp(70px, 10vw, 140px) 0;
}

.legal-container {
  max-width: 880px;
}

.legal-container h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
}

.legal-subtitle {
  max-width: 590px;
  margin: 40px 0 90px auto;
}

.legal-container h2 {
  margin-top: 70px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.site-footer {
  padding: 75px 0 32px;
  border-top: 1px solid var(--paper);
  background: var(--ink);
}

.footer-grid {
  gap: 1px;
}

.footer-brand {
  padding-right: 40px;
}

.footer-col {
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

.footer-col-title {
  color: var(--signal);
  letter-spacing: 0.15em;
}

.responsible-note {
  margin-top: 50px;
  padding-top: 22px;
}

.sticky-cta-bar {
  height: var(--sticky-bar-height);
  border-top: 1px solid var(--paper);
  box-shadow: none;
}

.sticky-cta-bar .sticky-demo {
  background: var(--ink);
}

.sticky-cta-bar .sticky-real {
  background: var(--signal);
  color: var(--paper);
}

.sticky-badge {
  border-radius: 0;
}

@media (max-width: 859px) {
  .compare-table .col-real {
    border-left: none;
  }

  .compare-table .col-demo {
    border-left: none;
  }

  .site-header .container {
    height: 68px;
  }

  .site-header .brand img {
    width: 76px;
    height: 76px;
  }

  .footer-brand .brand img {
    width: 76px;
    height: 76px;
  }

  .nav-mobile {
    top: 68px;
    height: calc(100dvh - 68px);
  }

  .hero {
    min-height: auto;
    padding: 50px 0 80px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    display: contents;
  }

  .hero h1 {
    order: 1;
    position: relative;
    z-index: 2;
    font-size: clamp(2.85rem, 12vw, 5.5rem);
  }

  .hero-art {
    order: 2;
    width: 70%;
    height: 52vh;
    min-height: 360px;
    margin-top: 34px;
  }

  .hero-content>p {
    order: 3;
    margin: 34px 0 0;
  }

  .hero-ctas {
    order: 4;
    margin: 28px 0 0;
  }

  .faq .section-title {
    position: static;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  section {
    padding: 80px 0;
  }

  .section-title {
    font-size: clamp(2.4rem, 11vw, 4.25rem);
  }

  .brand-intro {
    min-height: auto;
  }

  .brand-intro .container>div {
    width: 100%;
    margin-left: 0;
  }

  .brand-intro .section-title {
    margin-left: 0;
  }

  .games::after {
    top: 96px;
    right: 14px;
  }

  .game-grid {
    width: calc(100vw - 14px);
  }

  .game-card {
    flex-basis: min(44vw, 180px);
  }

  .game-card-body {
    min-height: 76px;
    padding: 10px;
  }

  .game-card-body h3 {
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .game-card-cta {
    padding: 14px;
  }

  .game-card-cta h3 {
    font-size: 1.3rem;
  }

  .hero-art {
    width: min(62%, 300px);
    height: clamp(220px, 36vh, 350px);
    min-height: 0;
  }

  .game-card:nth-child(even) {
    margin-top: 26px;
  }

  .steps {
    display: block;
  }

  .step-card {
    border-right: 0;
    border-bottom: 1px solid var(--paper);
  }

  .payment-icons {
    display: block;
  }

  .payment-icon {
    display: block;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .payment-icon:last-child {
    border-bottom: 0;
  }

  .demo-section {
    display: block;
    padding: 45px 24px;
  }

  .demo-section>p:not(.section-label) {
    margin: 32px 0 26px;
  }

  .faq .container {
    display: block;
  }

  .faq .section-title {
    margin-bottom: 50px;
  }

  .footer-col {
    padding: 20px 0 0;
    border-left: 0;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4.15rem);
  }

  .hero-art {
    width: 52%;
  }

  .hero-ctas {
    display: grid;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .cta-row {
    align-items: stretch;
    max-width: none;
  }

  .cta-row .btn {
    width: 100%;
  }
}

.muted {
  color: #b8b2a1 !important;
}

.original {
  color: #f1ecd9 !important;
}