:root {
  --green: #16a03f;
  --green-contrast: #087327;
  --green-dark: #087327;
  --green-soft: #eaf8ee;
  --gold: #d59a1b;
  --ink: #0d1710;
  --muted: #415348;
  --line: #ddeade;
  --bg: #fbfffc;
  --card: #ffffff;
  --shadow: 0 18px 48px rgba(11, 91, 35, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
main,
.site-header,
.site-footer {
  max-width: 100vw;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid rgba(8, 115, 39, .72);
  outline-offset: 3px;
  border-radius: 12px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  z-index: 10;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--line);
}
.top-strip {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 46px);
  padding: 7px 16px;
  background: #0f2616;
  color: #dff9e4;
  font-size: 13px;
  font-weight: 800;
}
.top-strip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-strip span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 999px;
  background: #4ff377;
}
.nav-shell {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  width: 128px;
  height: 68px;
  overflow: visible;
}
.brand img,
.footer-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.nav-menu {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-weight: 900;
  font-size: 15px;
}
.nav-item {
  padding: 10px 0;
  border-bottom: 3px solid transparent;
}
.nav-item:hover,
.nav-item:focus { color: var(--green); border-color: var(--green); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 14px 28px rgba(22, 160, 63, .22);
}
.btn-ghost {
  background: #fff;
  color: var(--green-dark);
  border-color: #cfe3d4;
}
.nav-toggle { display: none; }

.container {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  padding: 24px 0 34px;
}
.announcement {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(90deg, #0d7b2d, #0a5a22);
  font-size: 14px;
  font-weight: 850;
}
.hero-banner {
  position: relative;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 22px;
  min-height: 318px;
  background:
    radial-gradient(circle at 18% 30%, rgba(86, 243, 119, .32), transparent 24%),
    radial-gradient(circle at 78% 30%, rgba(245, 189, 61, .22), transparent 22%),
    linear-gradient(135deg, #06220f 0%, #0a3718 48%, #031009 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .18;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 30px;
  padding: clamp(28px, 5vw, 58px);
  align-items: center;
}
.kicker {
  color: #8dffa8;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 950;
  font-size: 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin: 14px 0 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 760px;
  color: #e1f4e6;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 650;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-actions .btn { min-height: 54px; border-radius: 16px; font-size: 18px; }
.hero-actions .btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.26); }
.guide-disclosure {
  max-width: 780px;
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(22, 160, 63, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  color: #dff4e3;
  font-size: 14px;
  font-weight: 750;
}
.page-hero .guide-disclosure {
  background: #f4fbf6;
  color: var(--muted);
  border-color: #cfe7d4;
}
.hero-card {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  min-width: 0;
  overflow: hidden;
}
.hero-card h2 { font-size: 28px; line-height: 1.15; margin-bottom: 10px; }
.hero-card p { color: var(--muted); font-weight: 700; }
.win-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--green-soft);
}
.win-pill strong { font-size: 24px; color: var(--green-dark); }
.bonus-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.game-lobby {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.game-tile {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 112px;
  padding: 14px 10px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.game-tile:last-child { border-right: 0; }
.game-tile img {
  width: 58px;
  height: 58px;
  padding: 3px;
  border-radius: 16px;
  object-fit: contain;
  background: #f4fff6;
  box-shadow: inset 0 0 0 1px rgba(8, 115, 39, .12);
}
.game-tile strong { display: block; font-size: 14px; text-transform: uppercase; }
.game-tile span { color: var(--muted); font-size: 12px; font-weight: 800; }

.section {
  padding: clamp(42px, 6vw, 76px) 0;
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}
.section-head p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.15fr 1fr;
  gap: 18px;
}
.compact-dashboard {
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}
.cricket-lobby {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  contain: layout paint;
}
.cricket-main,
.cricket-sidebar {
  min-width: 0;
}
.cricket-scoreboard,
.upcoming-card,
.side-benefit {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 91, 35, .08);
}
.cricket-scoreboard {
  padding: 20px;
}
.scoreboard-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.scoreboard-head h3 {
  margin: 8px 0 6px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}
.scoreboard-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.live-dot {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff4df;
  color: #9a6200;
  font-size: 12px;
  font-weight: 950;
}
.reminder-btn,
.bell-link {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #bfe9c7;
  background: #effbf2;
  color: var(--green-dark);
  box-shadow: 0 8px 18px rgba(8, 115, 39, .12);
}
.reminder-btn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-size: 22px;
}
.score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(210px, .8fr);
  gap: 12px;
  margin: 16px 0;
}
.team-score,
.score-status,
.market-row,
.upcoming-row {
  min-width: 0;
  border: 1px solid #e7f1e9;
  background: #f8fcf9;
}
.team-score,
.score-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
}
.team-score strong,
.score-status strong {
  display: block;
  font-weight: 950;
}
.team-score small,
.score-status span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.team-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--green-contrast);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}
.team-badge.gold {
  background: linear-gradient(135deg, #f3c04d, #cc850b);
  color: #1d1300;
  text-shadow: none;
}
.score-status {
  display: block;
  background: #fffdf7;
}
.market-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 16px;
}
.market-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 850;
}
.market-row strong {
  color: var(--green-dark);
  text-align: right;
}
.cricket-sidebar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.upcoming-card,
.side-benefit {
  padding: 18px;
}
.upcoming-card h3,
.side-benefit h3 {
  margin: 0 0 14px;
  font-size: 22px;
}
.upcoming-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.upcoming-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 15px;
}
.upcoming-row small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}
.upcoming-row strong {
  display: block;
  font-size: 15px;
  font-weight: 950;
}
.upcoming-row strong span {
  color: var(--muted);
  font-size: 12px;
}
.upcoming-row > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}
.bell-link {
  grid-column: 1 / -1;
  width: 100%;
  height: 36px;
  border-radius: 12px;
  font-size: 16px;
}
.view-all {
  display: block;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 950;
  text-align: center;
}
.side-benefit.green {
  background: linear-gradient(135deg, #0d7b2e, #064b1c);
  color: #fff;
}
.side-benefit p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.side-benefit.green p {
  color: #dff9e4;
}
.panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}
.panel h3 { font-size: 25px; margin-bottom: 16px; }
.trending-list { display: grid; gap: 10px; }
.trend-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px;
  border-radius: 15px;
  background: #f6fbf7;
  font-weight: 850;
}
.rank {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--green);
  color: #fff;
}
.mini-btn {
  padding: 7px 12px;
  border-radius: 11px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid #cce4d1;
  font-size: 12px;
  font-weight: 950;
}
.live-card {
  min-height: 254px;
  border-radius: 22px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,.18), transparent 25%),
    linear-gradient(135deg, #083017, #0c5b24);
}
.live-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.live-card__top span,
.live-card__top strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  font-size: 12px;
  font-weight: 950;
}
.live-card p {
  color: #e0f4e5;
  font-weight: 650;
}
.match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0;
  font-size: 22px;
  font-weight: 950;
}
.match span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.odds span {
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.14);
  text-align: center;
  font-weight: 950;
}
.cricket-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.cricket-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #e9fff0;
  font-size: 12px;
  font-weight: 900;
}
.cricket-link {
  display: inline-flex;
  color: #fff;
  font-weight: 950;
}
.cricket-article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}
.cricket-article-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid #cce4d1;
  border-radius: 999px;
  color: var(--green-dark);
  background: #f6fbf7;
  font-size: 13px;
  font-weight: 950;
}
.match-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  contain: layout paint;
}
.match-article-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 91, 35, .08);
}
.match-article-card img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  border-radius: 18px;
  object-fit: cover;
}
.match-article-card h3 {
  margin: 6px 0 8px;
  font-size: 21px;
  line-height: 1.13;
}
.win-list { display: grid; gap: 12px; }
.win-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  font-weight: 800;
}
.win-row:last-child { border-bottom: 0; }
.amount { color: var(--green-dark); font-weight: 950; }

.promo-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}
.promo-card {
  min-height: 180px;
  border-radius: 24px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #092713, #0d7b2d);
  box-shadow: var(--shadow);
}
.promo-card.light {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}
.promo-card h3 { font-size: 28px; line-height: 1.12; }
.promo-card p { color: inherit; opacity: .86; font-weight: 700; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.trust-item {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 850;
}
.trust-item span { display: block; color: var(--muted); font-size: 13px; font-weight: 700; }

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.content-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 24px;
}
.content-card h3 { font-size: 26px; line-height: 1.15; }
.content-card p { color: var(--muted); font-weight: 650; }
.text-link { color: var(--green-dark); font-weight: 950; }

.testimonial-section {
  background: linear-gradient(180deg, transparent, #eefaf1);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}
.stars {
  color: var(--gold);
  letter-spacing: .08em;
  font-size: 20px;
}
.review-card p {
  margin: 18px 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}
.review-card strong {
  color: var(--green-dark);
  font-size: 17px;
}

.page-hero {
  padding: clamp(50px, 8vw, 95px) 0;
  background: linear-gradient(180deg, #effaf1, transparent);
}
.page-hero h1 {
  color: var(--ink);
  max-width: 980px;
}
.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 700;
}
.article-body {
  max-width: 900px;
  padding: 54px 0 72px;
}
.toc-box,
.trust-strip,
.inline-cta {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(11, 91, 35, .07);
}
.toc-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  padding: 14px;
}
.toc-box strong {
  margin-right: 4px;
  color: var(--ink);
  font-weight: 950;
}
.toc-box a {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
  padding: 14px;
}
.trust-strip span {
  padding: 10px 12px;
  border-radius: 14px;
  background: #f7fcf8;
  color: #44534a;
  font-size: 13px;
  font-weight: 850;
}
.inline-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  margin: 28px 0;
  padding: 18px;
  background: linear-gradient(135deg, #f6fff8, #fff);
}
.inline-cta strong {
  font-size: 19px;
  line-height: 1.2;
}
.inline-cta span {
  color: var(--muted);
  font-weight: 800;
}
.inline-cta .btn {
  grid-row: span 2;
  min-height: 42px;
}
.article-figure {
  margin: 0 0 28px;
}
.article-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.article-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.article-body h2 { font-size: 34px; margin-top: 42px; }
.article-body h3 { font-size: 24px; margin-top: 30px; }
.article-body p,
.article-body li {
  font-size: 18px;
  color: #354138;
}
.article-body a { color: var(--green-dark); font-weight: 900; }
.faq-block {
  margin: 46px 0 12px;
  display: grid;
  gap: 12px;
}
.faq-block h2 {
  margin: 0 0 4px;
}
.faq-block details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(11, 91, 35, .07);
}
.faq-block summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}
.faq-block p {
  margin: 12px 0 0;
}
.promo-hero {
  background:
    radial-gradient(circle at 14% 20%, rgba(22,160,63,.16), transparent 28%),
    linear-gradient(180deg, #effaf1, transparent);
}
.promotion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.promotion-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: #0b1710;
  color: #fff;
  border: 1px solid rgba(22, 160, 63, .22);
  box-shadow: var(--shadow);
}
.promotion-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}
.promotion-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}
.promotion-card__body span {
  margin-bottom: 12px;
  color: #42dc68;
  font-size: 13px;
  font-weight: 950;
}
.promotion-card__body h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
}
.promotion-card__body p {
  color: #dff4e3;
  font-weight: 650;
}
.promotion-card__body .btn {
  margin-top: auto;
}
.promo-support {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.promo-support article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow);
}
.promo-support h2,
.promo-support h3 {
  margin: 12px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}
.promo-support p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.link-row a {
  display: inline-flex;
  padding: 11px 13px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}
.internal-link-grid {
  margin: 18px 0 32px;
}
.internal-link-grid a {
  background: #fff;
  border: 1px solid #cfe3d4;
}
.cta-band {
  margin: 44px 0;
  padding: 30px;
  border-radius: 24px;
  background: #0f2616;
  color: #fff;
}
.cta-band p { color: #dff4e3; }

.register-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 24px;
  align-items: start;
}
.invite-box {
  padding: 22px;
  border-radius: 22px;
  background: #f2faf4;
  border: 1px solid #cbe8d0;
}
.invite-code {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid #b6d9bd;
  background: #e9f2eb;
  color: #52705b;
  font-size: 22px;
  font-weight: 950;
}

.site-footer {
  background: #0b1710;
  color: #dff4e3;
  padding: 48px 0 28px;
}
.footer-grid {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}
.footer-logo {
  width: 124px;
  height: 124px;
  margin-bottom: 14px;
}
.site-footer h2 { font-size: 17px; color: #fff; margin-bottom: 14px; }
.site-footer a {
  display: block;
  margin: 9px 0;
  color: #bfe8c7;
  font-weight: 750;
}
.site-footer p { color: #aac4b0; }
.footer-bottom {
  width: min(1360px, calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
}
.floating-telegram {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #22a7e8;
  box-shadow: 0 16px 30px rgba(0,0,0,.2);
}
.floating-telegram svg {
  width: 29px;
  height: 29px;
  fill: #fff;
}

.admin-visit-panel {
  display: none;
  padding: 28px 0;
  background: #f4fbf6;
  border-top: 1px solid var(--line);
}
.admin-visit-panel.is-visible { display: block; }
.admin-visit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.admin-visit-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.admin-visit-head h2 {
  margin: 4px 0 6px;
  font-size: clamp(24px, 3vw, 36px);
}
.admin-visit-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.admin-visit-head code {
  background: var(--green-soft);
  border-radius: 8px;
  padding: 2px 5px;
}
.admin-visit-pill {
  flex: 0 0 auto;
  display: inline-flex;
  border: 1px solid #bfe3c7;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-visit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.admin-visit-grid > div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: #fbfffc;
  min-height: 92px;
}
.admin-visit-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.admin-visit-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}
.admin-visit-pages {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}
.admin-visit-pages b { color: var(--ink); }
.admin-visit-jump {
  position: fixed;
  left: 16px;
  bottom: 18px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #0f2616;
  color: #fff;
  border: 1px solid rgba(22, 160, 63, .32);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  font-weight: 950;
}
.admin-visit-jump.is-visible { display: inline-flex; }

.promo-nudge {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(8, 115, 39, .22);
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 45px rgba(8, 38, 18, .18);
  color: var(--ink);
  transform: translateY(18px);
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
}
.promo-nudge:focus {
  outline: none;
}
.promo-nudge.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.promo-nudge__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #eef8f1;
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}
.promo-nudge__eyebrow {
  margin: 0 36px 8px 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.promo-nudge strong {
  display: block;
  padding-right: 24px;
  font-size: 19px;
  line-height: 1.22;
}
.promo-nudge p {
  margin: 10px 0 14px;
  color: #304137;
  font-size: 14px;
  line-height: 1.5;
}
.promo-nudge__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .hero-inner,
  .register-shell { grid-template-columns: 1fr; }
  .game-lobby { grid-template-columns: repeat(4, 1fr); }
  .cricket-sidebar,
  .score-grid { grid-template-columns: 1fr; }
  .dashboard-grid,
  .promotion-grid,
  .promo-grid,
  .content-grid,
  .review-grid { grid-template-columns: 1fr 1fr; }
  .promo-support { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .top-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 10px;
    overflow: hidden;
    justify-content: start;
    white-space: normal;
    padding: 7px 12px;
  }
  .top-strip span:nth-child(n+2) { display: none; }
  .top-strip span {
    white-space: nowrap;
  }
  .container,
  .footer-grid,
  .footer-bottom {
    width: min(calc(100% - 24px), 680px);
    max-width: 100%;
  }
  .nav-shell {
    grid-template-columns: 1fr;
    min-height: 66px;
    width: min(calc(100% - 24px), 680px);
    gap: 10px;
    padding: 8px 0 12px;
  }
  .brand {
    width: 104px;
    height: 58px;
    justify-self: center;
  }
  .nav-toggle {
    display: none;
    justify-content: center;
    align-items: center;
    justify-self: end;
    width: 64px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 900;
  }
  .nav-menu {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
  }
  .nav-menu.is-open { display: flex; }
  .nav-item { border-bottom: 1px solid var(--line); padding: 12px 4px; }
  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-width: 0;
    gap: 8px;
  }
  .nav-actions .btn {
    padding: 0 10px;
    min-width: 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .hero-banner { min-height: 0; border-radius: 18px; }
  .announcement,
  .hero-banner,
  .hero-card,
  .live-card,
  .panel,
  .promo-card,
  .content-card,
  .review-card {
    max-width: 100%;
  }
  .hero-inner {
    padding: 22px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-inner > * {
    min-width: 0;
    max-width: 100%;
  }
  h1 {
    max-width: 100%;
    font-size: 29px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero-copy {
    max-width: 100%;
    font-size: 15px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .announcement { align-items: start; flex-direction: column; }
  .announcement span {
    width: 100%;
    white-space: normal;
  }
  .announcement span,
  .scoreboard-head,
  .market-row,
  .upcoming-row,
  .live-card__top,
  .cricket-tags,
  .win-row {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .game-lobby { grid-template-columns: repeat(2, 1fr); }
  .game-tile { min-width: 0; }
  .game-tile { min-height: 104px; }
  .game-tile img {
    width: 52px;
    height: 52px;
  }
  .scoreboard-head {
    display: grid;
  }
  .cricket-lobby,
  .cricket-main,
  .cricket-scoreboard,
  .cricket-sidebar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .cricket-scoreboard {
    padding: 16px;
    margin-top: 14px;
  }
  .cricket-scoreboard *,
  .upcoming-card *,
  .side-benefit * {
    min-width: 0;
  }
  .cricket-scoreboard,
  .upcoming-card,
  .side-benefit,
  .panel,
  .match-article-card {
    border-color: rgba(8, 115, 39, .28);
    box-shadow: 0 12px 28px rgba(8, 115, 39, .12);
  }
  .cricket-scoreboard,
  .upcoming-card,
  .side-benefit {
    position: relative;
    background: rgba(255, 255, 255, .97);
  }
  .cricket-scoreboard::before,
  .upcoming-card::before,
  .side-benefit::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, transparent, rgba(8, 115, 39, .45), transparent);
  }
  .cricket-sidebar {
    margin-top: 14px;
  }
  .score-grid,
  .market-list,
  .cricket-sidebar {
    gap: 12px;
  }
  .score-grid {
    margin: 12px 0;
  }
  .team-score,
  .score-status,
  .market-row,
  .upcoming-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px 12px;
    border-color: rgba(8, 115, 39, .25);
    background: rgba(255, 255, 255, .78);
    padding: 13px;
  }
  .score-status,
  .market-row,
  .upcoming-row {
    grid-template-columns: 1fr;
  }
  .team-score strong,
  .team-score small,
  .score-status strong,
  .score-status span,
  .market-row span,
  .market-row strong,
  .upcoming-row small,
  .upcoming-row strong,
  .upcoming-row > span {
    display: block;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .reminder-btn {
    width: 100%;
    height: 44px;
  }
  .market-row,
  .upcoming-row {
    grid-template-columns: 1fr;
  }
  .market-row strong,
  .upcoming-row > span {
    text-align: left;
  }
  .cricket-article-links {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(8, 115, 39, .22);
  }
  .cricket-article-links a {
    justify-content: center;
    width: 100%;
    border-radius: 14px;
    background: #f1fbf4;
  }
  .cricket-link {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(8, 115, 39, .22);
    color: var(--green-dark);
  }
  .win-pill { display: block; }
  .upcoming-card {
    overflow: hidden;
  }
  .upcoming-list,
  .match-article-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .upcoming-list::-webkit-scrollbar,
  .match-article-grid::-webkit-scrollbar {
    display: none;
  }
  .upcoming-row {
    flex: 0 0 min(78vw, 250px);
    scroll-snap-align: start;
    margin-bottom: 0;
  }
  .match-article-card {
    flex: 0 0 min(82vw, 280px);
    scroll-snap-align: start;
  }
  .match-article-card img {
    aspect-ratio: 16 / 8.8;
  }
  .win-pill strong { display: block; margin-top: 6px; font-size: 21px; overflow-wrap: anywhere; }
  .section-head { display: block; }
  .dashboard-grid,
  .promotion-grid,
  .promo-grid,
  .content-grid,
  .review-grid,
  .footer-grid,
  .trust-bar { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .toc-box { display: grid; grid-template-columns: 1fr; }
  .inline-cta { grid-template-columns: 1fr; }
  .inline-cta .btn { grid-row: auto; }
  .section { padding: 42px 0; }
  .page-hero h1,
  .section h2,
  .section-head p,
  .page-hero p,
  .promotion-card__body h3,
  .promotion-card__body p,
  .review-card p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .promotion-card img { aspect-ratio: 16 / 8; }
  .floating-telegram { width: 52px; height: 52px; }
  .admin-visit-panel { padding: 20px 0; }
  .admin-visit-card {
    padding: 14px;
    border-radius: 20px;
  }
  .admin-visit-head { display: block; }
  .admin-visit-pill { margin-top: 12px; }
  .admin-visit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .admin-visit-grid > div {
    min-height: 82px;
    padding: 12px;
  }
  .admin-visit-jump {
    left: 12px;
    bottom: 12px;
  }
  .promo-nudge {
    right: 12px;
    bottom: 78px;
    width: calc(100vw - 24px);
    border-radius: 20px;
  }
}

@media (max-width: 420px) {
  .top-strip { font-size: 12px; }
  .brand { width: 94px; height: 54px; }
  .hero-inner { padding: 18px; }
  .hero-card { padding: 20px; }
  h1 { font-size: 29px; }
  .section h2 { font-size: 30px; }
  .btn { min-height: 44px; }
}
