:root {
  --navy: #0b1220;
  --navy-soft: #111b2e;
  --gold: #f5b942;
  --white: #ffffff;
  --soft: #f5f7fa;
  --ink: #111827;
  --muted: #5e6878;
  --line: #d9e0ea;
  --shadow: 0 18px 44px rgba(11, 18, 32, 0.12);
  --radius: 8px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 18px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 8vw, 4.85rem);
}

h2 {
  font-size: clamp(2rem, 7vw, 3.75rem);
}

h3 {
  font-size: 1.25rem;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 234, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  width: min(100% - 32px, var(--container));
  min-height: 70px;
  margin: 0 auto;
  gap: 14px;
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo,
.footer-logo {
  display: block;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.brand-logo {
  height: 42px;
}

.footer-logo {
  height: 46px;
}

.brand-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe6a3 0 20%, var(--gold) 21% 62%, #b87910 63% 100%);
  box-shadow: 0 0 0 6px rgba(245, 185, 66, 0.16);
}

.site-navigation {
  position: fixed;
  inset: 70px 0 auto 0;
  display: grid;
  gap: 6px;
  padding: 18px 16px 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-130%);
  transition: transform 180ms ease;
}

.site-navigation.is-open {
  transform: translateY(0);
}

.site-navigation a {
  display: block;
  padding: 11px 12px;
  color: #263142;
  font-size: 0.95rem;
  font-weight: 750;
  border-radius: var(--radius);
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
  color: var(--navy);
  background: var(--soft);
}

.menu-toggle {
  display: inline-grid;
  align-items: center;
  justify-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-cta {
  min-width: 118px;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(245, 185, 66, 0.24);
}

.btn-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 26px rgba(245, 185, 66, 0.24);
}

.btn-secondary {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.18);
}

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

.section {
  padding: 78px 0;
}

.section-shell {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.hero-section {
  padding: 38px 0 72px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.9) 0%, rgba(255, 255, 255, 1) 68%),
    var(--white);
}

.hero-grid,
.split-grid,
.payment-grid,
.login-layout {
  display: grid;
  gap: 30px;
}

.hero-copy {
  display: grid;
  align-content: center;
}

.hero-copy p {
  max-width: 690px;
  font-size: 1.05rem;
}

.hero-copy p:first-of-type {
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.intent-panel {
  display: grid;
  gap: 12px;
  max-width: 690px;
  padding: 18px;
  margin-top: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.08);
}

.intent-panel span {
  color: var(--navy);
  font-weight: 900;
}

.intent-panel ul,
.responsible-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.intent-panel li,
.responsible-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.intent-panel li::before,
.responsible-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.eyebrow,
.card-kicker,
.footer-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 14px;
  color: #8a5b00;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.card-kicker::before {
  width: 26px;
  height: 2px;
  margin-right: 10px;
  content: "";
  background: var(--gold);
}

.hero-media {
  order: -1;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-media::after,
.image-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.02), rgba(11, 18, 32, 0.18));
}

.hero-media img,
.image-card img,
.game-card img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.image-card.compact img {
  min-height: 235px;
}

.section-copy > p:first-of-type,
.section-heading + p {
  margin-top: 22px;
}

.fact-grid,
.step-grid,
.payment-cards {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.fact-card,
.step-card,
.payment-card,
.game-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.fact-card {
  min-height: 100px;
  padding: 20px;
}

.fact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fact-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.facts-section,
.mobile-section,
.responsible-section {
  background: var(--soft);
}

.india-overview-section {
  background: var(--white);
}

.india-overview-panel {
  padding: 30px;
  background: linear-gradient(180deg, var(--soft), var(--white));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.overview-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.overview-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.facts-table {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.facts-table div {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.facts-table div:last-child {
  border-bottom: 0;
}

.facts-table span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.facts-table strong {
  color: var(--navy);
  font-size: 1rem;
}

.navy-band {
  color: var(--white);
  background: var(--navy);
}

.navy-band h2,
.navy-band h3 {
  color: var(--white);
}

.navy-band p,
.navy-band .security-note,
.navy-band .step-card p,
.navy-band .faq-list p {
  color: rgba(255, 255, 255, 0.74);
}

.navy-band .eyebrow,
.navy-band .card-kicker {
  color: var(--gold);
}

.login-layout {
  align-items: start;
}

.step-card {
  display: grid;
  min-height: 132px;
  padding: 20px;
  background: var(--navy-soft);
  border-color: rgba(255, 255, 255, 0.12);
}

.step-card span {
  color: var(--gold);
  font-size: 1.85rem;
  font-weight: 950;
  line-height: 1;
}

.step-card p {
  align-self: end;
  margin: 0;
  font-weight: 700;
}

.security-note {
  padding: 18px 20px;
  border: 1px solid rgba(245, 185, 66, 0.38);
  border-radius: var(--radius);
  background: rgba(245, 185, 66, 0.08);
}

.security-note ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 10px 0 0;
}

.security-note li {
  color: inherit;
  font-weight: 700;
}

.process-grid,
.register-list,
.category-panels,
.mobile-advantages,
.security-grid,
.overview-points,
.why-grid {
  display: grid;
  gap: 16px;
}

.process-card,
.register-list > div,
.category-panels > article,
.mobile-advantages > div,
.security-grid > div,
.overview-points > div,
.why-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-card {
  min-height: 240px;
  background: var(--navy-soft);
  border-color: rgba(255, 255, 255, 0.14);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.process-card p,
.category-panels p,
.security-grid p,
.why-card p {
  margin-bottom: 0;
}

.why-section {
  background: var(--white);
}

.why-card {
  min-height: 210px;
  background: linear-gradient(180deg, var(--white), var(--soft));
  box-shadow: 0 14px 30px rgba(11, 18, 32, 0.07);
}

.why-card h3 {
  margin-bottom: 12px;
}

.overview-points {
  margin-top: 24px;
}

.overview-points strong,
.overview-points span {
  display: block;
}

.overview-points strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
}

.overview-points span {
  color: var(--muted);
  font-weight: 700;
}

.register-list {
  margin-top: 24px;
}

.register-list h3,
.mobile-advantages h3,
.security-grid h3 {
  margin-bottom: 10px;
}

.light-note {
  margin-top: 20px;
  color: var(--navy);
  background: rgba(245, 185, 66, 0.16);
}

.long-copy {
  display: grid;
  gap: 14px;
  max-width: 920px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.long-copy p {
  margin: 0;
}

.games-section {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.wide {
  max-width: 920px;
}

.games-grid {
  display: grid;
  gap: 16px;
}

.expanded-games {
  margin-bottom: 24px;
}

.game-card {
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(11, 18, 32, 0.08);
}

.feature-card {
  display: grid;
  align-content: start;
}

.feature-card div,
.text-card {
  padding: 22px;
}

.feature-card img {
  aspect-ratio: 16 / 10;
}

.text-card {
  min-height: 230px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 40px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 950;
  background: var(--gold);
  border-radius: 50%;
}

.game-card h3,
.payment-card h3 {
  margin-bottom: 12px;
}

.game-card p,
.payment-card p {
  margin-bottom: 0;
}

.payment-section {
  background: var(--white);
}

.payment-card {
  min-height: 124px;
  padding: 20px;
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.casino-section .category-panels > article,
.security-section .security-grid > div {
  background: var(--navy-soft);
  border-color: rgba(255, 255, 255, 0.14);
}

.sports-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sports-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--navy);
  font-weight: 900;
  background: var(--gold);
  border-radius: 999px;
}

.mini-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.mini-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.mobile-layout {
  display: grid;
  gap: 28px;
}

.mobile-advantages > div {
  background: var(--white);
  box-shadow: 0 14px 30px rgba(11, 18, 32, 0.06);
}

.payment-copy {
  grid-column: 1 / -1;
}

.sports-copy,
.mobile-copy,
.registration-section .register-steps,
.registration-section .light-note,
.mobile-layout.with-media .mobile-advantages {
  grid-column: 1 / -1;
}

.payment-safety {
  grid-column: 1 / -1;
}

.responsible-panel {
  display: grid;
  gap: 26px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.responsible-list {
  align-content: start;
  padding: 20px;
  background: var(--soft);
  border-radius: var(--radius);
}

.article-section {
  background: var(--white);
}

.article-shell {
  max-width: 940px;
  padding: 34px;
  background: linear-gradient(180deg, var(--soft), var(--white));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-shell h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.section-title-like {
  font-size: clamp(2rem, 7vw, 3.75rem);
  line-height: 1.08;
}

.article-shell p {
  font-size: 1.03rem;
}

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

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--navy-soft);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  cursor: pointer;
  color: var(--white);
  font-size: 1.03rem;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--gold);
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
}

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

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

.site-footer {
  padding: 52px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  background: #070c16;
}

.footer-shell,
.footer-bottom {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.footer-shell {
  display: grid;
  gap: 24px;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  color: var(--white);
}

.footer-label {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

.site-footer a {
  color: var(--white);
}

.footer-topics {
  display: grid;
  gap: 8px;
}

.footer-topics a {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--navy);
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(11, 18, 32, 0.24);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.minimal-template {
  min-height: 60vh;
  background: var(--soft);
}

.readable-content {
  max-width: 820px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.search-field {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

:focus-visible {
  outline: 3px solid rgba(245, 185, 66, 0.8);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .fact-grid,
  .payment-cards,
  .mobile-advantages,
  .security-grid,
  .overview-points,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .facts-table div {
    grid-template-columns: minmax(170px, 0.42fr) 1fr;
    align-items: center;
  }
}

@media (min-width: 860px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    min-height: 76px;
  }

  .menu-toggle {
    display: none;
  }

  .site-navigation {
    position: static;
    display: flex;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .site-navigation a {
    padding: 10px 11px;
  }

  .hero-section {
    padding: 64px 0 88px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
    align-items: center;
    gap: 42px;
  }

  .hero-media {
    order: 2;
  }

  .split-grid,
  .payment-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: 46px;
  }

  .reverse-grid {
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  }

  .payment-grid {
    grid-template-columns: minmax(400px, 0.88fr) minmax(0, 1fr);
  }

  .login-layout {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
    gap: 26px 42px;
  }

  .login-layout .step-grid,
  .login-layout .security-note,
  .login-layout .long-copy {
    grid-column: 1 / -1;
  }

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

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

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

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

  .expanded-games .text-card {
    min-height: 260px;
  }

  .mobile-layout {
    grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1fr);
    align-items: start;
    gap: 44px;
  }

  .responsible-panel {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
    align-items: center;
  }

  .feature-card {
    grid-column: span 2;
  }

  .footer-shell {
    grid-template-columns: 1.1fr 0.75fr 0.9fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1120px) {
  .section {
    padding: 96px 0;
  }

  .games-grid {
    gap: 20px;
  }
}

@media (max-width: 420px) {
  .nav-shell,
  .section-shell,
  .footer-shell,
  .footer-bottom {
    width: min(100% - 24px, var(--container));
  }

  .header-cta {
    min-width: 102px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

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

  .fact-card,
  .step-card,
  .payment-card,
  .feature-card div,
  .text-card {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
