:root {
  --felt: #10241a;
  --felt-deep: #0a1611;
  --felt-mid: #173526;
  --gold: #d4af37;
  --gold-soft: #f0d78c;
  --cream: #f4efe2;
  --muted: #b7c4bb;
  --line: rgba(212, 175, 55, 0.22);
  --card: rgba(255, 255, 255, 0.04);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html, body { margin: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(180deg, var(--felt-deep), var(--felt) 28%, var(--felt-deep));
  color: var(--cream);
  letter-spacing: 0;
  line-height: 1.6;
  font-weight: 400;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 6vw;
  background: rgba(10, 22, 17, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(10, 22, 17, 0.45);
}

.lang-switch button {
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  cursor: pointer;
  line-height: 1.2;
}

.lang-switch button[lang="kn"] {
  font-family: "Noto Sans Kannada", "DM Sans", sans-serif;
  font-weight: 600;
}

.lang-switch button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--felt-deep);
}

html.lang-kn body {
  font-family: "Noto Sans Kannada", "DM Sans", system-ui, sans-serif;
}

html.lang-kn .eyebrow {
  letter-spacing: 0.04em;
  text-transform: none;
}

html.lang-kn .kannada {
  display: none;
}

html.lang-kn h1,
html.lang-kn h2,
html.lang-kn h3 {
  line-height: 1.35;
  letter-spacing: 0;
}

html.lang-kn .lede,
html.lang-kn .split p,
html.lang-kn .section-head p,
html.lang-kn li {
  line-height: 1.75;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  color: var(--felt-deep) !important;
  background: var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  padding: 10px 11px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
}

.launch-banner {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.04) 55%, transparent),
    var(--felt-mid);
}

.launch-inner {
  width: min(var(--max), calc(100% - 10vw));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  min-height: 72px;
  padding: 10px 0;
}

.launch-msg {
  margin: 0;
  flex: 1 1 280px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gold-soft);
}

.launch-msg a {
  margin-left: 8px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.launch-msg a:hover { text-decoration: underline; }

.launch-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.launch-timer > span {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  min-width: 42px;
  justify-content: center;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 22, 17, 0.45);
}

.launch-timer time {
  color: var(--gold-soft);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.launch-minus {
  color: var(--gold);
  font-size: 1.1rem;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
}

.launch-timer strong {
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
}

.hero, .section, .footer {
  width: min(var(--max), calc(100% - 10vw));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.9fr);
  grid-template-areas:
    "copy photo"
    "stats stats";
  column-gap: 40px;
  row-gap: 36px;
  align-items: stretch;
  padding: 56px 0 72px;
}

.hero-copy {
  grid-area: copy;
  min-width: 0;
}

.hero-photo {
  grid-area: photo;
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 460px;
  height: 100%;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
}

h2 { margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { margin: 0 0 8px; font-size: 1.15rem; }

.kannada {
  font-family: "Noto Sans Kannada", "DM Sans", sans-serif;
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin: 0 0 18px;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 28px;
}

.hero-actions, .cta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-gold { background: var(--gold); color: var(--felt-deep); }
.btn-highlight {
  background: var(--cream);
  color: var(--felt-deep);
  border: 2px solid var(--gold);
  font-weight: 700;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
}

.hero-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 560px;
}

.hero-stats li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--card);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1.1;
}

.section { padding: 28px 0 72px; }

.section-head { max-width: 62ch; margin-bottom: 28px; }
.section-head p:last-child { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

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

.section-felt {
  background: var(--felt-mid);
  width: 100%;
  padding: 72px 5vw;
  border-block: 1px solid var(--line);
}

.section-felt .section-head,
.section-felt .steps,
.section-felt .tiers {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(10, 22, 17, 0.45);
  border: 1px solid var(--line);
}

.steps span {
  display: block;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.steps p { margin: 0; color: var(--muted); }

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

.feature-grid article {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}

.feature-grid p { margin: 0; color: var(--muted); }

.tiers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tiers li {
  text-align: center;
  padding: 18px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-weight: 600;
}

.cta { padding-bottom: 96px; }

.cta-card {
  flex-direction: column;
  align-items: flex-start;
  padding: 36px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(500px 180px at 100% 0%, rgba(212, 175, 55, 0.16), transparent 60%),
    var(--felt-mid);
}

.cta-card p { color: var(--muted); max-width: 58ch; }

.footer {
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--cream);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand p, .footer-note { margin: 4px 0 0; color: var(--muted); font-weight: 400; }

.hero-promise {
  margin: 22px 0 0;
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-promise {
  padding-bottom: 80px;
}

.promise-banner {
  margin: 0 0 24px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 1.05rem;
  max-width: 72ch;
}

.promise-grid,
.charge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.promise-grid article,
.charge-grid article,
.not-list {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}

.promise-grid h3,
.charge-grid h3,
.not-list h3 {
  margin-bottom: 12px;
}

.promise-grid ul,
.not-list ul {
  margin: 0;
  padding-left: 1.15em;
  color: var(--muted);
}

.promise-grid li,
.not-list li {
  margin: 0 0 8px;
}

.promise-grid li:last-child,
.not-list li:last-child { margin-bottom: 0; }

.charge-grid p {
  margin: 0;
  color: var(--muted);
}

.not-list { margin-bottom: 16px; }

/* Platform model flowchart (not-gambling section) */
.platform-model {
  margin: 0 0 28px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 39, 68, 0.55) 0%, var(--card) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.platform-model-head {
  text-align: center;
  padding: 18px 16px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(22, 54, 92, 0.85);
  border: 1px solid rgba(42, 80, 128, 0.8);
  margin-bottom: 18px;
}

.platform-model-brand {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.platform-model-sub {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.platform-model-tags {
  margin: 10px 0 0;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.platform-model-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.platform-branch {
  padding: 14px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--line);
}

.platform-branch-sub {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.45);
}

.platform-branch-sp {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.45);
}

.platform-branch-head {
  text-align: center;
  margin-bottom: 10px;
}

.platform-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1rem;
}

.platform-branch h3 {
  margin: 8px 0 4px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.platform-branch-sub h3 { color: #93c5fd; }
.platform-branch-sp h3 { color: #86efac; }

.platform-branch-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.platform-branch ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--muted);
  font-size: 0.84rem;
}

.platform-branch li { margin: 0 0 6px; }
.platform-branch li:last-child { margin-bottom: 0; }

.platform-game-bar {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(124, 58, 237, 0.55);
  background: rgba(91, 33, 182, 0.18);
  text-align: center;
}

.platform-game-bar h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.platform-game-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.platform-policy-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.platform-policy {
  padding: 12px;
  border-radius: calc(var(--radius) - 2px);
  border: 1.5px dashed;
  background: rgba(255, 255, 255, 0.02);
}

.platform-policy h4 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.platform-policy p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.platform-policy p:last-child { margin-bottom: 0; }

.platform-policy-blue { border-color: #2563eb; }
.platform-policy-blue h4 { color: #93c5fd; }
.platform-policy-gold { border-color: var(--gold); }
.platform-policy-gold h4 { color: var(--gold-soft); }
.platform-policy-red { border-color: #ef4444; }
.platform-policy-red h4 { color: #fca5a5; }

.platform-footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.platform-footer-row article {
  padding: 12px 14px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(27, 94, 32, 0.35);
  background: rgba(27, 94, 32, 0.12);
}

.platform-footer-row h4 {
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: var(--gold-soft);
}

.platform-footer-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "photo"
      "stats";
    column-gap: 0;
    row-gap: 28px;
    padding: 48px 0 56px;
  }

  .hero-photo {
    min-height: 0;
    height: auto;
  }

  .hero-photo img {
    position: static;
    min-height: 0;
    max-height: 420px;
    height: auto;
  }

  .split,
  .steps,
  .feature-grid,
  .tiers,
  .promise-grid,
  .charge-grid { grid-template-columns: 1fr 1fr; }
  .platform-policy-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-tools { margin-left: auto; }
  .nav-links {
    margin-left: 0;
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 6vw 16px;
    background: var(--felt-deep);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .nav-cta { text-align: center; }
  .lang-switch button { padding: 7px 10px; font-size: 0.75rem; }
  .hero { padding-top: 48px; }
  .launch-inner { min-height: 0; padding: 8px 0; }
  .launch-msg { font-size: 1.02rem; }
  .launch-msg a { display: inline; margin-left: 6px; white-space: normal; }
  .split,
  .steps,
  .feature-grid,
  .tiers,
  .hero-stats,
  .promise-grid,
  .charge-grid { grid-template-columns: 1fr; }
  .platform-model-split,
  .platform-footer-row { grid-template-columns: 1fr; }
}

.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 20px 80px;
}

.legal-wrap h1 {
  font-size: 1.85rem;
  margin: 0 0 8px;
}

.legal-wrap .legal-updated {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 28px;
}

.legal-wrap h2 {
  color: var(--gold-soft);
  font-size: 1.08rem;
  margin: 28px 0 8px;
}

.legal-wrap p {
  color: var(--muted);
  margin: 0 0 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 12px 0;
}

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

.footer-links a:hover { text-decoration: underline; }
