/* India Slots — Brand App Profile V10 stylesheet
   Light, polished Android product-store composition. Single emerald accent.
   No Tailwind, no React. Native CSS variables. Mobile-first. */

:root {
  --ink: #0e1726;
  --ink-soft: #5a6478;
  --ink-muted: #8b94a8;
  --paper: #ffffff;
  --page: #f2f6fb;
  --rule: #dbe3ef;
  --rule-strong: #b9c4d6;
  --emerald: #0fb36a;
  --emerald-deep: #0a8a52;
  --emerald-soft: #e6f7ee;
  --gold: #d4af37;
  --gold-soft: #fff7d8;
  --saffron: #ff9933;
  --cream: #fff8e6;
  --ink-on-emerald: #ffffff;
  --shadow-1: 0 1px 2px rgba(14,23,38,.04), 0 2px 8px rgba(14,23,38,.05);
  --shadow-2: 0 2px 4px rgba(14,23,38,.06), 0 8px 24px rgba(14,23,38,.07);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --font-display: "Oswald", "Arial Narrow", "Liberation Sans", sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --container: 1180px;
  --header-h: 64px;
  --sticky-cta-h: 64px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

/* Layout primitives */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-tight { padding: 32px 0; }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 36px);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.section-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--emerald-deep);
  margin: 0 0 8px;
}
.section-lede { color: var(--ink-soft); margin: 0 0 24px; max-width: 70ch; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--emerald-deep);
  margin: 0 0 8px;
}

/* ============ GLOBAL OVERFLOW GUARDS ============ */
html, body { max-width: 100vw; overflow-x: clip; }
main, header, footer, section, .container, .numeral-block { max-width: 100%; min-width: 0; }
table { max-width: 100%; }
.article-body img,
.article-hero img { max-width: 100%; height: auto; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--ink);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
}
.brand-tag { font-size: 11px; color: var(--ink-soft); margin-left: 2px; }

.main-nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  justify-content: center;
}
.main-nav a {
  display: inline-block;
  padding: 8px 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--emerald-soft); color: var(--emerald-deep); text-decoration: none; }
.main-nav a.cta {
  background: var(--emerald);
  color: #fff;
  padding: 8px 14px;
}
.main-nav a.cta:hover { background: var(--emerald-deep); color: #fff; }
.header-right { display: flex; align-items: center; gap: 8px; }
.header-cta-ghost {
  display: none;
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
}
.header-cta-ghost:hover { background: var(--emerald-soft); text-decoration: none; }

.hamburger {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule);
  background: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.hamburger:hover { background: var(--emerald-soft); }

/* Drawer */
.mobile-drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--paper);
  z-index: 150;
  padding: 20px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  overflow: auto;
  border-top: 1px solid var(--rule);
}
.mobile-drawer[data-open="true"] {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer ul { list-style: none; margin: 0; padding: 0; }
.mobile-drawer li { border-bottom: 1px solid var(--rule); }
.mobile-drawer .drawer-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--rule);
  background: #fff;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer .drawer-close:hover { background: var(--emerald-soft); }
.mobile-drawer a {
  display: block;
  padding: 14px 4px;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
}
.mobile-drawer a:hover { color: var(--emerald-deep); text-decoration: none; }
.mobile-drawer .drawer-cta {
  display: block;
  text-align: center;
  margin-top: 20px;
  background: var(--emerald);
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
}

/* ============ MOBILE STICKY CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(14,23,38,.06);
}
.sticky-cta a {
  display: block;
  background: var(--emerald);
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
}
.sticky-cta a:hover { background: var(--emerald-deep); text-decoration: none; }

/* ============ BRAND APP PROFILE (Homepage hero) ============ */
.app-profile {
  background: linear-gradient(180deg, #ffffff 0%, var(--page) 100%);
  border-bottom: 1px solid var(--rule);
  padding: 32px 0 40px;
}
.app-profile-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 24px;
  align-items: stretch;
}
.app-identity {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.app-icon img { width: 100%; height: 100%; object-fit: cover; }
.app-identity h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  margin: 0 0 4px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.app-identity .app-tag {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.app-rating-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}
.app-rating-line .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald); display: inline-block;
}

.app-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
  margin-top: 8px;
}
.fact-tile {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 13px;
  color: var(--ink-soft);
}
.fact-tile strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}
.fact-tile.muted strong { color: var(--ink-muted); font-weight: 500; }

.app-install {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.install-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--emerald);
  color: #fff;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 16px;
  border: 0;
  text-decoration: none;
  white-space: nowrap;
}
.install-cta:hover { background: var(--emerald-deep); text-decoration: none; }
.install-cta .arrow { font-size: 18px; }
.install-secondary {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.install-secondary a {
  flex: 1 1 auto;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.install-secondary a:hover { background: var(--emerald-soft); text-decoration: none; color: var(--emerald-deep); }
.install-note { font-size: 12px; color: var(--ink-muted); margin: 0; }

/* ============ SECTION NUMERAL — signature device ============ */
.numeral-block {
  position: relative;
  padding: 28px 0;
}
.numeral-block .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(72px, 12vw, 156px);
  line-height: 1;
  color: rgba(15,179,106,0.10);
  position: absolute;
  right: 12px;
  top: 0;
  user-select: none;
  letter-spacing: -0.02em;
}
.numeral-block .num.alt { color: rgba(212,175,55,0.16); }
.numeral-block .num.ink { color: rgba(14,23,38,0.08); }

/* ============ MEDIA RAIL ============ */
.media-rail-wrap {
  margin: 0 -20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  max-width: calc(100% + 40px);
  width: calc(100% + 40px);
  min-width: 0;
  contain: layout style;
}
.media-rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  padding: 4px 20px 16px;
  min-width: 0;
  max-width: 100%;
}
.media-rail > * {
  scroll-snap-align: start;
  flex: 0 0 78%;
  max-width: 78%;
}
@media (min-width: 720px) {
  .media-rail > * { flex: 0 0 42%; max-width: 42%; }
}
@media (min-width: 1024px) {
  .media-rail > * { flex: 0 0 30%; max-width: 30%; }
}
.media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper);
  aspect-ratio: 16/10;
  min-width: 0;
  max-width: 100%;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}
.media-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: auto;
  max-width: calc(100% - 28px);
  background: rgba(14,23,38,.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============ HOT shelf ============ */
.hot-shelf {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
.hot-card {
  display: grid;
  grid-template-columns: 88px minmax(0,1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
}
.hot-card:hover { box-shadow: var(--shadow-2); text-decoration: none; }
.hot-card .art {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hot-card .art[data-hot-visual="sports-ball"] .ball {
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f5f5f0, #d8d8c8 60%, #a8a890);
  border: 2px solid #2c2c20;
}
.hot-card .art[data-hot-visual="sports-ball"] .ball::after {
  content: ""; position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: #2c2c20;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  box-shadow: -22px -14px 0 #2c2c20, 22px -14px 0 #2c2c20,
              -22px 14px 0 #2c2c20, 22px 14px 0 #2c2c20;
}
.hot-card .art .schematic {
  width: 72px; height: 72px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
}
.hot-card[data-hot-category="fantasy"] .schematic { background: var(--emerald); }
.hot-card[data-hot-category="rummy"] .schematic { background: #b51d24; }
.hot-card[data-hot-category="sports"] .schematic { background: #1a2e5c; }
.hot-card[data-hot-category="games"] .schematic { background: var(--gold); color: #2c2208; }
.hot-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--ink);
}
.hot-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.hot-card .open {
  color: var(--emerald-deep);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.hot-card .open::after { content: " →"; }

/* ============ YONO COLLECTION ============ */
.yono-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.yono-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  color: var(--ink);
  text-decoration: none;
}
.yono-card:hover { background: var(--emerald-soft); text-decoration: none; }
.yono-card img,
.yono-card .yono-tile {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
}
.yono-card .yono-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.yono-card .name {
  font-weight: 700;
  font-size: 14px;
}
.yono-card .cat {
  font-size: 12px;
  color: var(--ink-soft);
}

/* ============ APP DIRECTORY ============ */
.app-directory {
  display: grid;
  gap: 10px;
}
.app-row {
  display: grid;
  grid-template-columns: 80px minmax(0,1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  color: var(--ink);
  text-decoration: none;
}
.app-row:hover { box-shadow: var(--shadow-1); text-decoration: none; }
.app-row .art {
  width: 80px; height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--emerald-soft);
  display: flex; align-items: center; justify-content: center;
}
.app-row .art img { width: 100%; height: 100%; object-fit: cover; }
.app-row .name { font-weight: 700; font-size: 15px; }
.app-row .meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 12px; color: var(--ink-soft);
}
.app-row .meta span { background: var(--page); border: 1px solid var(--rule); border-radius: 6px; padding: 2px 8px; }
.app-row .cta {
  background: var(--emerald);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.app-row:hover .cta { background: var(--emerald-deep); }

/* ============ Filters ============ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}
.filter-bar input[type="search"] {
  flex: 1 1 220px;
  min-width: 0;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}
.filter-bar input[type="search"]:focus {
  outline: 2px solid var(--emerald);
  outline-offset: 1px;
}
.filter-chips {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.filter-chips button {
  background: #fff;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.filter-chips button[aria-pressed="true"] {
  background: var(--emerald);
  color: #fff;
  border-color: var(--emerald);
}
.result-count {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 8px 0 16px;
}

/* ============ FEATURE STRIP ============ */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 6px;
}
.feature-card p { margin: 0; font-size: 14px; color: var(--ink-soft); }
.feature-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--emerald-deep);
  margin-bottom: 6px;
}

/* ============ STEP list ============ */
.step-list { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; counter-reset: step; }
.step-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 36px minmax(0,1fr);
  gap: 12px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.step-list li::before {
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--emerald-soft);
  color: var(--emerald-deep);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-list li strong { display: block; margin-bottom: 2px; }
.step-list li p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.faq-item summary {
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-display); font-size: 22px; color: var(--emerald-deep); }
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 16px 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

/* ============ NEWS ============ */
.news-grid {
  display: grid;
  gap: 14px;
}
.news-card {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 8px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
}
.news-card:hover { box-shadow: var(--shadow-1); text-decoration: none; }
.news-card .meta { font-size: 12px; color: var(--ink-soft); display: flex; gap: 8px; align-items: center; }
.news-card .meta .pill { background: var(--emerald-soft); color: var(--emerald-deep); padding: 2px 8px; border-radius: 6px; font-weight: 700; }
.news-card h3 { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.news-card p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: #d6dde9;
  padding: 48px 0 80px;
  margin-top: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  }
}
.footer-grid > div {
  min-width: 0;
}
.footer-grid h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #b3bdcf; font-size: 14px; }
.footer-grid a:hover { color: #fff; text-decoration: underline; }
.footer-brand-line {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.footer-brand-line .mark {
  width: 44px; height: 44px; border-radius: 10px; overflow: hidden;
}
.footer-brand-line .mark img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-line .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}
.footer-meta { font-size: 12px; color: #8b94a8; margin-top: 16px; }
.footer-meta a { color: #b3bdcf; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 24px;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: #8b94a8;
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 12px; }
.cookie-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  color: #d6dde9;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  display: inline-block;
  max-width: 100%;
  min-width: 0;
  margin-top: 8px;
  white-space: normal;
  text-align: left;
}
.cookie-btn:hover { background: rgba(255,255,255,0.05); color: #fff; }

/* ============ COOKIE PANEL ============ */
.cookie-overlay {
  position: fixed; inset: 0; background: rgba(14,23,38,.5);
  z-index: 300; display: none; align-items: center; justify-content: center;
  padding: 20px;
  /* The dimmed backdrop must never capture pointer events: it sits above the
     sticky header and would otherwise make the hamburger and nav unclickable
     until a consent choice is made. Only the panel itself is interactive. */
  pointer-events: none;
}
.cookie-overlay[data-open="true"] { display: flex; }
.cookie-panel {
  pointer-events: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 480px;
  width: 100%;
  max-height: 80vh;
  overflow: auto;
  box-shadow: var(--shadow-2);
}
.cookie-panel h2 {
  font-family: var(--font-display); font-size: 20px; margin: 0 0 8px;
}
.cookie-panel p { margin: 0 0 14px; font-size: 14px; color: var(--ink-soft); }
.cookie-row {
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
  padding: 10px 0; border-bottom: 1px solid var(--rule);
  align-items: center;
}
.cookie-row label { font-weight: 600; font-size: 14px; }
.cookie-row small { color: var(--ink-soft); font-size: 12px; display: block; margin-top: 2px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.cookie-actions button {
  flex: 1 1 auto;
  border-radius: var(--radius-md);
  border: 0;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-actions .primary { background: var(--emerald); color: #fff; }
.cookie-actions .secondary { background: var(--page); border: 1px solid var(--rule-strong); color: var(--ink); }
.cookie-actions .tertiary { background: transparent; border: 1px solid var(--rule-strong); color: var(--ink); }

/* ============ LEGAL PAGE ============ */
.legal-main { padding: 40px 0 64px; }
.legal-main h1 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 8px;
}
.legal-main h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  margin: 24px 0 8px;
}
.legal-main h3 { font-size: 18px; margin: 16px 0 6px; }
.legal-main p { margin: 0 0 12px; color: var(--ink-soft); }
.legal-main ul { padding-left: 20px; color: var(--ink-soft); }
.legal-main li { margin-bottom: 6px; }

/* ============ ARTICLE (news) ============ */
.article-main { padding: 32px 0 56px; }
.article-hero {
  background: linear-gradient(180deg, var(--page) 0%, #fff 100%);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0 36px;
}
.article-hero .meta { font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; }
.article-hero h1 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 4.6vw, 44px); margin: 0 0 8px; line-height: 1.15;
}
.article-hero .lede { font-size: 18px; color: var(--ink-soft); max-width: 70ch; }
.article-hero img { border-radius: var(--radius-lg); margin-top: 16px; border: 1px solid var(--rule); }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-family: var(--font-display); font-weight: 600; font-size: 24px; margin: 28px 0 8px; }
.article-body h3 { font-size: 18px; margin: 18px 0 6px; }
.article-body p { margin: 0 0 14px; }
.article-body img { margin: 16px 0; border-radius: var(--radius-md); }

/* ============ GAME DETAIL ============ */
.game-main { padding: 32px 0 56px; }
.game-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
.game-card-big {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.game-card-big .game-banner {
  aspect-ratio: 16/10;
  /* Wide editorial/brand hero. Per the gate, /assets/img/game-pool/
     catalogue thumbnails must not be stretched into the hero role; they
     appear below as a contained card. The hero uses a single shared
     brand mark (logo, exempt from the duplication rule) instead of the
     per-provider editorial pattern that previously caused 8 assets to
     be reused across 973 pages. */
  background:
    linear-gradient(135deg, rgba(15,179,106,0.18), rgba(15,179,106,0.06) 60%, rgba(15,179,106,0)),
    url("/assets/img/brand/india-slots-mark-256.png") center/cover no-repeat,
    var(--cream, #f6f1e6);
  overflow: hidden;
  position: relative;
}
.game-card-big .game-banner::after {
  /* Soft top-left vignette so the title chip reads on light games. */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,17,31,0.55) 0%, rgba(7,17,31,0.20) 35%, rgba(7,17,31,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.game-card-big .game-banner img,
.game-card-big .game-banner img.game-card-thumb {
  /* Catalogue thumbnail rendered as a contained card on top of the
     wide editorial hero. Fixed card footprint, no stretch. */
  position: absolute;
  right: clamp(12px, 4%, 28px);
  bottom: clamp(12px, 4%, 28px);
  width: clamp(104px, 28%, 240px);
  aspect-ratio: 16/10;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  z-index: 1;
  height: auto;
}
.game-card-big .game-banner .hero-title {
  position: absolute;
  left: clamp(14px, 4%, 28px);
  top: clamp(14px, 4%, 28px);
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin: 0;
  max-width: 60%;
}
.game-card-big .game-banner .hero-title .hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.game-card-big .game-banner .hero-provider {
  position: absolute;
  left: clamp(14px, 4%, 28px);
  top: calc(clamp(14px, 4%, 28px) + clamp(20px, 3vw, 30px) * 1.25);
  z-index: 2;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  margin: 0;
}
.game-card-big .body { padding: 16px 18px; }
.game-card-big h1 { font-family: var(--font-display); font-weight: 600; font-size: 26px; margin: 0 0 4px; }
.game-card-big .meta { color: var(--ink-soft); font-size: 14px; margin-bottom: 12px; }
.game-card-big .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.game-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px; margin-top: 12px;
}
.game-facts .fact {
  background: var(--page); border: 1px solid var(--rule); border-radius: 8px; padding: 8px 10px;
  font-size: 12px; color: var(--ink-soft);
}
.game-facts .fact strong { display: block; color: var(--ink); font-size: 14px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.related-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.related-card:hover { box-shadow: var(--shadow-1); text-decoration: none; }
.related-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.related-card .body { padding: 8px 10px; font-size: 13px; font-weight: 700; }

/* ============ VIP / comparison tables ============ */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.table-scroll table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  table-layout: auto;
}
.table-scroll th,
.table-scroll td {
  padding: 8px 10px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--rule);
}
.table-scroll th {
  background: var(--page);
  font-weight: 700;
  color: var(--ink);
}
.table-scroll td.num,
.table-scroll th.num { text-align: center; }
.table-scroll tr:last-child td { border-bottom: 0; }

/* ============ Responsive ≥720 ============ */
@media (min-width: 720px) {
  .app-profile-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
    gap: 32px;
  }
  .app-facts {
    grid-template-columns: repeat(4, minmax(0,1fr));
  }
  .hot-shelf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
  .game-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 1fr);
  }
}

/* ============ News + FAQ split (homepage) ============ */
.news-faq-split {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 24px;
  align-items: start;
}
@media (min-width: 900px) {
  .news-faq-split {
    grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
  }
}

/* ============ Responsive ≥900 ============ */
@media (min-width: 900px) {
  .main-nav { display: flex; }
  .header-cta-ghost { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-drawer { display: none !important; }
  .hot-shelf {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .footer-grid { grid-template-columns: minmax(0,1.6fr) repeat(3, minmax(0,1fr)); }
  .article-body { max-width: 820px; }
}

/* ============ Mobile-only sticky CTA ============ */
@media (max-width: 767px) {
  .sticky-cta { display: block; }
  body { padding-bottom: var(--sticky-cta-h); }
}

/* ============ Accessibility ============ */
:focus-visible { outline: 2px solid var(--emerald); outline-offset: 2px; border-radius: 6px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============ Print ============ */
@media print {
  .site-header, .sticky-cta, .mobile-drawer, .cookie-overlay { display: none; }
}