:root {
  --bg: #080b12;
  --surface: #101827;
  --surface-2: #172338;
  --ink: #f7fbff;
  --muted: #a9b7c9;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #f6c64a;
  --accent-2: #2ee6a6;
  --danger: #ff6b6b;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 30%),
    radial-gradient(circle at 90% 20%, color-mix(in srgb, var(--accent-2) 18%, transparent), transparent 26%),
    var(--bg);
}

.site-shell.theme-light {
  --shadow: 0 18px 52px rgba(37, 77, 118, 0.16);
  background:
    radial-gradient(circle at 16% 0%, rgba(40, 120, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(0, 167, 216, 0.16), transparent 26%),
    linear-gradient(180deg, #f7fbff, var(--bg));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
}

.theme-light .topbar {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(28, 64, 103, 0.08);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 38px;
  padding: 0 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 58%, white 8%);
  border-radius: 8px;
  color: #05070b;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 950;
}

.brand-mark img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-name {
  display: grid;
  line-height: 1.05;
}

.brand-name strong {
  font-size: 16px;
}

.brand-name span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  padding: 8px 9px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.nav a.telegram-link {
  color: #ffffff;
  background: #229ed9;
  box-shadow: 0 10px 24px rgba(34, 158, 217, 0.26);
}

.theme-light .nav a {
  color: #23445f;
}

.theme-light .nav a.telegram-link {
  color: #ffffff;
}

.theme-light,
.theme-light h1,
.theme-light h2,
.theme-light h3,
.theme-light .brand-name strong,
.theme-light .odds-row strong {
  color: #10243d;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

.nav a.telegram-link:hover,
.nav a.telegram-link:focus-visible {
  color: #ffffff;
  background: #1d8cc1;
}

.theme-light .nav a:hover,
.theme-light .nav a:focus-visible {
  color: #0d2b45;
  background: rgba(40, 120, 255, 0.1);
}

.theme-light .nav a.telegram-link:hover,
.theme-light .nav a.telegram-link:focus-visible {
  color: #ffffff;
  background: #1d8cc1;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(52px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.92), rgba(5, 7, 11, 0.66) 48%, rgba(5, 7, 11, 0.25)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: var(--hero-opacity, 0.78);
}

.theme-light .hero::before {
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.96), rgba(247, 251, 255, 0.83) 48%, rgba(247, 251, 255, 0.6)),
    var(--hero-image);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, var(--bg));
}

.theme-light .hero::after {
  background: linear-gradient(transparent, #f7fbff);
}

.hero-inner,
.section-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.theme-light .eyebrow {
  color: #0b57d0;
  background: rgba(255, 255, 255, 0.76);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(38px, 6.4vw, 78px);
}

.lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: color-mix(in srgb, var(--ink) 78%, var(--muted));
  font-size: clamp(16px, 2vw, 20px);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 22px;
}

.hero-badge {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.hero-badge span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.theme-light .hero-badge {
  background: rgba(255, 255, 255, 0.76);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #05070b;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 22%, transparent);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.theme-light .button.secondary {
  color: #12324f;
  border-color: rgba(23, 55, 90, 0.22);
  background: rgba(255, 255, 255, 0.78);
}

.bet-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.theme-light .bet-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 255, 0.88)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-art-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 204, 50, 0.18), rgba(233, 48, 34, 0.08)),
    color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: var(--shadow);
}

.hero-art {
  position: absolute;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.34)) saturate(1.12);
}

.hero-art.wheel {
  right: -58px;
  bottom: -88px;
  width: 88%;
}

.hero-art.cash {
  right: 8px;
  bottom: 28px;
  width: 42%;
}

.hero-art.slot {
  left: -18px;
  bottom: 18px;
  width: 64%;
}

.bonus-ribbon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff8e6;
  background: linear-gradient(135deg, #f2472e, #ba160f);
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(233, 48, 34, 0.32);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 18px var(--accent-2);
}

.odds-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.odds-row:last-child {
  border-bottom: 0;
}

.odds-row strong {
  display: block;
}

.odds-row span {
  color: var(--muted);
  font-size: 13px;
}

.theme-light .odds-row span,
.theme-light .card p,
.theme-light .article p,
.theme-light .article li,
.theme-light .section-head p,
.theme-light .footer,
.theme-light .brand-name span {
  color: #314a66;
}

.odds {
  min-width: 74px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #05070b;
  background: var(--accent);
  text-align: center;
  font-weight: 950;
}

.theme-light .odds {
  color: #ffffff;
  background: #0b57d0;
}

.ticker-section {
  overflow: hidden;
  padding: 0;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.theme-light .ticker-section {
  background: rgba(255, 255, 255, 0.72);
}

.theme-light .ticker-track span {
  color: #10243d;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

section {
  padding: clamp(38px, 6vw, 78px) clamp(18px, 4vw, 56px);
}

.content-band {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 36%, transparent), transparent),
    color-mix(in srgb, var(--bg) 88%, var(--surface));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.section-head p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

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

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

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

.game-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 20%, transparent), transparent 42%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-2) 92%, transparent), color-mix(in srgb, var(--surface) 96%, transparent));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.game-card::before {
  content: none;
  position: absolute;
  inset: 12px 12px auto auto;
  width: 82px;
  height: 82px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0.14;
  transform: rotate(12deg);
}

.game-card h3,
.game-card p,
.game-card a,
.game-index {
  position: relative;
  z-index: 1;
}

.game-image {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 38%, transparent), color-mix(in srgb, var(--surface-2) 90%, transparent));
  border-bottom: 1px solid var(--line);
  filter: saturate(1.08) contrast(1.04);
}

.game-card h3 {
  margin: 0 18px 8px;
  font-size: 22px;
}

.game-card p {
  margin: 0 18px 14px;
  color: var(--muted);
}

.game-index {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 7px;
  border-radius: 6px;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 950;
}

.game-card .text-link {
  display: inline-flex;
  margin: 0 18px 18px;
}

.theme-light .game-card {
  background:
    linear-gradient(145deg, rgba(40, 120, 255, 0.13), transparent 45%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.theme-light .game-index {
  color: #ffffff;
  background: rgba(11, 87, 208, 0.88);
}

.card,
.article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.16);
}

.theme-light .card,
.theme-light .article {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.card {
  padding: 18px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  margin: 0 6px 8px 0;
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 36%, var(--line));
  border-radius: 999px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  font-size: 12px;
  font-weight: 850;
}

.payment-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.payment-rail span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  font-size: 13px;
  font-weight: 900;
}

.keyword-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.keyword-badges.compact {
  margin-top: 14px;
}

.keyword-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: color-mix(in srgb, var(--ink) 88%, var(--accent));
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  font-size: 13px;
  font-weight: 800;
}

.jeetup-start {
  padding-top: 34px;
  padding-bottom: 34px;
  background:
    linear-gradient(180deg, rgba(255, 204, 50, 0.06), rgba(0, 0, 0, 0)),
    color-mix(in srgb, var(--bg) 92%, var(--surface));
}

.section-head.compact {
  align-items: flex-start;
  margin-bottom: 14px;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.start-tile {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent),
    color-mix(in srgb, var(--surface) 92%, transparent);
  text-decoration: none;
}

.start-tile::after {
  content: ">";
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: var(--accent);
  font-size: 22px;
  font-weight: 950;
}

.start-tile strong,
.start-tile span {
  display: block;
}

.start-tile strong {
  font-size: 18px;
  line-height: 1.16;
}

.start-tile span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.site-jeetup-india .topbar {
  border-bottom-color: rgba(255, 204, 50, 0.35);
  background: rgba(5, 4, 1, 0.94);
}

.site-jeetup-india .brand-mark {
  min-width: 42px;
  padding: 0;
  border-color: rgba(255, 204, 50, 0.74);
  background: #080501;
}

.site-jeetup-india .brand-name strong {
  font-size: 19px;
}

.site-jeetup-india .brand-name span {
  color: #ffcc32;
  font-size: 13px;
  text-transform: none;
}

.site-jeetup-india .jeetup-nav {
  align-items: center;
  gap: 10px;
}

.site-jeetup-india .jeetup-register-link {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 204, 50, 0.2);
  border-radius: 8px;
  color: #fff8e6;
  background: linear-gradient(135deg, #f24b34, #b7150e);
  box-shadow: 0 10px 24px rgba(233, 48, 34, 0.24);
}

.site-jeetup-india .jeetup-menu-link {
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 204, 50, 0.32);
  border-radius: 8px;
  color: #fff8e6;
  background: rgba(255, 255, 255, 0.06);
}

.site-jeetup-india .hero {
  min-height: 0;
  padding-top: clamp(26px, 4vw, 54px);
  padding-bottom: clamp(24px, 4vw, 46px);
  border-bottom: 1px solid rgba(255, 204, 50, 0.2);
}

.site-jeetup-india .hero::before {
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 204, 50, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(8, 5, 1, 0.96), rgba(75, 40, 4, 0.78) 52%, rgba(8, 5, 1, 0.72)),
    var(--hero-image);
  background-position: center;
  opacity: 1;
}

.site-jeetup-india .hero::after {
  height: 22%;
}

.site-jeetup-india .hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.82fr);
  gap: clamp(14px, 3vw, 34px);
}

.site-jeetup-india h1 {
  max-width: 680px;
  font-size: clamp(48px, 7vw, 82px);
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.28);
}

.site-jeetup-india .lead {
  max-width: 560px;
  color: #fff8e6;
  font-weight: 850;
}

.site-jeetup-india .hero-badges {
  max-width: 520px;
}

.site-jeetup-india .hero-badge {
  border-color: rgba(255, 204, 50, 0.26);
  background: rgba(0, 0, 0, 0.28);
}

.site-jeetup-india .button {
  color: #fff8e6;
  background: linear-gradient(135deg, #f24b34, #b7150e);
  box-shadow: 0 14px 34px rgba(233, 48, 34, 0.28);
}

.site-jeetup-india .button.secondary {
  color: var(--ink);
  border-color: rgba(255, 204, 50, 0.36);
  background: rgba(0, 0, 0, 0.34);
}

.site-jeetup-india .mobile-action.primary {
  color: #fff8e6;
  background: linear-gradient(135deg, #f24b34, #b7150e);
}

.site-jeetup-india .game-card {
  border-color: rgba(255, 204, 50, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 204, 50, 0.08), rgba(0, 0, 0, 0.12)),
    #120b03;
}

.site-jeetup-india .game-image {
  height: 142px;
  object-fit: cover;
  background: #0b0702;
}

.site-jeetup-india .game-index {
  color: #080501;
  background: #ffcc32;
}

.site-jeetup-india .jeetup-start {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 204, 50, 0.14);
}

.site-jeetup-india .start-tile {
  min-height: 124px;
  border-color: rgba(255, 204, 50, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.site-jeetup-india .start-tile strong {
  color: #fff8e6;
}

.site-jeetup-india .start-tile span {
  color: #e9d6ad;
}

.theme-light .keyword-badges span {
  color: #17375a;
  background: rgba(255, 255, 255, 0.76);
}

.theme-light .payment-rail span {
  color: #10243d;
  background: rgba(255, 255, 255, 0.78);
}

.promo-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), color-mix(in srgb, var(--accent-2) 10%, transparent)),
    color-mix(in srgb, var(--surface-2) 90%, transparent);
}

.promo-banner h3 {
  margin: 4px 0 8px;
  font-size: clamp(24px, 3vw, 36px);
}

.promo-banner p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.theme-light .promo-banner {
  background:
    linear-gradient(135deg, rgba(40, 120, 255, 0.14), rgba(0, 167, 216, 0.12)),
    rgba(255, 255, 255, 0.86);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 16px;
  align-items: stretch;
}

.winner-board {
  display: grid;
  gap: 10px;
}

.winner-board div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.winner-board strong,
.winner-board span {
  display: block;
}

.winner-board strong {
  color: var(--ink);
}

.winner-board span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.theme-light .winner-board div {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.theme-light .winner-board strong {
  color: #10243d;
}

.article {
  max-width: 900px;
  padding: clamp(20px, 4vw, 36px);
}

.seo-article {
  max-width: 980px;
}

.article h2 {
  margin-top: 32px;
  font-size: 30px;
}

.article h3 {
  margin-top: 20px;
}

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

.article a,
.text-link {
  color: var(--accent-2);
  font-weight: 850;
  text-decoration: none;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 15px 16px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.theme-light .faq-list details {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.notice {
  border: 1px solid color-mix(in srgb, var(--danger) 45%, var(--line));
  border-radius: var(--radius);
  padding: 14px 16px;
  color: color-mix(in srgb, var(--ink) 86%, var(--danger));
  background: color-mix(in srgb, var(--danger) 12%, var(--surface));
}

.footer {
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.26);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.index-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-top: 24px;
}

.index-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .grid,
  .grid.two,
  .game-grid,
  .support-grid,
  .promo-banner {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    align-items: start;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .bet-panel {
    max-width: 520px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

}

/* Mobile-first product pass: phone screens should feel like the primary BC lobby. */
body {
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-action-bar {
  position: fixed;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 10px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg) 88%, black 12%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.mobile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-action.primary {
  color: #05070b;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.theme-light .mobile-action-bar {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(37, 77, 118, 0.18);
}

.theme-light .mobile-action {
  color: #10243d;
  background: rgba(240, 248, 255, 0.92);
}

@media (max-width: 720px) {
  .topbar {
    align-items: stretch;
    gap: 10px;
    padding: 10px 12px 9px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-mark {
    min-width: 40px;
    height: 36px;
    font-size: 13px;
  }

  .brand-mark img {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    min-width: 0;
  }

  .brand-name strong {
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-name span {
    overflow: hidden;
    max-width: 72vw;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-jeetup-india .topbar {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
  }

  .site-jeetup-india .brand-lockup {
    flex: 1 1 auto;
  }

  .site-jeetup-india .brand-mark {
    min-width: 44px;
    height: 44px;
  }

  .site-jeetup-india .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .site-jeetup-india .brand-name strong {
    font-size: 18px;
  }

  .site-jeetup-india .brand-name span {
    max-width: 150px;
    color: #ffcc32;
    font-size: 12px;
    text-transform: none;
  }

  .site-jeetup-india .jeetup-nav {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .site-jeetup-india .jeetup-nav .telegram-link {
    display: none;
  }

  .site-jeetup-india .jeetup-register-link,
  .site-jeetup-india .jeetup-menu-link {
    min-height: 42px;
    border-radius: 8px;
    font-size: 13px;
  }

  .site-jeetup-india .jeetup-menu-link {
    width: 44px;
    overflow: hidden;
    color: transparent;
    position: relative;
  }

  .site-jeetup-india .jeetup-menu-link::after {
    content: "Menu";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff8e6;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: calc(100% + 24px);
    margin: 0 -12px;
    padding: 0 12px 3px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 72%, transparent);
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 24px 14px 26px;
  }

  .site-jeetup-india .hero {
    padding: 22px 14px 20px;
  }

  .site-jeetup-india .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(138px, 0.76fr);
    gap: 8px;
    align-items: center;
  }

  .site-jeetup-india .eyebrow {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .site-jeetup-india h1 {
    font-size: 40px;
    line-height: 0.98;
  }

  .site-jeetup-india .lead {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.35;
  }

  .site-jeetup-india .hero-badges {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 12px;
  }

  .site-jeetup-india .hero-badge {
    min-height: 0;
    padding: 7px 9px;
  }

  .site-jeetup-india .hero-badge strong,
  .site-jeetup-india .hero-badge span {
    display: inline;
  }

  .site-jeetup-india .hero-badge strong {
    margin-right: 5px;
    font-size: 15px;
  }

  .site-jeetup-india .hero-badge span {
    font-size: 11px;
  }

  .site-jeetup-india .hero-actions {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .site-jeetup-india .hero-actions .button.secondary {
    display: none;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 11, 0.9), rgba(5, 7, 11, 0.76) 54%, rgba(5, 7, 11, 0.94)),
      var(--hero-image);
    background-position: center top;
  }

  .theme-light .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 251, 255, 0.94), rgba(247, 251, 255, 0.82) 52%, rgba(247, 251, 255, 0.96)),
      var(--hero-image);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .eyebrow {
    margin-bottom: 10px;
    padding: 6px 9px;
    font-size: 10px;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
  }

  .lead {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 16px;
  }

  .hero-badge {
    min-height: 68px;
    padding: 10px 8px;
  }

  .hero-badge strong {
    font-size: 19px;
  }

  .hero-badge span {
    font-size: 10px;
    line-height: 1.2;
  }

  .hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 18px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .bet-panel {
    max-width: none;
    border-radius: 8px;
  }

  .hero-art-panel {
    min-height: 256px;
  }

  .site-jeetup-india .hero-art-panel {
    min-height: 258px;
    align-self: stretch;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .site-jeetup-india .hero-art.wheel {
    right: -86px;
    bottom: 10px;
    width: 190%;
    max-width: none;
  }

  .site-jeetup-india .hero-art.cash {
    right: -14px;
    bottom: 42px;
    width: 78%;
  }

  .site-jeetup-india .hero-art.slot {
    left: -54px;
    bottom: 36px;
    width: 124%;
  }

  .site-jeetup-india .bonus-ribbon {
    right: 0;
    bottom: 0;
    font-size: 11px;
  }

  .hero-art.wheel {
    right: -46px;
    bottom: -70px;
    width: 78%;
  }

  .hero-art.cash {
    right: 8px;
    bottom: 24px;
    width: 36%;
  }

  .hero-art.slot {
    left: -20px;
    bottom: 14px;
    width: 56%;
  }

  .bonus-ribbon {
    right: 10px;
    bottom: 10px;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .panel-head,
  .odds-row {
    padding: 12px;
  }

  .odds-row {
    gap: 8px;
  }

  .odds-row span {
    font-size: 12px;
  }

  .odds {
    min-width: 62px;
    padding: 7px 8px;
  }

  .ticker-track span {
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }

  section {
    padding: 30px 14px;
  }

  .section-head {
    gap: 8px;
    margin-bottom: 16px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .section-head p {
    font-size: 14px;
  }

  .grid,
  .grid.two,
  .support-grid,
  .promo-banner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-jeetup-india .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-jeetup-india .game-image {
    height: 76px;
  }

  .site-jeetup-india .game-card h3 {
    font-size: 15px;
  }

  .site-jeetup-india .game-card p {
    min-height: 44px;
    font-size: 11px;
  }

  .start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-jeetup-india .jeetup-start {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .site-jeetup-india .start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-jeetup-india .start-tile {
    min-height: 104px;
  }

  .start-tile {
    min-height: 92px;
    padding: 13px;
  }

  .start-tile strong {
    font-size: 16px;
  }

  .start-tile span {
    font-size: 12px;
  }

  .game-card {
    min-height: 0;
    border-radius: 8px;
  }

  .game-image {
    height: 96px;
  }

  .game-card h3 {
    margin: 0 10px 5px;
    font-size: 16px;
    line-height: 1.15;
  }

  .game-card p {
    min-height: 58px;
    margin: 0 10px 10px;
    font-size: 12px;
    line-height: 1.38;
  }

  .game-index {
    top: 8px;
    left: 8px;
    min-height: 22px;
    font-size: 11px;
  }

  .game-card .text-link {
    margin: 0 10px 12px;
    font-size: 13px;
  }

  .card {
    padding: 15px;
    border-radius: 8px;
  }

  .card h3 {
    font-size: 18px;
    line-height: 1.18;
  }

  .card p,
  .article p,
  .article li {
    font-size: 14px;
  }

  .payment-rail {
    flex-wrap: nowrap;
    width: calc(100% + 28px);
    margin: 0 -14px 16px;
    padding: 0 14px 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .payment-rail::-webkit-scrollbar {
    display: none;
  }

  .payment-rail span {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .promo-banner {
    padding: 16px;
  }

  .promo-banner h3 {
    font-size: 24px;
  }

  .winner-board div {
    padding: 13px;
  }

  .article {
    padding: 18px;
    border-radius: 8px;
  }

  .article h2 {
    margin-top: 24px;
    font-size: 24px;
  }

  .faq-list summary {
    padding: 13px 14px;
    font-size: 14px;
  }

  .faq-list p {
    padding: 0 14px 14px;
  }

  .footer {
    padding: 24px 14px 82px;
  }

  .footer-links {
    gap: 8px;
  }

  .index-list a {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 30px;
  }

  .hero-badges,
  .game-grid,
  .hero-actions,
  .button-row {
    grid-template-columns: 1fr;
  }

  .game-image {
    height: 118px;
  }

  .mobile-action-bar {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-action-bar .mobile-action:last-child {
    grid-column: 1 / -1;
  }

  .hero-art-panel {
    min-height: 220px;
  }

  .start-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 721px) {
  .mobile-action-bar {
    display: none;
  }
}
