/*
Theme Name: 99Exch Custom
Theme URI: https://example.com/
Author: Custom Theme
Description: Responsive custom WordPress theme for the supplied 99Exch content. Uses a yellow / olive / navy / green design system, animated sections, SVG illustrations and a 50/50 hero layout.
Version: 1.0.0
Text Domain: 99Exch
*/
:root {
  --yellow: #f5d603;
  --olive: #adb724;
  --navy: #1a3da6;
  --green: #fda32d;

  --navy-dark: #1a3da6E6;
  --navy-soft: #0f2462B3;
  --green-soft: #f0ca4a7d;
  --yellow-soft: #fff8c7;
  --white: #ffffff;
  --off-white: #f7f9f5;
  --text: #163047;
  --muted: #637383;
  --border: #dfe7e4;

  --radius: 22px;
  --shadow: 0 18px 55px rgba(8,53,87,.11);
  --transition: .3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
  color: var(--navy);
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

section {
  padding: 95px 0;
  position: relative;
}

/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1a3da6;
	
  backdrop-filter: blur(18px);
  border-bottom: 2px solid #fff ;
	color:#fff;
}

.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
	color:#fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.logo-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 12px;
  transform: rotate(-5deg);
  box-shadow: 5px 5px 0 var(--olive);
}

.logo-mark i {
  transform: rotate(5deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 21px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 12px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 9px 25px rgba(245,214,3,.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(245,214,3,.32);
}

.btn-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
}

.menu-btn {
  display: none;
  width: 45px;
  height: 45px;
  border: 0;
  background: var(--navy);
  color: white;
  border-radius: 12px;
  cursor: pointer;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  display: none;
  background: var(--navy);
  color: white;
  padding: 25px 20px 30px;
}

.mobile-menu.active {
  display: block;
  animation: slideDown .3s ease;
}

.mobile-menu a {
  display: flex;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   HERO
========================= */

.hero {
  background: radial-gradient(circle at 85% 20%, #091846, transparent 28%), radial-gradient(circle at 15% 90%, #05133ce6, transparent 30%), #1e3782;
  color: white;
  padding: 105px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  right: -160px;
  top: -180px;
  animation: rotate 18s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(245,214,3,.15);
  border-radius: 50%;
  right: 80px;
  bottom: -180px;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(245,214,3,.1);
  }
}

.hero h1 {
  color: white;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -2px;
  max-width: 700px;
  margin-bottom: 25px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  color: rgba(255,255,255,.76);
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 27px;
}

.hero .btn-outline {
  color: white;
  border-color: rgba(255,255,255,.45);
}

.hero .btn-outline:hover {
  background: white;
  color: var(--navy);
}

.notice {
  font-size: 13px;
  color: rgba(255,255,255,.62);
}

/* Hero dashboard */

.hero-dashboard {
  position: relative;
  min-height: 430px;
}

.score-card {
  position: absolute;
  background: rgba(255,255,255,.96);
  color: var(--navy);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,.22);
}

.score-main {
  width: 360px;
  top: 40px;
  left: 25px;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

.score-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.live i {
  font-size: 8px;
  animation: pulse 1s infinite;
}

.match-name {
  font-size: 13px;
  color: var(--muted);
}

.teams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.team {
  padding: 18px;
  background: var(--off-white);
  border-radius: 15px;
}

.team-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  margin-bottom: 10px;
}

.team strong {
  display: block;
  font-size: 14px;
}

.score {
  font-family: "Space Grotesk";
  font-size: 24px;
  margin-top: 5px;
}

.mini-card {
  width: 215px;
  right: 0;
  top: 5px;
  background: var(--yellow);
  animation: float 4s ease-in-out infinite reverse;
}

.mini-card h4 {
  font-size: 15px;
  margin-bottom: 15px;
}

.market {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(8,53,87,.12);
  font-size: 12px;
}

.market:last-child {
  border: 0;
}

.market b {
  background: white;
  padding: 3px 8px;
  border-radius: 6px;
}

.stats-card {
  position: absolute;
  width: 245px;
  bottom: 10px;
  left: 0;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 20px;
  animation: float 6s ease-in-out infinite;
}

.stats-card h4 {
  color: white;
  font-size: 14px;
  margin-bottom: 15px;
}

.stat-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 11px 0;
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

.stat-line i {
  color: var(--yellow);
}

.progress {
  height: 5px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  flex: 1;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
}

/* =========================
   SECTION HEADER
========================= */

.section-heading {
  max-width: 720px;
  margin-bottom: 45px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 47px);
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
}

/* =========================
   CARDS
========================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(64,144,69,.25);
}

.icon-box {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 15px;
  font-size: 21px;
  margin-bottom: 22px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

.text-link i {
  transition: var(--transition);
}

.text-link:hover i {
  transform: translateX(5px);
}

/* =========================
   ONLINE ID
========================= */

.id-section {
  background: var(--navy);
  color: white;
  overflow: hidden;
}

.id-section .section-heading h2 {
  color: white;
}

.id-section .section-heading p {
  color: rgba(255,255,255,.7);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.step {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  border-radius: 20px;
  transition: var(--transition);
}

.step:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-5px);
}

.step-number {
  color: var(--yellow);
  font-family: "Space Grotesk";
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

/* =========================
   SPORTS
========================= */

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sport-card {
  min-height: 190px;
  padding: 25px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.sport-card:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-6px);
}

.sport-card:hover h3,
.sport-card:hover p {
  color: white;
}

.sport-card i {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 25px;
}

.sport-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.sport-card p {
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   LIVE SECTION
========================= */

.live-section {
  background: #edf4ef;
}

.live-box {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 40px;
  align-items: center;
}

.live-info h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 18px;
}

.live-info p {
  color: var(--muted);
  margin-bottom: 22px;
}

.live-board {
  background: var(--navy);
  color: white;
  border-radius: 25px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.live-board-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.live-board-head span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

.board-team {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.board-team:last-child {
  border: 0;
}

.board-team-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.board-team-name i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: rgba(64,144,69,.25);
  border-radius: 50%;
  color: var(--green);
}

.board-score {
  font-family: "Space Grotesk";
  font-size: 20px;
}

/* =========================
   PAYMENTS
========================= */

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.payment-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 28px;
}

.payment-card i {
  font-size: 23px;
  color: var(--green);
  margin-bottom: 17px;
}

.payment-card h3 {
  margin-bottom: 10px;
}

.payment-card p {
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   ANALYSIS
========================= */

.analysis-section {
  background: var(--navy);
}

.analysis-section h2 {
  color: white;
}

.analysis-section .section-heading p {
  color: rgba(255,255,255,.7);
}

.analysis-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.analysis-item {
  padding: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  color: white;
}

.analysis-item i {
  color: var(--yellow);
  margin-right: 8px;
}

/* =========================
   TOOLS
========================= */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tool-card {
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #eef5ed);
  border: 1px solid var(--border);
}

.tool-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--navy);
  font-size: 23px;
  margin-bottom: 20px;
}

/* =========================
   GUIDES
========================= */

.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.guide {
  background: white;
  padding: 24px;
  border-radius: 19px;
  border: 1px solid var(--border);
}

.guide-number {
  font-size: 12px;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 30px;
}

.guide h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.guide p {
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   RESPONSIBLE
========================= */

.responsible {
  background: #fff8d7;
}

.responsible-content {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.age-box {
  background: var(--navy);
  color: white;
  min-height: 270px;
  border-radius: 25px;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.age-box strong {
  display: block;
  font-family: "Space Grotesk";
  font-size: 90px;
  line-height: 1;
  color: var(--yellow);
}

.age-box span {
  font-weight: 700;
  letter-spacing: 1px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 13px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list i {
  color: var(--green);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 11px;
}

/* =========================
   FAQ
========================= */

.faq {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 23px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font: 600 15px "DM Sans";
  color: var(--navy);
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  padding: 0 23px 20px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* =========================
   CTA
========================= */

.final-cta {
  padding: 75px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 20%, rgba(64,144,69,.4), transparent 25%),
    var(--navy);
  color: white;
}

.cta-box h2 {
  color: white;
  font-size: clamp(32px, 4vw, 50px);
  max-width: 100%;
  margin-bottom: 15px;
	font-size:30px;
}

.cta-box p {
  color: rgba(255,255,255,.7);
  max-width: 680px;
  margin-bottom: 25px;
	text-align:center;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #1a3da6;
  color: white;
  padding: 65px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 45px;
}

.footer-brand p {
  color: rgba(255,255,255,.55);
  max-width: 340px;
  margin-top: 15px;
  font-size: 13px;
}

footer h4 {
  color: white;
  font-size: 14px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.45);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
	text-align:center;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1050px) {

  .nav-links {
    gap: 12px;
  }

  .hero-grid {
    gap: 30px;
  }

  .score-main {
    left: 0;
  }

  .mini-card {
    right: -20px;
  }

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

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

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

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

@media(max-width: 820px) {

  .nav-links,
  .nav-actions .btn-outline {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .hero-grid,
  .live-box,
  .responsible-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 75px;
  }

  .hero-dashboard {
    min-height: 390px;
    margin-top: 20px;
  }

  .card-grid,
  .payment-grid,
  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media(max-width: 560px) {

  .container {
    width: min(100% - 28px, 1180px);
  }

  section {
    padding: 65px 0;
  }

  .navbar {
    height: 68px;
  }

  .logo {
    font-size: 21px;
  }

  .logo-mark {
    width: 35px;
    height: 35px;
  }

  .hero {
    padding: 65px 0;
  }

  .hero h1 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-dashboard {
    min-height: 400px;
    transform: scale(.88);
    transform-origin: center;
    margin-left: -7%;
    margin-right: -7%;
  }

  .score-main {
    width: 310px;
    left: 0;
  }

  .mini-card {
    right: -5px;
    width: 185px;
  }

  .stats-card {
    width: 210px;
  }

  .card-grid,
  .payment-grid,
  .tools-grid,
  .sports-grid,
  .guides-grid,
  .analysis-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 35px 25px;
    border-radius: 22px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
/* =========================================================
   99EXCH ONLINE CRICKET ID PAGE
========================================================= */


/* =========================================
   ID HERO
========================================= */

.id-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 95px;
    background:
        radial-gradient(circle at 80% 20%, rgba(64,144,69,.28), transparent 27%),
        radial-gradient(circle at 10% 90%, rgba(245,214,3,.12), transparent 30%),
        linear-gradient(135deg, #05243b, #083557 65%, #062c49);
    color: white;
}

.id-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
    right: -230px;
    top: -290px;
}

.id-hero::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(245,214,3,.1);
    border-radius: 50%;
    left: -180px;
    bottom: -190px;
}

.id-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.id-hero-content {
    max-width: 680px;
}

.id-hero h1 {
    color: white;
    font-size: clamp(44px, 5.3vw, 70px);
    letter-spacing: -2.5px;
    margin-bottom: 23px;
}

.id-hero h1 span {
    color: var(--yellow);
}

.id-hero-content > p {
    color: rgba(255,255,255,.76);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.id-hero-content .hero-small-text {
    color: rgba(255,255,255,.58);
    font-size: 14px;
    max-width: 600px;
    margin-bottom: 28px;
}

.id-hero .btn-outline {
    color: white;
    border-color: rgba(255,255,255,.4);
}

.id-hero .btn-outline:hover {
    color: var(--navy);
    background: white;
}

.id-hero-note {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    max-width: 590px;
    color: rgba(255,255,255,.52);
    font-size: 11px;
}

.id-hero-note i {
    color: var(--green);
    margin-top: 4px;
}


/* HERO DASHBOARD */

.id-hero-visual {
    min-height: 465px;
    position: relative;
}

.id-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    left: 50%;
    top: 55px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(64,144,69,.16);
    filter: blur(25px);
}

.id-dashboard {
    position: absolute;
    z-index: 3;
    width: 375px;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    padding: 25px;
    border-radius: 25px;
    background: rgba(255,255,255,.97);
    color: var(--text);
    box-shadow: 0 30px 75px rgba(0,0,0,.3);
    animation: idDashboardFloat 5s ease-in-out infinite;
}

@keyframes idDashboardFloat {
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.dashboard-label {
    display: block;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.dashboard-top strong {
    display: block;
    margin-top: 3px;
    color: var(--navy);
    font: 700 19px "Space Grotesk";
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-size: 9px;
    font-weight: 800;
}

.dashboard-status i {
    font-size: 6px;
}

.profile-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    padding: 14px;
    border-radius: 15px;
    background: var(--off-white);
}

.profile-avatar {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex: 0 0 43px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy);
}

.profile-box div:nth-child(2) {
    flex: 1;
}

.profile-box span,
.profile-box strong {
    display: block;
}

.profile-box span {
    color: var(--muted);
    font-size: 10px;
}

.profile-box strong {
    color: var(--navy);
    font-size: 13px;
}

.profile-box > i {
    color: #a8b4b1;
    font-size: 11px;
}

.dashboard-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dashboard-features div {
    padding: 17px 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
}

.dashboard-features i {
    display: block;
    color: var(--green);
    font-size: 19px;
    margin-bottom: 8px;
}

.dashboard-features span {
    color: var(--text);
    font-size: 10px;
    font-weight: 700;
}

.dashboard-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 10px;
}

.dashboard-bottom i {
    color: var(--green);
}

.id-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0,0,0,.16);
}

.id-floating-card strong,
.id-floating-card span {
    display: block;
}

.id-floating-card strong {
    color: white;
    font-size: 10px;
}

.id-floating-card span {
    color: rgba(255,255,255,.52);
    font-size: 8px;
    margin-top: 2px;
}

.floating-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--yellow);
    color: var(--navy);
}

.green-icon {
    background: var(--green);
    color: white;
}

.floating-register {
    left: 0;
    top: 22px;
    animation: idCardFloat 4s ease-in-out infinite reverse;
}

.floating-secure {
    right: -5px;
    bottom: 40px;
    animation: idCardFloat 5s ease-in-out infinite;
}

@keyframes idCardFloat {
    50% {
        transform: translateY(-9px);
    }
}


/* =========================================
   ONLINE ID FEATURES
========================================= */

.online-id-section {
    padding: 95px 0;
    background: var(--off-white);
}

.online-id-intro {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 45px;
}

.online-id-intro h2 {
    font-size: clamp(34px, 4vw, 50px);
    max-width: 620px;
}

.online-id-intro > p {
    color: var(--muted);
    font-size: 14px;
}

.id-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.id-feature-card {
    padding: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: var(--transition);
}

.id-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(64,144,69,.25);
}

.id-feature-card i {
    display: block;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: var(--green-soft);
    color: var(--green);
}

.id-feature-card strong,
.id-feature-card span {
    display: block;
}

.id-feature-card strong {
    color: var(--navy);
    font-size: 13px;
    margin-bottom: 4px;
}

.id-feature-card span {
    color: var(--muted);
    font-size: 10px;
}

.availability-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 17px 20px;
    border-radius: 15px;
    background: var(--yellow-soft);
    color: var(--text);
    font-size: 12px;
}

.availability-note i {
    color: var(--navy);
}


/* =========================================
   REGISTRATION
========================================= */

.how-id-section {
    background: white;
}

.registration-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    position: relative;
}

.registration-timeline::before {
    content: "";
    position: absolute;
    top: 39px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.registration-step {
    position: relative;
    z-index: 1;
    padding: 25px 20px;
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 19px;
    transition: var(--transition);
}

.registration-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.step-marker {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--yellow);
    font: 700 9px "Space Grotesk";
}

.step-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 0 auto 17px;
    border-radius: 14px;
    background: var(--green-soft);
    color: var(--green);
}

.registration-step h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.registration-step p {
    color: var(--muted);
    font-size: 11px;
}


/* =========================================
   CRICKET MARKET
========================================= */

.cricket-market-section {
    background: #edf4ef;
}

.cricket-market-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.cricket-market-visual {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
}

.cricket-score-card {
    width: 350px;
    padding: 27px;
    border-radius: 24px;
    background: var(--navy);
    color: white;
    box-shadow: 0 25px 60px rgba(8,53,87,.2);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.cricket-score-card:hover {
    transform: rotate(0) translateY(-5px);
}

.score-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,.6);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.live-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--green);
}

.live-pill i {
    font-size: 5px;
}

.match-title {
    margin: 27px 0 20px;
    color: white;
    font: 600 20px "Space Grotesk";
}

.market-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

.market-row:last-child {
    border-bottom: 0;
}

.market-row i {
    color: var(--yellow);
    font-size: 9px;
}

.cricket-market-content h2 {
    font-size: clamp(34px, 4vw, 50px);
    margin-bottom: 18px;
}

.cricket-market-content > p {
    color: var(--muted);
    max-width: 650px;
    font-size: 14px;
    margin-bottom: 13px;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}

.market-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--text);
    font-size: 11px;
    font-weight: 700;
}

.market-tags i {
    color: var(--green);
}

.market-disclaimer {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 11px;
}

.market-disclaimer i {
    color: var(--green);
}


/* =========================================
   CHECK BEFORE USING
========================================= */

.check-section {
    background: white;
}

.check-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.check-content h2 {
    font-size: clamp(34px, 4vw, 49px);
    margin-bottom: 18px;
}

.check-content p {
    color: var(--muted);
    font-size: 14px;
    max-width: 470px;
}

.check-panel {
    padding: 12px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 22px;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    margin-bottom: 7px;
}

.check-row:last-child {
    margin-bottom: 0;
}

.check-row i {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    flex: 0 0 35px;
    border-radius: 9px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 13px;
}

.check-row span {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

.password-warning {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 18px 22px;
    background: #fff5ef;
    border: 1px solid #f2ded3;
    border-radius: 15px;
}

.warning-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 11px;
    background: #e66c4f;
    color: white;
}

.password-warning strong {
    display: block;
    color: var(--navy);
    font-size: 13px;
}

.password-warning p {
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
}


/* =========================================
   PROBLEMS
========================================= */

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

.problem-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.problem-card {
    padding: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 19px;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.problem-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 13px;
    background: #eaf0f5;
    color: var(--navy);
}

.problem-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.problem-card p {
    color: var(--muted);
    font-size: 11px;
}

.problem-highlight {
    background: var(--navy);
    border-color: var(--navy);
}

.problem-highlight h3 {
    color: white;
}

.problem-highlight p {
    color: rgba(255,255,255,.6);
}

.problem-highlight .problem-icon {
    background: rgba(255,255,255,.09);
    color: var(--yellow);
}


/* =========================================
   FAQ
========================================= */

.id-faq-section {
    background: white;
}

.id-faq {
    max-width: 850px;
    margin: auto;
}

.id-faq-item {
    margin-bottom: 11px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: white;
}

.id-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    font: 600 14px "DM Sans";
}

.id-faq-question i {
    transition: var(--transition);
    color: var(--green);
}

.id-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.id-faq-answer p {
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 13px;
}

.id-faq-item.active .id-faq-answer {
    max-height: 180px;
}

.id-faq-item.active .id-faq-question i {
    transform: rotate(180deg);
}


/* =========================================
   FINAL CTA
========================================= */

.id-final-cta {
    padding: 75px 0 35px;
}

.id-cta-box {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 55px 60px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 80% 30%, rgba(64,144,69,.4), transparent 25%),
        var(--navy);
    color: white;
}

.id-cta-box::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -130px;
    top: -140px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.id-cta-box > div:first-child {
    position: relative;
    z-index: 2;
}

.id-cta-box h2 {
    max-width: 650px;
    color: white;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 14px;
}

.id-cta-box p {
    max-width: 650px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
    margin-bottom: 23px;
}

.id-cta-badge {
    position: relative;
    z-index: 2;
    width: 150px;
    height: 150px;
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.id-cta-badge i {
    color: var(--yellow);
    font-size: 23px;
    margin-bottom: 7px;
}

.id-cta-badge strong {
    color: white;
    font: 700 23px "Space Grotesk";
}

.id-cta-badge span {
    color: rgba(255,255,255,.55);
    font-size: 9px;
}

.id-bottom-notice {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
    padding: 20px 0 35px;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}

.id-bottom-notice strong {
    color: var(--navy);
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 1050px) {

    .id-hero-grid {
        gap: 35px;
    }

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

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

    .registration-timeline::before {
        display: none;
    }

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

    .online-id-intro {
        grid-template-columns: 1fr;
    }

    .check-grid {
        gap: 40px;
    }

}


@media(max-width: 820px) {

    .id-hero-grid,
    .cricket-market-grid,
    .check-grid {
        grid-template-columns: 1fr;
    }

    .id-hero {
        padding: 75px 0;
    }

    .id-hero-visual {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .cricket-market-visual {
        min-height: 350px;
    }

    .cricket-market-content {
        max-width: 700px;
    }

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

    .id-cta-box {
        padding: 40px;
    }

}


@media(max-width: 560px) {

    .id-hero h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .id-hero-content > p {
        font-size: 16px;
    }

    .id-hero-visual {
        min-height: 400px;
        transform: scale(.88);
        transform-origin: center;
        margin-left: -7%;
        margin-right: -7%;
        width: 114%;
    }

    .id-dashboard {
        width: 310px;
    }

    .floating-register {
        left: -2px;
    }

    .floating-secure {
        right: -2px;
    }

    .id-feature-grid {
        grid-template-columns: 1fr;
    }

    .registration-timeline {
        grid-template-columns: 1fr;
    }

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

    .online-id-intro {
        gap: 25px;
    }

    .cricket-score-card {
        width: 310px;
    }

    .check-panel {
        padding: 8px;
    }

    .check-row {
        padding: 13px;
    }

    .password-warning {
        align-items: flex-start;
    }

    .id-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 25px;
        border-radius: 22px;
    }

    .id-cta-badge {
        width: 110px;
        height: 110px;
        flex-basis: 110px;
        align-self: center;
    }

    .id-cta-badge strong {
        font-size: 19px;
    }

    .id-bottom-notice {
        flex-direction: column;
        gap: 5px;
    }

}
.pg-page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 50px;
    min-height: 290px;
}
.pg-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

.pg-page-hero {
    background: linear-gradient(135deg, #050f2ee6, #65749eb3);
    color: #fff;
    padding: 60px 0;
}
.pg-page-hero h1{
	color:#fcbd15;
}