:root {
  --gold: #f7b615;
  --gold-light: #ffe07a;
  --gold-deep: #986000;
  --bg: #020202;
  --panel: rgba(8, 8, 8, 0.9);
  --line: rgba(247, 182, 21, 0.58);
  --text: #fbf7ec;
  --muted: #cec4ad;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 8%, rgba(247, 182, 21, 0.18), transparent 32rem),
    radial-gradient(circle at 14% 82%, rgba(247, 182, 21, 0.13), transparent 22rem),
    #000;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 196, 46, 0.7) 0 1px, transparent 1.6px);
  background-size: 96px 96px;
  opacity: 0.16;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(1536px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, #000 0%, #060504 44%, #000 100%);
  overflow: clip;
  position: relative;
}

.whatsapp-float {
  position: fixed;
  right: max(16px, calc((100vw - 1536px) / 2 + 20px));
  bottom: 22px;
  z-index: 30;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 900;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.58));
}

.whatsapp-float svg {
  width: 62px;
  height: 62px;
  display: block;
  padding: 12px;
  border-radius: 50%;
  fill: #fff;
  background: linear-gradient(180deg, #35df68, #12a83d);
  border: 4px solid rgba(137, 255, 170, 0.72);
  box-shadow: 0 0 0 6px rgba(24, 180, 69, 0.18), 0 0 24px rgba(32, 200, 90, 0.62);
}

.whatsapp-float span {
  display: block;
  min-width: 88px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(53, 223, 104, 0.55);
  box-shadow: 0 0 16px rgba(18, 168, 61, 0.22);
  font-size: 0.68rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 1px 3px #000;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.hero {
  background: #000;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
}

.platform-sticky {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  border: 2px solid var(--line);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7), 0 0 22px rgba(247, 182, 21, 0.15);
}

.platform-tab {
  min-height: 76px;
  border: 0;
  border-right: 1px solid rgba(247, 182, 21, 0.35);
  color: #fff;
  background: #070707;
  font: 900 1.08rem "Inter", Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.platform-tab:last-child {
  border-right: 0;
}

.platform-tab.is-active,
.platform-tab:hover {
  color: #100b00;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, #ae6908 100%);
}

.logo-text {
  display: inline-block;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 0 #000, 0 0 12px rgba(247, 182, 21, 0.45);
}

.platform-tab.is-active .logo-text,
.platform-tab:hover .logo-text {
  color: #0b0904;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.logo-text.my99 {
  color: #fff35d;
}

.logo-text.sky {
  color: #ffd34b;
}

.logo-text.ipl {
  color: #fff;
}

.logo-text.ipl::after {
  content: "777";
  color: var(--gold);
}

.logo-text.ipl {
  font-size: 0;
}

.logo-text.ipl::before {
  content: "IPLBET";
  font-size: clamp(1.4rem, 3vw, 2.25rem);
}

.logo-text.ipl::after {
  font-size: clamp(1.4rem, 3vw, 2.25rem);
}

.platform-heading,
.platform-showcase,
.about,
.trust-section,
.reviews,
.footer-cta {
  padding-left: clamp(18px, 4vw, 68px);
  padding-right: clamp(18px, 4vw, 68px);
}

.platform-heading {
  padding-top: 34px;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.platform-showcase {
  padding-top: 22px;
}

.section-title {
  text-align: center;
  margin: 0 0 20px;
}

h1,
h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.95;
  color: var(--gold);
  text-shadow: 0 0 15px rgba(247, 182, 21, 0.45), 0 3px 0 rgba(0, 0, 0, 0.75);
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.3rem);
}

.section-title p {
  margin: 6px 0 0;
  color: var(--muted);
}

.ornament h2::before,
.ornament h2::after {
  content: "";
  display: inline-block;
  width: min(100px, 16vw);
  height: 2px;
  margin: 0 20px 0.28em;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.platform-panel {
  display: none;
  width: min(1160px, 100%);
  margin: 0 auto 44px;
  padding: clamp(14px, 2.5vw, 30px);
  text-align: center;
  border: 2px solid rgba(247, 182, 21, 0.36);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 20%, rgba(247, 182, 21, 0.14), transparent 32rem),
    rgba(5, 5, 5, 0.92);
  box-shadow: inset 0 0 34px rgba(247, 182, 21, 0.06);
}

.platform-panel.is-visible {
  display: block;
}

.live-preview {
  width: min(980px, 100%);
  margin: 0 auto 22px;
  border: 2px solid rgba(247, 182, 21, 0.42);
  border-radius: 12px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(247, 182, 21, 0.13);
}

.preview-header {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(247, 182, 21, 0.32);
  background: linear-gradient(180deg, rgba(255, 219, 93, 0.13), rgba(0, 0, 0, 0));
}

.preview-header span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.preview-header a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #0c0800;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-preview iframe {
  display: block;
  width: 100%;
  height: min(620px, 78vh);
  border: 0;
  background: #111;
}

.screenshot-frame {
  width: min(430px, 100%);
  max-height: 760px;
  margin: 0 auto 24px;
  border: 12px solid #151515;
  border-radius: 34px;
  overflow: auto;
  background: #050505;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.78), 0 0 30px rgba(247, 182, 21, 0.24);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.mock-phone {
  position: relative;
  width: min(980px, 100%);
  aspect-ratio: 3.35 / 1.35;
  margin: 0 auto 22px;
  border: 12px solid #1a1a1a;
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), transparent 12%, transparent 88%, rgba(255,255,255,0.07)),
    radial-gradient(circle at 72% 52%, rgba(255, 204, 67, 0.34), transparent 14rem),
    #070707;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.78), 0 0 24px rgba(247, 182, 21, 0.22);
}

.mock-phone::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 8px;
  height: 68px;
  transform: translateY(-50%);
  border-radius: 10px;
  background: #030303;
  z-index: 2;
}

.screen-top,
.sports-bar,
.game-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(16px, 4vw, 52px);
  background: rgba(0, 0, 0, 0.82);
}

.screen-top {
  height: 58px;
}

.screen-top strong {
  margin-right: auto;
  font-size: clamp(1rem, 2.2vw, 1.55rem);
}

.screen-top span,
.screen-top b,
.screen-banner button {
  border: 0;
  border-radius: 6px;
  padding: 9px 18px;
  color: #fff;
  background: #252525;
  font-weight: 900;
}

.screen-top b,
.screen-banner button {
  background: #e82727;
}

.sports-bar {
  height: 38px;
  color: #f6d36a;
  font-size: 0.82rem;
}

.screen-banner {
  position: relative;
  z-index: 1;
  min-height: calc(100% - 148px);
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 20px 10% 20px 15%;
  text-align: left;
  text-transform: uppercase;
}

.screen-banner::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  width: 28%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 10px solid rgba(247, 182, 21, 0.36);
  box-shadow: 0 0 34px rgba(247, 182, 21, 0.38), inset 0 0 28px rgba(247, 182, 21, 0.24);
}

.screen-banner small {
  color: #ffe58d;
  font-weight: 900;
  font-size: clamp(1rem, 2.2vw, 1.7rem);
}

.screen-banner em {
  font-style: normal;
  font-weight: 900;
}

.screen-banner strong {
  color: #ff2c2c;
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: 0.95;
  text-shadow: 0 3px 0 #fff;
}

.screen-banner button {
  width: max-content;
  margin-top: 12px;
  cursor: pointer;
}

.game-row {
  height: 52px;
  justify-content: space-around;
  color: #fff;
  font-size: 0.9rem;
}

.platform-two {
  background:
    radial-gradient(circle at 72% 48%, rgba(64, 199, 255, 0.25), transparent 13rem),
    linear-gradient(135deg, #091018, #070707 54%, #1f1300);
}

.platform-three {
  background:
    radial-gradient(circle at 70% 52%, rgba(247, 182, 21, 0.3), transparent 14rem),
    linear-gradient(135deg, #150705, #050505 52%, #0d170a);
}

.platform-panel p {
  max-width: 720px;
  margin: 8px auto 20px;
  color: #fff;
  line-height: 1.55;
}

.gold-btn,
.dark-btn {
  min-height: 66px;
  min-width: min(360px, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 30px;
  border-radius: 8px;
  border: 2px solid rgba(255, 220, 103, 0.72);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gold-btn {
  color: #0d0900;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 52%, #b16b08);
}

.dark-btn {
  color: #fff;
  background: #060606;
}

.gold-btn:hover,
.dark-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(247, 182, 21, 0.34);
}

.gold-btn i {
  font-style: normal;
  font-size: 2rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  gap: clamp(20px, 5vw, 76px);
  align-items: center;
  padding-top: 20px;
  padding-bottom: 34px;
}

.about p {
  max-width: 720px;
  color: #f7f0df;
  line-height: 1.68;
  font-size: 1.08rem;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 220px));
  gap: 12px;
  margin-top: 20px;
}

.service-highlights article {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 7, 7, 0.88);
  box-shadow: inset 0 0 18px rgba(247, 182, 21, 0.07), 0 0 20px rgba(247, 182, 21, 0.08);
}

.service-highlights b {
  color: var(--gold);
  font: 800 2rem "Barlow Condensed", Impact, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.service-highlights span {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.secure-art,
.footer-shield {
  min-height: 270px;
  position: relative;
  display: grid;
  place-items: center;
}

.glow-ring {
  position: absolute;
  width: min(340px, 85%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(247, 182, 21, 0.32), transparent 45%),
    repeating-radial-gradient(circle, rgba(247, 182, 21, 0.5) 0 2px, transparent 2px 22px);
  filter: blur(0.2px);
}

.shield-icon {
  width: 160px;
  height: 190px;
  clip-path: polygon(50% 0, 90% 14%, 84% 72%, 50% 100%, 16% 72%, 10% 14%);
  display: grid;
  place-items: center;
  color: #100900;
  background: linear-gradient(145deg, #fff0a2, #f2ae12 46%, #794200);
  border: 4px solid #ffe280;
  font-size: 5rem;
  font-weight: 900;
  box-shadow: 0 0 36px rgba(247, 182, 21, 0.64);
}

.trust-section,
.reviews {
  padding-top: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.trust-grid article,
.security-row article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(0,0,0,0)),
    rgba(7, 7, 7, 0.88);
  box-shadow: inset 0 0 18px rgba(247, 182, 21, 0.05);
}

.trust-grid article {
  min-height: 178px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  text-align: center;
  padding: 16px 10px;
}

.trust-grid span,
.security-row span {
  color: var(--gold);
  font-size: 3.2rem;
  line-height: 1;
  text-shadow: 0 0 18px rgba(247, 182, 21, 0.58);
}

.trust-grid b {
  font-size: 1.3rem;
  font-weight: 500;
}

.trust-grid small {
  color: #fff;
  font-size: 1.1rem;
}

.review-list {
  display: grid;
  gap: 8px;
}

.review {
  min-height: 122px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 280px 80px;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(14px, 3vw, 50px);
  border: 1px solid rgba(247, 182, 21, 0.48);
  border-radius: 10px;
  background: rgba(7, 7, 7, 0.86);
}

.avatar {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background:
    radial-gradient(circle at 50% 35%, #ffe28a, #191919 48%, #050505 100%);
  font-weight: 900;
}

.stars {
  color: var(--gold);
  font-size: 1.8rem;
  letter-spacing: 0;
}

.review p {
  margin: 5px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1.35;
}

.person {
  display: grid;
  gap: 7px;
}

.person b {
  color: var(--gold);
  font-size: 1.3rem;
}

.person small,
.security-row small {
  color: #fff;
}

.quote {
  color: var(--gold);
  font: 900 5.8rem "Barlow Condensed", Impact, sans-serif;
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: end;
  padding-top: 20px;
  padding-bottom: 38px;
}

.footer-main {
  text-align: center;
}

.security-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 16px 0 20px;
}

.security-row article {
  min-height: 88px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-content: center;
  align-items: center;
  text-align: left;
  padding: 10px 14px;
}

.security-row span {
  grid-row: span 2;
  font-size: 2.35rem;
}

.security-row b {
  color: var(--gold);
  font-size: 1.2rem;
}

.footer-actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.chip-stack {
  min-height: 230px;
  position: relative;
}

.chip-stack span {
  position: absolute;
  right: 12%;
  bottom: 18%;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 16px dashed var(--gold);
  background:
    radial-gradient(circle, #111 0 34%, #050505 35% 54%, var(--gold) 55% 58%, #141414 59%);
  box-shadow: 0 0 28px rgba(247, 182, 21, 0.38);
}

.chip-stack span:nth-child(2) {
  right: 36%;
  bottom: 3%;
  transform: scale(0.8);
}

.chip-stack span:nth-child(3) {
  right: 0;
  bottom: 0;
  transform: scale(1.12);
}

@media (max-width: 1080px) {
  .platform-sticky {
    width: calc(100% - 28px);
  }

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

  .review {
    grid-template-columns: 110px minmax(0, 1fr) 210px;
  }

  .quote {
    display: none;
  }

  .footer-cta {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .chip-stack {
    display: none;
  }
}

@media (max-width: 760px) {
  .whatsapp-float {
    font-size: 0.8rem;
  }

  .whatsapp-float svg {
    width: 54px;
    height: 54px;
    padding: 10px;
  }

  .whatsapp-float span {
    font-size: 0.66rem;
  }

  .platform-sticky {
    grid-template-columns: 1fr;
    position: sticky;
  }

  .platform-tab {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 182, 21, 0.35);
  }

  .platform-tab:last-child {
    border-bottom: 0;
  }

  .ornament h2::before,
  .ornament h2::after {
    width: 42px;
    margin-inline: 8px;
  }

  .mock-phone {
    aspect-ratio: 1.15 / 1;
    border-width: 8px;
    border-radius: 28px;
  }

  .screen-top,
  .sports-bar,
  .game-row {
    padding: 0 12px;
    gap: 9px;
    overflow: hidden;
  }

  .screen-top span,
  .screen-top b,
  .screen-banner button {
    padding: 7px 8px;
    font-size: 0.72rem;
  }

  .sports-bar span:nth-child(n+4),
  .game-row span:nth-child(n+4) {
    display: none;
  }

  .screen-banner {
    padding: 18px 20px 18px 42px;
  }

  .screen-banner::after {
    right: 6%;
    width: 36%;
  }

  .about,
  .footer-cta,
  .security-row,
  .service-highlights {
    grid-template-columns: 1fr;
  }

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

  .review {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: auto;
    padding: 12px;
  }

  .avatar {
    width: 64px;
    height: 64px;
  }

  .person {
    display: none;
  }

  .footer-shield {
    min-height: 190px;
  }

  .shield-icon {
    width: 120px;
    height: 144px;
    font-size: 3.6rem;
  }

  .footer-actions .gold-btn,
  .footer-actions .dark-btn,
  .gold-btn,
  .dark-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 460px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: 138px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.3rem;
  }
}
