:root {
  --bg-deep: #050d24;
  --bg-mid: #0b1f55;
  --bg-soft: #112a73;
  --card: rgba(7, 20, 56, 0.86);
  --card-border: rgba(214, 164, 65, 0.3);
  --text-main: #f4f7ff;
  --text-muted: #bfd0ff;
  --accent: #d6a441;
  --accent-soft: #f0c46b;
  --danger: #ff8f8f;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-lg: 0 30px 70px rgba(2, 8, 28, 0.45);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% 10%, rgba(214, 164, 65, 0.12), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(44, 86, 195, 0.25), transparent 38%),
    linear-gradient(165deg, var(--bg-deep) 0%, var(--bg-mid) 56%, #091637 100%);
  line-height: 1.72;
}

.bg-orb {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.35;
}

.orb-a {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 16vh;
  background: radial-gradient(circle at 40% 40%, var(--accent), transparent 62%);
}

.orb-b {
  width: 320px;
  height: 320px;
  right: -120px;
  top: 52vh;
  background: radial-gradient(circle at 60% 45%, #2b5dcf, transparent 62%);
}

a {
  color: var(--accent-soft);
  text-decoration: none;
}

a:hover {
  color: #ffe1a6;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(5, 13, 36, 0.94), rgba(5, 13, 36, 0.78));
  border-bottom: 1px solid rgba(214, 164, 65, 0.25);
}

.header-wrap {
  width: min(var(--container), 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.78rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 800;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: #10172c;
  background: linear-gradient(145deg, #efd293, #c38917);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.brand-text {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
}

.primary-nav {
  justify-self: center;
}

.primary-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.22rem;
}

.primary-nav li {
  position: relative;
}

.primary-nav li > a {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 0.82rem;
  color: var(--text-main);
  font-size: 0.92rem;
  border-radius: 10px;
  font-weight: 700;
}

.has-children > a::after {
  content: '▾';
  display: inline-block;
  margin-left: 0.38rem;
  font-size: 0.72rem;
  color: #f5c96f;
  transition: transform 0.2s ease;
}

.has-children.sub-open > a::after {
  transform: rotate(180deg);
}

.primary-nav li.active > a,
.primary-nav li > a:hover {
  background: rgba(214, 164, 65, 0.16);
  color: #fff;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  min-width: 220px;
  position: absolute;
  left: 0;
  top: calc(100% + 0.05rem);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(8, 21, 60, 0.97);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 90;
}

.submenu li a {
  width: 100%;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.64rem 0.72rem;
}

.has-children:hover > .submenu,
.has-children:focus-within > .submenu,
.has-children.sub-open > .submenu {
  display: block;
}

.sub-toggle {
  display: none;
}

.header-actions {
  display: inline-flex;
  gap: 0.5rem;
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 800;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}

.btn-soft {
  border-color: rgba(214, 164, 65, 0.45);
  color: #f9dfae;
  background: rgba(214, 164, 65, 0.09);
}

.btn-gold {
  background: linear-gradient(160deg, #f2cc7b 0%, #c88b1d 100%);
  color: #161d34;
}

.btn:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(108deg, rgba(3, 9, 27, 0.92) 24%, rgba(3, 12, 37, 0.66) 55%, rgba(2, 10, 30, 0.85) 100%),
    url('https://cricbet99india.com/wp-content/uploads/2025/10/8.webp') center/cover no-repeat;
  border-bottom: 1px solid rgba(214, 164, 65, 0.34);
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 16% 42%, rgba(214, 164, 65, 0.16), transparent 38%),
    radial-gradient(circle at 84% 54%, rgba(34, 88, 222, 0.23), transparent 38%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--container), 92vw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.9fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: end;
}

.hero-kicker {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd992;
  font-weight: 800;
}

.hero-inner h1 {
  margin: 0.8rem 0 0;
  width: min(920px, 100%);
  font-family: 'Cinzel', serif;
  line-height: 1.15;
  font-size: clamp(2rem, 5.4vw, 4rem);
  color: #fff9ea;
}

.hero-lead {
  margin: 1.1rem 0 0;
  width: min(760px, 100%);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  color: #e4edff;
  font-weight: 500;
}

.hero-highlights {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 0.8rem 1rem;
  width: min(860px, 100%);
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(214, 164, 65, 0.28);
  background: rgba(5, 18, 49, 0.58);
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  font-size: 0.94rem;
  color: #f0f5ff;
}

.hero-highlights li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f3d08a, #ca8e26);
  color: #17203d;
  font-weight: 900;
  font-size: 0.72rem;
  flex: 0 0 20px;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-media {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 140px 140px;
  gap: 0.75rem;
}

.hero-media-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 222, 159, 0.45);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #fff9ea;
  text-transform: uppercase;
}

.hero-media-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 7, 18, 0.82) 0%, rgba(3, 7, 18, 0.18) 55%, rgba(255, 184, 44, 0.12) 100%);
}

.hero-media-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 219, 146, 0.4);
  border-radius: 16px;
}

.hero-media-card {
  isolation: isolate;
}

.hero-media-card.football {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  background-image:
    linear-gradient(130deg, rgba(255, 183, 39, 0.2), rgba(15, 31, 89, 0.15)),
    url('https://cricbet99india.com/wp-content/uploads/2025/12/Top-Football-Betting-Basics-for-Cricbet99-Users.jpg');
}

.hero-media-card.cricket {
  grid-column: 8 / span 5;
  grid-row: 1 / span 1;
  background-image:
    linear-gradient(130deg, rgba(255, 183, 39, 0.2), rgba(15, 31, 89, 0.15)),
    url('https://cricbet99india.com/wp-content/uploads/2026/01/How-to-Start-Cricket-Betting-on-Cricbet99.jpg');
}

.hero-media-card.casino {
  grid-column: 8 / span 5;
  grid-row: 2 / span 1;
  background-image:
    linear-gradient(130deg, rgba(255, 183, 39, 0.2), rgba(15, 31, 89, 0.15)),
    url('https://cricbet99india.com/wp-content/uploads/2025/11/Casino-Promotions-1024x683.jpg');
}

.hero-media-card > * {
  position: relative;
  z-index: 3;
}

.page-shell {
  width: min(var(--container), 92vw);
  margin: 1.4rem auto 3rem;
}

.home-shell {
  width: min(1280px, 95vw);
  margin-top: 1.45rem;
}

.page-banner {
  margin: 0 0 1.15rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.25rem;
  background: linear-gradient(145deg, rgba(11, 31, 85, 0.96), rgba(7, 18, 49, 0.9));
}

.page-banner .eyebrow {
  margin: 0;
  font-size: 0.74rem;
  color: #ffe4b1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-banner h1 {
  margin: 0.45rem 0 0;
  font-family: 'Cinzel', serif;
  line-height: 1.24;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.content-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  padding: clamp(1rem, 2vw, 1.8rem);
}

.page-content {
  overflow: hidden;
}

.home-content {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-content > div {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.home-content > div > div {
  grid-column: 1 / -1;
  border-radius: 20px;
  border: 1px solid rgba(214, 164, 65, 0.2);
  background: linear-gradient(145deg, rgba(8, 23, 61, 0.84), rgba(7, 17, 44, 0.9));
  padding: clamp(0.95rem, 2vw, 1.55rem);
  box-shadow: 0 24px 45px rgba(3, 10, 29, 0.37);
}

/* The first blocks duplicate the new custom hero on home; hide them. */
.home-content > div > div:nth-child(-n+3) {
  display: none;
}

.home-section-hidden {
  display: none !important;
}

.home-page .home-section-card h2,
.home-page .home-section-card h3 {
  text-align: center;
  margin-top: 0.2rem;
  margin-bottom: 0.9rem;
}

.home-page .home-section-card.what-is-section,
.home-page .home-section-card.about-section,
.home-page .home-section-card.workflow-section,
.home-page .home-section-card.casino-games-section {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.what-is-wrap .what-is-head h2 {
  margin: 0;
  text-align: left;
  color: #ffe9be;
  font-size: clamp(1.34rem, 2.3vw, 1.76rem);
}

.what-is-wrap .what-is-head p {
  margin: 0.66rem 0 0;
  color: #deebff;
}

.what-is-wrap .what-is-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.86rem;
}

.what-feature-card {
  border-radius: 14px;
  border: 1px solid rgba(214, 164, 65, 0.28);
  background: linear-gradient(145deg, rgba(10, 27, 68, 0.82), rgba(7, 19, 49, 0.9));
  padding: 0.88rem;
}

.what-feature-card h3 {
  margin: 0;
  text-align: left;
  color: #ffe7ba;
  font-size: 1.05rem;
}

.what-feature-card p {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
}

.what-quick-facts {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.what-quick-facts li {
  border: 1px solid rgba(214, 164, 65, 0.26);
  border-radius: 12px;
  background: rgba(8, 20, 54, 0.68);
  padding: 0.68rem 0.8rem;
  font-size: 0.9rem;
  color: #e8f0ff;
}

.what-is-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.about-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1rem;
}

.about-main {
  border-radius: 15px;
  border: 1px solid rgba(214, 164, 65, 0.28);
  background:
    radial-gradient(circle at 90% 0, rgba(214, 164, 65, 0.16), transparent 48%),
    linear-gradient(145deg, rgba(11, 30, 75, 0.9), rgba(8, 21, 53, 0.95));
  padding: 1rem;
}

.about-main h2 {
  margin: 0;
  text-align: left;
  color: #ffe8bb;
  font-size: clamp(1.28rem, 2.2vw, 1.62rem);
}

.about-main p {
  margin: 0.58rem 0 0;
  color: #deecff;
}

.about-chip {
  display: inline-flex;
  margin-top: 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 164, 65, 0.4);
  background: rgba(214, 164, 65, 0.14);
  color: #ffe5b2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.42rem 0.72rem;
}

.about-points {
  display: grid;
  gap: 0.72rem;
}

.about-point {
  border-radius: 13px;
  border: 1px solid rgba(214, 164, 65, 0.27);
  background: linear-gradient(145deg, rgba(10, 25, 62, 0.84), rgba(7, 19, 48, 0.9));
  padding: 0.8rem 0.88rem;
}

.about-point h3 {
  margin: 0;
  text-align: left;
  color: #ffe9c3;
  font-size: 1rem;
}

.about-point p {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
}

.about-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.home-page .home-section-card.workflow-section {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .home-section-card.workflow-section > .work-wrap {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(214, 164, 65, 0.32);
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 164, 65, 0.2), transparent 36%),
    radial-gradient(circle at 0% 100%, rgba(39, 93, 224, 0.22), transparent 40%),
    linear-gradient(155deg, rgba(6, 17, 46, 0.96), rgba(4, 12, 34, 0.97));
  box-shadow: 0 24px 52px rgba(2, 9, 29, 0.48);
  padding: clamp(1rem, 2.4vw, 1.8rem);
  overflow: hidden;
}

.work-wrap .work-head h2 {
  margin: 0;
  text-align: center;
  color: #f6cc58;
  font-size: clamp(1.58rem, 3vw, 2.26rem);
  letter-spacing: 0.02em;
}

.work-wrap .work-head p {
  margin: 0.75rem auto 0;
  max-width: 760px;
  text-align: center;
  color: #dbe9ff;
  font-size: 1rem;
}

.work-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.05rem;
}

.work-card {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(233, 187, 86, 0.3);
  background:
    linear-gradient(165deg, rgba(11, 27, 68, 0.9), rgba(6, 16, 42, 0.95)),
    rgba(9, 21, 53, 0.88);
  padding: 1rem 1rem 1.05rem;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  box-shadow: 0 14px 28px rgba(2, 7, 22, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.work-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(244, 207, 126, 0.85), rgba(203, 142, 33, 0.75));
  border-radius: 14px 14px 0 0;
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 34px rgba(2, 7, 24, 0.46);
  border-color: rgba(239, 200, 114, 0.45);
}

.work-card .work-step {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid rgba(242, 206, 125, 0.45);
  background: rgba(235, 189, 79, 0.14);
  color: #ffd36f;
  padding: 0.24rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card .work-icon {
  margin-top: 0.8rem;
  display: flex;
  justify-content: flex-start;
  color: #f6cb61;
}

.work-card .work-icon svg,
.work-card .work-icon span {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(246, 205, 116, 0.4);
  background: linear-gradient(155deg, rgba(238, 202, 123, 0.2), rgba(196, 133, 26, 0.08));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.work-card h3 {
  margin: 0.7rem 0 0;
  text-align: left;
  color: #fff1cc;
  font-size: 1.18rem;
  line-height: 1.35;
}

.work-card > p {
  margin: 0.5rem 0 0;
  text-align: left;
  color: #e0ebff;
  line-height: 1.6;
  font-size: 0.95rem;
}

.work-cta {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.faq-wrap h2 {
  margin: 0 0 0.9rem;
  text-align: left;
  color: #ffe9bf;
  font-size: clamp(1.34rem, 2.3vw, 1.76rem);
}

.faq-accordion {
  display: grid;
  gap: 0.72rem;
}

.faq-item {
  border-radius: 13px;
  border: 1px solid rgba(214, 164, 65, 0.26);
  background: linear-gradient(145deg, rgba(8, 22, 58, 0.84), rgba(7, 19, 48, 0.9));
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 0;
  background: transparent;
  padding: 0.92rem 0.94rem;
  color: #f4f7ff;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-question:hover {
  background: rgba(214, 164, 65, 0.08);
}

.faq-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(214, 164, 65, 0.45);
  color: #f5cd6c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}

.faq-question[aria-expanded='true'] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0.94rem 0.9rem;
}

.faq-answer p {
  margin: 0;
  color: #ddeaff;
  font-size: 0.95rem;
  line-height: 1.62;
}

.casino-wrap .casino-head h2 {
  margin: 0;
  text-align: left;
  color: #ffe8bf;
  font-size: clamp(1.35rem, 2.4vw, 1.78rem);
}

.casino-wrap .casino-head p {
  margin: 0.65rem 0 0;
  color: #dfebff;
}

.casino-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.casino-card {
  border-radius: 14px;
  border: 1px solid rgba(214, 164, 65, 0.26);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(10, 27, 67, 0.84), rgba(7, 19, 48, 0.9));
}

.casino-media {
  min-height: 135px;
  max-height: 135px;
}

.casino-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border: 0;
}

.casino-body {
  padding: 0.76rem 0.82rem 0.85rem;
}

.casino-body h3 {
  margin: 0;
  text-align: left;
  color: #ffe9c2;
  font-size: 1.03rem;
}

.casino-body p {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
}

.casino-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.home-page .home-section-card > div > div > p:first-of-type,
.home-page .home-section-card p {
  color: #dfe8ff;
}

.home-page .home-section-card .styled-list {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.home-page .home-section-card .styled-list li {
  position: relative;
  margin: 0;
  padding: 0.78rem 0.9rem 0.78rem 2.8rem;
  border-radius: 14px;
  border: 1px solid rgba(214, 164, 65, 0.28);
  background: linear-gradient(145deg, rgba(10, 27, 68, 0.82), rgba(7, 20, 50, 0.88));
  line-height: 1.55;
}

.home-page .home-section-card ul.styled-list li::before,
.home-page .home-section-card ol.styled-list li::before {
  position: absolute;
  left: 0.82rem;
  top: 0.72rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  color: #17213f;
  background: linear-gradient(180deg, #f4d392, #ca9127);
  box-shadow: 0 6px 16px rgba(212, 151, 46, 0.33);
}

.home-page .home-section-card ul.styled-list li::before {
  content: '✓';
}

.home-page .home-section-card ol.styled-list {
  counter-reset: homeList;
}

.home-page .home-section-card ol.styled-list li::before {
  counter-increment: homeList;
  content: counter(homeList);
}

.home-page .home-section-card .styled-list li span {
  display: inline;
}

.home-page .home-section-card.has-steps .step-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 0.82rem;
  align-items: start;
  margin: 0.72rem 0 0;
  padding: 0.85rem;
  border: 1px solid rgba(214, 164, 65, 0.28);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(12, 30, 75, 0.84), rgba(8, 20, 53, 0.9));
}

.home-page .home-section-card.has-steps .step-item > figure {
  width: 68px;
  height: 68px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(214, 164, 65, 0.34);
  background: rgba(255, 211, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.home-page .home-section-card.has-steps .step-item > figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
  border: 0;
}

.home-page .home-section-card.has-steps .step-item > div h4 {
  margin: 0;
  font-size: 1rem;
  color: #ffe8bb;
  line-height: 1.35;
}

.home-page .home-section-card.has-steps .step-item > div p {
  margin: 0.4rem 0 0;
}

.home-page .home-section-card .table-wrap {
  overflow-x: auto;
  margin-top: 0.9rem;
  border-radius: 12px;
}

.home-page .home-section-card .table-wrap table {
  margin: 0;
  min-width: 640px;
}

.home-page .home-section-card article:not(.sports-card):not(.what-feature-card):not(.about-point):not(.work-card):not(.faq-item):not(.casino-card) {
  border: 1px solid rgba(214, 164, 65, 0.24);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(9, 24, 64, 0.65);
}

.home-page .home-section-card.sports-options-section h2,
.home-page .home-section-card.sports-options-section h3 {
  text-align: left;
}

.sports-options-section .sports-options-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: #ffeabf;
}

.sports-options-section .sports-options-intro {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.sports-options-section .sports-options-intro p {
  margin: 0;
  border: 1px solid rgba(214, 164, 65, 0.24);
  border-radius: 14px;
  background: rgba(8, 21, 57, 0.72);
  padding: 0.75rem 0.85rem;
}

.sports-options-section .sports-options-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.sports-options-section .sports-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  border: 1px solid rgba(214, 164, 65, 0.26);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(10, 27, 68, 0.84), rgba(8, 20, 50, 0.9));
}

.sports-options-section .sports-card-media {
  min-height: 112px;
  max-height: 112px;
  overflow: hidden;
}

.sports-options-section .sports-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border: 0;
}

.sports-options-section .sports-card-body {
  padding: 0.8rem 0.85rem;
}

.sports-options-section .sports-card-body h3 {
  margin: 0;
  color: #ffe9c2;
  font-size: 1.08rem;
}

.sports-options-section .sports-card-body p {
  margin: 0.48rem 0 0;
  color: #dce8ff;
  font-size: 0.92rem;
  line-height: 1.53;
}

.sports-options-section .sports-options-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.page-content > *:first-child {
  margin-top: 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  font-family: 'Cinzel', serif;
  line-height: 1.3;
  margin: 1.6rem 0 0.75rem;
  color: #fff4d8;
}

.page-content h1 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.page-content h2 {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
}

.page-content h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.page-content p,
.page-content li,
.page-content td,
.page-content th,
.page-content span {
  color: var(--text-main);
  font-size: 0.98rem;
}

.page-content ul,
.page-content ol {
  padding-left: 1.2rem;
}

.page-content img,
.page-content iframe {
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 164, 65, 0.24);
  margin: 0.85rem 0;
  display: block;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.93rem;
  overflow-x: auto;
  display: block;
}

.page-content th,
.page-content td {
  border: 1px solid rgba(214, 164, 65, 0.22);
  padding: 0.55rem 0.68rem;
}

.page-content th {
  background: rgba(214, 164, 65, 0.18);
  color: #fff8e8;
}

.page-content blockquote {
  border-left: 4px solid var(--accent);
  margin: 1rem 0;
  padding: 0.6rem 1rem;
  border-radius: 0 12px 12px 0;
  background: rgba(214, 164, 65, 0.08);
}

.page-content a {
  color: #ffd989;
  font-weight: 700;
}

.page-content a:hover {
  color: #fff0cd;
}

.support-page {
  display: grid;
  gap: 1rem;
}

.support-panel {
  border: 1px solid rgba(214, 164, 65, 0.24);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(10, 26, 66, 0.82), rgba(7, 19, 49, 0.9));
  padding: 1rem;
}

.support-panel h2 {
  margin: 0;
  color: #ffe7b6;
  text-align: left;
  font-size: clamp(1.2rem, 2.1vw, 1.58rem);
}

.support-panel h3 {
  margin: 0;
  color: #ffecc7;
  text-align: left;
  font-size: 1.02rem;
}

.support-panel p {
  margin: 0.65rem 0 0;
  color: #e1ecff;
}

.support-panel ul,
.support-panel ol {
  margin: 0.72rem 0 0;
}

.support-kicker {
  margin: 0;
  display: inline-flex;
  border: 1px solid rgba(214, 164, 65, 0.38);
  border-radius: 999px;
  background: rgba(214, 164, 65, 0.12);
  color: #ffd98f !important;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-hero {
  background:
    radial-gradient(circle at 100% 0, rgba(214, 164, 65, 0.18), transparent 40%),
    linear-gradient(150deg, rgba(11, 31, 77, 0.92), rgba(8, 21, 56, 0.94));
}

.support-hero h2 {
  margin-top: 0.72rem;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.support-cta-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.support-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.support-card {
  border: 1px solid rgba(214, 164, 65, 0.26);
  border-radius: 14px;
  background: rgba(8, 23, 60, 0.72);
  padding: 0.85rem 0.86rem;
}

.support-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.48rem;
  background: linear-gradient(180deg, #f2d08a, #c88d24);
  color: #1b223f;
  font-size: 0.8rem;
  font-weight: 900;
}

.support-grid-issues .support-card h3 {
  margin-bottom: 0.2rem;
}

.support-panel-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.support-panel-split > div {
  border: 1px solid rgba(214, 164, 65, 0.24);
  border-radius: 14px;
  background: rgba(8, 23, 60, 0.6);
  padding: 0.86rem;
}

.support-number-list {
  margin: 0.72rem 0 0;
  padding-left: 1.2rem;
}

.support-number-list li + li {
  margin-top: 0.28rem;
}

.support-check-list {
  margin: 0.72rem 0 0;
  padding-left: 0;
  list-style: none;
}

.support-check-list li {
  position: relative;
  margin: 0;
  padding-left: 1.42rem;
}

.support-check-list li + li {
  margin-top: 0.35rem;
}

.support-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.03rem;
  color: #f4cd73;
  font-weight: 800;
}

.id-special-page {
  display: grid;
  gap: 1rem;
}

.id-hero,
.id-panel,
.id-final-cta {
  border: 1px solid rgba(214, 164, 65, 0.25);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(10, 26, 66, 0.84), rgba(7, 19, 49, 0.92));
  padding: 1rem;
}

.id-hero {
  background:
    radial-gradient(circle at 95% 0, rgba(214, 164, 65, 0.2), transparent 35%),
    radial-gradient(circle at 0 100%, rgba(36, 89, 215, 0.22), transparent 40%),
    linear-gradient(150deg, rgba(11, 31, 77, 0.92), rgba(8, 21, 56, 0.95));
}

.id-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.id-kicker {
  margin: 0;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(214, 164, 65, 0.4);
  background: rgba(214, 164, 65, 0.14);
  color: #ffd68f !important;
  padding: 0.28rem 0.7rem;
  font-size: 0.74rem !important;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.id-hero h2 {
  margin: 0.7rem 0 0;
  text-align: left;
  color: #ffebc1;
  font-size: clamp(1.34rem, 2.4vw, 1.92rem);
}

.id-hero p {
  margin: 0.62rem 0 0;
  color: #dfebff;
}

.id-hero-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.id-hero-media {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(214, 164, 65, 0.32);
  overflow: hidden;
  min-height: 250px;
}

.id-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border: 0;
}

.id-stat-list {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.id-stat-list li {
  border: 1px solid rgba(214, 164, 65, 0.28);
  border-radius: 12px;
  background: rgba(7, 21, 58, 0.72);
  padding: 0.64rem 0.75rem;
}

.id-panel h2,
.id-final-cta h2 {
  margin: 0;
  text-align: left;
  color: #ffe8bb;
}

.id-panel p,
.id-final-cta p {
  margin: 0.64rem 0 0;
  color: #dfebff;
}

.id-card-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.id-card {
  border: 1px solid rgba(214, 164, 65, 0.28);
  border-radius: 14px;
  background: rgba(8, 23, 60, 0.72);
  padding: 0.82rem 0.86rem;
}

.id-card h3 {
  margin: 0;
  text-align: left;
  color: #ffecc7;
  font-size: 1.02rem;
}

.id-card p {
  margin: 0.46rem 0 0;
  font-size: 0.93rem;
}

.id-panel-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.id-panel-split > div {
  border: 1px solid rgba(214, 164, 65, 0.25);
  border-radius: 14px;
  background: rgba(8, 23, 60, 0.62);
  padding: 0.85rem;
}

.id-steps {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: idStep;
  display: grid;
  gap: 0.62rem;
}

.id-steps li {
  position: relative;
  border: 1px solid rgba(214, 164, 65, 0.28);
  border-radius: 12px;
  background: rgba(7, 20, 54, 0.64);
  padding: 0.72rem 0.76rem 0.72rem 2.6rem;
}

.id-steps li::before {
  counter-increment: idStep;
  content: counter(idStep);
  position: absolute;
  left: 0.72rem;
  top: 0.7rem;
  width: 1.36rem;
  height: 1.36rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f2d08a, #c78c22);
  color: #182141;
  font-size: 0.75rem;
  font-weight: 900;
}

.id-steps h3 {
  margin: 0;
  text-align: left;
  color: #ffeac3;
  font-size: 0.96rem;
}

.id-steps p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

.id-check-list {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.id-check-list li {
  position: relative;
  margin: 0;
  padding-left: 1.42rem;
}

.id-check-list li + li {
  margin-top: 0.36rem;
}

.id-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.03rem;
  color: #f4cd73;
  font-weight: 800;
}

.id-check-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem 0.82rem;
}

.id-check-list-grid li + li {
  margin-top: 0;
}

.id-side-media {
  margin: 0.9rem 0 0;
  border-radius: 14px;
  border: 1px solid rgba(214, 164, 65, 0.3);
  overflow: hidden;
  min-height: 180px;
}

.id-side-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border: 0;
}

.id-faq {
  margin-top: 0.84rem;
  display: grid;
  gap: 0.62rem;
}

.id-faq details {
  border: 1px solid rgba(214, 164, 65, 0.25);
  border-radius: 12px;
  background: rgba(8, 23, 60, 0.64);
  padding: 0.62rem 0.72rem;
}

.id-faq summary {
  cursor: pointer;
  color: #ffe9bf;
  font-weight: 800;
}

.id-faq p {
  margin: 0.5rem 0 0;
  color: #deebff;
  font-size: 0.92rem;
}

.id-final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(214, 164, 65, 0.2), transparent 42%),
    linear-gradient(155deg, rgba(11, 31, 77, 0.9), rgba(7, 18, 49, 0.95));
}

.id-final-cta h2 {
  text-align: center;
}

.id-final-cta p {
  margin: 0.6rem auto 0;
  max-width: 760px;
  text-align: center;
}

.id-final-cta .id-hero-actions {
  justify-content: center;
}

.site-footer {
  width: min(var(--container), 94vw);
  margin: 0 auto 1.3rem;
  border-top: 1px solid var(--card-border);
  padding: 1.35rem 0 0.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1.2rem;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.6rem;
  font-family: 'Cinzel', serif;
  color: #f7deb0;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.36rem;
}

.disclaimer {
  color: var(--danger) !important;
  font-size: 0.86rem !important;
  margin-top: 0.8rem;
}

.footer-bottom {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid rgba(214, 164, 65, 0.18);
  padding-top: 0.8rem;
}

.wa-floating {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 130;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.wa-pill,
.wa-fab {
  text-decoration: none;
  color: #fff !important;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(13, 44, 21, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow, filter;
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.wa-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 66px;
  min-width: 330px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  animation: waPillGlow 2.8s ease-in-out infinite;
}

.wa-pill::after {
  content: '';
  position: absolute;
  top: -15%;
  left: -42%;
  width: 38%;
  height: 130%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  transform: translateX(-140%) skewX(-20deg);
  animation: waPillShine 3.3s ease-in-out infinite;
  pointer-events: none;
}

.wa-fab {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: waFabPulse 2.1s ease-out infinite;
}

.wa-fab::before {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  opacity: 0;
  animation: waFabRing 2.1s ease-out infinite;
  pointer-events: none;
}

.wa-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: waIconBob 2.4s ease-in-out infinite;
}

.wa-icon svg {
  width: 24px;
  height: 24px;
}

.wa-fab .wa-icon {
  width: 48px;
  height: 48px;
}

.wa-fab .wa-icon svg {
  width: 30px;
  height: 30px;
}

.wa-pill:hover,
.wa-fab:hover {
  transform: translateY(-3px) scale(1.015);
  filter: brightness(1.06);
  box-shadow: 0 16px 36px rgba(10, 40, 20, 0.52);
}

@keyframes waPillGlow {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(13, 44, 21, 0.45);
  }
  50% {
    box-shadow: 0 14px 38px rgba(14, 66, 30, 0.56);
  }
}

@keyframes waPillShine {
  0%,
  45% {
    transform: translateX(-150%) skewX(-20deg);
  }
  70%,
  100% {
    transform: translateX(420%) skewX(-20deg);
  }
}

@keyframes waFabPulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(13, 44, 21, 0.45);
  }
  50% {
    box-shadow: 0 14px 36px rgba(11, 68, 29, 0.62);
  }
}

@keyframes waFabRing {
  0% {
    opacity: 0.55;
    transform: scale(0.72);
  }
  80% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes waIconBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-pill,
  .wa-fab,
  .wa-icon,
  .wa-pill::after,
  .wa-fab::before {
    animation: none !important;
  }

  .wa-pill,
  .wa-fab {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .header-wrap {
    grid-template-columns: auto auto;
    grid-template-areas:
      'brand toggle'
      'nav nav'
      'actions actions';
    align-items: center;
  }

  .brand {
    grid-area: brand;
  }

  .nav-toggle {
    grid-area: toggle;
    justify-self: end;
  }

  .primary-nav {
    grid-area: nav;
    display: none;
    width: 100%;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav > ul {
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: rgba(6, 17, 47, 0.97);
    padding: 0.55rem;
  }

  .primary-nav li > a {
    width: 100%;
    justify-content: flex-start;
    padding-right: 2.1rem;
  }

  .sub-toggle {
    display: inline-flex;
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(214, 164, 65, 0.36);
    background: rgba(214, 164, 65, 0.08);
    cursor: pointer;
    z-index: 2;
  }

  .sub-toggle::before,
  .sub-toggle::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: #ffe5b2;
    left: 9px;
    top: 14px;
    transition: transform 0.2s ease;
  }

  .sub-toggle::after {
    transform: rotate(90deg);
  }

  .has-children.sub-open > .sub-toggle::after {
    transform: rotate(0);
  }

  .submenu {
    position: static;
    min-width: 0;
    margin-top: 0.3rem;
  }

  .has-children:not(.sub-open) > .submenu {
    display: none;
  }

  .header-actions {
    grid-area: actions;
    justify-self: start;
  }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
    border: 1px solid rgba(214, 164, 65, 0.45);
    background: rgba(214, 164, 65, 0.08);
    cursor: pointer;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: #ffe7bb;
    display: block;
  }

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

  .wa-pill {
    min-width: 280px;
    height: 60px;
    font-size: 1rem;
  }

  .wa-fab {
    width: 78px;
    height: 78px;
  }

  .support-grid,
  .support-panel-split,
  .id-hero-grid,
  .id-panel-split,
  .id-card-grid,
  .id-stat-list,
  .id-check-list-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: calc(100vh - 74px);
  }

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

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

  .hero-media {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(120px, 1fr));
  }

  .hero-media-card.football {
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
  }

  .hero-media-card.cricket {
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
  }

  .hero-media-card.casino {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
  }

  .sports-options-section .sports-options-intro {
    grid-template-columns: 1fr;
  }

  .sports-options-section .sports-options-grid {
    grid-template-columns: 1fr;
  }

  .what-is-wrap .what-is-grid {
    grid-template-columns: 1fr;
  }

  .what-quick-facts {
    grid-template-columns: 1fr;
  }

  .about-wrap {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .page-shell {
    width: 94vw;
    margin-top: 1rem;
  }

  .content-card {
    padding: 0.9rem;
    border-radius: 16px;
  }

  .support-panel {
    padding: 0.82rem;
    border-radius: 14px;
  }

  .id-hero,
  .id-panel,
  .id-final-cta {
    padding: 0.82rem;
    border-radius: 14px;
  }

  .support-panel-split > div,
  .support-card,
  .id-panel-split > div,
  .id-card {
    padding: 0.76rem 0.78rem;
  }

  .btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.76rem;
  }

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

  .hero-inner h1 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

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

  .home-shell {
    width: 94vw;
  }

  .wa-floating {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    gap: 10px;
  }

  .wa-pill {
    min-width: 0;
    width: min(92vw, 330px);
    height: 52px;
    padding: 0 14px;
    font-size: 0.92rem;
    gap: 8px;
  }

  .wa-fab {
    width: 64px;
    height: 64px;
  }

  .wa-icon {
    width: 32px;
    height: 32px;
  }

  .wa-icon svg {
    width: 19px;
    height: 19px;
  }

  .wa-fab .wa-icon {
    width: 40px;
    height: 40px;
  }

  .wa-fab .wa-icon svg {
    width: 24px;
    height: 24px;
  }

  .id-kicker {
    font-size: 0.69rem !important;
    letter-spacing: 0.06em;
  }

  .id-hero h2 {
    font-size: clamp(1.2rem, 5.2vw, 1.5rem);
  }

  .id-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .home-content > div > div {
    border-radius: 15px;
  }

  .home-page .home-section-card.has-steps .step-item {
    grid-template-columns: 1fr;
  }

  .home-page .home-section-card.has-steps .step-item > figure {
    width: 58px;
    height: 58px;
  }

  .sports-options-section .sports-card {
    grid-template-columns: 1fr;
  }

  .sports-options-section .sports-card-media {
    min-height: 120px;
    max-height: 120px;
  }

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

  .faq-question {
    font-size: 0.94rem;
    padding: 0.78rem 0.82rem;
  }

  .faq-answer {
    padding: 0 0.82rem 0.78rem;
  }

  .support-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}
