/* ===========================
   CSS RESET & VARIABLES
=========================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #ffd13f;
  --gold-dark: #c9a855;
  --gold-hover: #e8c868;
  --bg-dark: #000000;
  --bg-panel: #232635;
  --bg-card: #1a1a2e;
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-gray: rgba(255, 255, 255, 0.6);
  --green: #25D366;
  --border-gold: rgba(250, 207, 77, 0.4);
  --font-main: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(308deg, #1A1A1A 0%, #000000 100%);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   UTILITY CLASSES
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gold-text {
  color: var(--gold);
}

.section-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--gold);
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 12px 9px 2px rgba(0, 0, 0, 0.5);
  background: var(--bg-panel);
  margin-bottom: 20px;
}

.gold-btn {
  display: inline-block;
  background: var(--bg-panel);
  color: var(--gold);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  padding: 15px;
  border: 1px solid var(--gold);
  border-radius: 0px 36px 0px 36px;
  box-shadow: 0 11px 10px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.gold-btn:hover {
  background: var(--gold);
  color: #000;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.feature-card {
  padding: 15px;
  border: 1px solid #facf4d !important;

  border-radius: 15px !important;
  box-shadow: 0 12px 10px 0 rgba(0, 0, 0, 0.5);
}

.feature-card h3,
.feature-card h4 {
  font-size: 17px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white);
  line-height: 1.5;
}

/* ===========================
   HEADER (Exact match to your HTML structure)
=========================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0d0d0d;
  border-bottom: 1px solid var(--border-gold);
}

/* Desktop Header */
.header-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22.5px 20px;
  /* max-width: 1400px; */
  margin: 0 auto;
  gap: 21px;
}

.header-logo img {
  height: 41px;
  width: auto;
  display: block;
}

/* Desktop Navigation */
/* .desktop-nav {
  flex: 1;
} */

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
  flex-wrap: wrap;
}

.desktop-nav ul li {
  position: relative;
  list-style: none;
}

.desktop-nav ul li a {
  letter-spacing: 0px;
  color: var(--gold, #d5ab4b) !important;
  display: block;
  padding: 0px 8px;
  font-size: 18px !important;
  font-weight: 600;
  /* color: var(--text-white, #ffffff); */
  text-decoration: none;
  /* border-radius: 6px; */
  border-right: 2px solid grey;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.desktop-nav ul li:last-child a {
  border-right: none;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
  color: var(--gold, #d5ab4b);
  /* background: rgba(250, 207, 77, 0.1); */
}

/* Dropdown Menu */
.desktop-nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a2e;
  border: 1px solid var(--border-gold, #d5ab4b);
  border-radius: 8px;
  min-width: 220px;
  z-index: 999;
  padding: 5px 0;
  margin: 0;
  list-style: none;
}

.desktop-nav ul li:hover .dropdown {
  display: block;
}

.desktop-nav ul li .dropdown li {
  display: block;
}

.desktop-nav ul li .dropdown a {
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 0;
  display: block;
  white-space: nowrap;
}

.desktop-nav ul li .dropdown a:hover {
  background: rgba(250, 207, 77, 0.15);
}

/* Header Buttons */
.header-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-login {
  display: inline-block;
  padding: 8px 20px;
  /* background: var(--bg-panel, #1a1a1a); */
  /* border: 1px solid var(--gold, #ffd13f); */
  background: var(--gold, #ffd13f) !important;
  color: #000 !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-login:hover {
  /* background: var(--gold, #ffd13f);
  color: #000;
  text-decoration: none; */
}

.btn-getid {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gold, #ffd13f);
  color: #000;
  border: none;
  letter-spacing: 0px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* .btn-getid:hover {
  background: var(--gold-hover, #e6b800);
  transform: translateY(-1px);
  text-decoration: none;
} */

/* Mobile Responsive - Hide desktop header on mobile */
@media (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
}

/* CSS Variables (add to :root if not already present) */
:root {
  --gold: #ffd13f;
  --gold-hover: #e6b800;
  --border-gold: #ffd13f;
  --text-white: #ffffff;
  --bg-panel: #232635;
}

/* Mobile Header */
.header-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: #0d0d0d;
}

.header-mobile .logo img {
  height: 45px;
}

.header-mobile .mobile-btns {
  display: flex;
  gap: 8px;
}

.header-mobile .mobile-btns a {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}

.header-mobile .mobile-btns .m-login {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.header-mobile .mobile-btns .m-getid {
  background: var(--gold);
  color: #000;
}

.mobile-menu-toggle {
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
}

.mobile-nav {
  display: none;
  background: #111;
  border-top: 1px solid var(--border-gold);
  padding: 10px 0;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav ul li a:hover {
  color: var(--gold);
  background: rgba(250, 207, 77, 0.05);
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  display: flex;
  background: var(--gold);
  gap: 5px;
  padding: 5px;
}

.sidebar-sports {
  width: 225px;
  flex-shrink: 0;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  padding: 8px 0;
}

.sidebar-sports .sport-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.sidebar-sports .sport-link:hover {
  background: rgba(250, 207, 77, 0.15);
}

.sidebar-sports .sport-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.sidebar-sports .sport-link span {
  font-size: 13px;
  color: var(--text-white);
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  padding: 8px;
}

/* Carousel */
.carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex-shrink: 0;
  width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: var(--gold);
}

/* Game banners */
.game-banners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.game-banner img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact row */
.contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.contact-row p {
  font-size: 14px;
  color: var(--text-white);
}

/* ===========================
   OPEN BET TABLE
=========================== */
.bet-section {
  background: #000;
}

.bet-header {
  background: linear-gradient(135deg, #c9a855 0%, #e8c868 100%);
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bet-header .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bet-header .cricket-icon {
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.bet-header strong {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}

.bet-header .view-btns {
  display: flex;
  gap: 10px;
}

.bet-header .view-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

.betting-table {
  width: 100%;
  background: #fff;
  border-radius: 0 0 8px 8px;
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.betting-table table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.betting-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.betting-table tr:nth-child(even) {
  background: #e8e8e8;
}

.betting-table td {
  padding: 10px 8px;
  vertical-align: middle;
}

.red-dot {
  width: 14px;
  height: 14px;
  background: #d32f2f;
  border-radius: 50%;
  margin: auto;
  box-shadow: 0 0 8px rgba(211, 47, 47, 0.4);
}

.match-name {
  font-weight: 700;
  font-size: 13px;
  color: #000;
}

.match-time {
  font-size: 12px;
  color: #4caf50;
  font-weight: 600;
}

.odds-box {
  padding: 6px 8px;
  font-weight: 900;
  font-size: 14px;
  border-radius: 4px;
  text-align: center;
  min-width: 60px;
  display: inline-block;
}

.odds-blue {
  background: #a8d5ff;
  color: #000;
}

.odds-pink {
  background: #ffccd5;
  color: #000;
}

.odds-gray {
  background: #c0c0c0;
  color: #000;
}

.odds-empty {
  color: #999;
  font-size: 16px;
  text-align: center;
}

/* ===========================
   CONTENT SECTIONS
=========================== */
.content-section {
  padding: 30px 0;
}

.content-section.dark {
  background: var(--bg-dark);
}

.content-section.panel {
  background: var(--bg-panel);
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  background: var(--bg-panel);
  padding: 30px 0;
}

.about-inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h1 {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--gold);
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: 15px;
  text-align: center;
  margin-bottom: 15px;
  box-shadow: 0 12px 9px 2px rgba(0, 0, 0, 0.5);
}

.subtitle {
  text-align: center !important;
}

.about-text .subtitle {
  font-size: 25px;
  font-weight: 700;
  color: var(--gold);
  padding: 5px;
  border: 1px solid var(--gold);
  border-radius: 15px;
  text-align: center;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-white);
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: center;
}

.about-text a {
  color: #FFCC37;
}

.action-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
}

.game-button {
  position: relative;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(180deg, #4a9eff 0%, #2b7fe6 50%, #1a5fb8 100%);
  border: none;
  cursor: pointer;
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.game-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(74, 158, 255, 0.8);
}

.game-button.register {
  background: linear-gradient(180deg, #667a9e 0%, #4a5a7a 50%, #2d3a52 100%);
  box-shadow: 0 0 20px rgba(102, 122, 158, 0.5);
}

/* ===========================
   EXCHANGE CARDS
=========================== */
.exchange-section {
  background: #000;
  padding: 20px 0;
}

.mbp-card {
  background: radial-gradient(circle at top left, #1a223d, #050816);
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 25px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mbp-logo {
  width: 120px;
  height: 80px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.5);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 12px;
}

.mbp-logo .mb-logo-placeholder {
  font-size: 12px;
  font-weight: 900;
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
}

.mbp-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mbp-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--gold);
}

.mbp-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}

.mbp-features {
  margin-bottom: 12px;
}

.mbp-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 4px 0;
}

.mbp-ico {
  font-size: 16px;
}

.mbp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.mbp-tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.12));
  border: 1px solid rgba(255, 215, 0, 0.55);
  font-size: 12px;
  font-weight: 600;
  color: #ffd700;
}

.mbp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.mbp-btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #fff;
}

.mbp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 107, 53, 0.5);
}



/* Swiper */
.swiper-container {
  overflow: hidden;
  position: relative;
}

.swiper-track {
  display: flex;
  transition: transform 0.5s ease;
}

.swiper-slide-item {
  flex-shrink: 0;
  width: 100%;
  padding: 0 10px;
}

.swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: #000;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-btn.prev {
  left: 5px;
}

.swiper-btn.next {
  right: 5px;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.swiper-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border: none;
}

.swiper-bullet.active {
  background: var(--gold);
}

/* ===========================
   WHO WE ARE
=========================== */
.whoweare-section {
  background: var(--bg-panel);
  padding: 30px 0;
}

.whoweare-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.whoweare-img {
  flex: 1;
  min-width: 250px;
}

.whoweare-img img {
  border-radius: 15px;
  box-shadow: 0 16px 18px 0 rgba(0, 0, 0, 0.5);
}

.whoweare-text {
  flex: 1;
  min-width: 250px;
}

.whoweare-text h2 {
  font-size: 25px;
  font-weight: 700;
  color: var(--gold);
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: 15px;
  margin-bottom: 12px;
  background: var(--bg-panel);
}

.whoweare-text h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: 15px;
  margin-bottom: 12px;
  background: var(--bg-panel);
}

.whoweare-text p {
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.7;
}

.whoweare-text a {
  color: #EDBE33;
}

/* Platform table */
.gold-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.gold-table th,
.gold-table td {
  padding: 12px 15px;
  border: 2px solid #000;
  text-align: left;
  color: #000;
}

.gold-table th {
  background-color: #ebb248;
  color: #fff;
  font-weight: 700;
}

.gold-table tr:first-child th {
  background-color: #ebb248;
}

.gold-table td {
  background-color: #f9f9f9;
}

/* Stats circles */
.stats-circles {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.circle-counter {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background: conic-gradient(#f6e58d, #f9ca24, #f6e58d);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-circle {
  background-color: #0b1531;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.count {
  font-size: 20px;
  font-weight: bold;
}

.count-label {
  font-size: 11px;
  margin-top: 5px;
  padding: 5px;
}

/* ===========================
   GET ID / REGISTER SECTION
=========================== */
.getid-section {
  background: #000;
  padding: 30px 0;
}

.getid-inner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.getid-steps {
  flex: 1;
  min-width: 260px;
}

.getid-steps h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: 15px;
  margin-bottom: 15px;
  text-align: center;
  background: var(--bg-panel);
}

.getid-steps h4,
.getid-steps p {
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.7;
}

.getid-steps h4 {
  color: var(--gold);
}

.getid-steps ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.getid-steps ul li {
  color: var(--text-white);
  margin-bottom: 5px;
}

.getid-steps a {
  color: #F4CD19;
}

.getid-steps blockquote {
  padding: 8px;
  border-left: 3px solid var(--gold);
  margin: 10px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.getid-image {
  flex: 1;
  min-width: 260px;
}

.getid-image img {
  border-radius: 15px;
}

.qr-label {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}

/* Login section */
.login-section {
  background: var(--bg-panel);
  padding: 30px 0;
}

.login-inner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.login-img {
  flex: 1;
  min-width: 260px;
}

.login-img img {
  border-radius: 15px;
  box-shadow: 0 16px 18px 0 rgba(0, 0, 0, 0.5);
}

.login-text {
  flex: 1;
  min-width: 260px;
}

.login-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: 15px;
  margin-bottom: 12px;
  margin-top: 20px;
  background: var(--bg-panel);
}

.login-text p {
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.6;
}

.login-text .step {
  color: #ffcc00;
  font-weight: 700;
}

/* ===========================
   APP SECTION
=========================== */
.app-section {
  background: #000;
  padding: 30px 0;
}

.app-inner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.app-text {
  flex: 1;
  min-width: 260px;
}

.app-text h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: 15px;
  margin-bottom: 12px;
  background: var(--bg-panel);
}

.app-text p {
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.7;
}

.app-text ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.app-text ul li {
  color: var(--text-white);
  margin-bottom: 5px;
}

.app-text a {
  color: #F4D147;
}

.app-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.app-image {
  flex: 1;
  min-width: 260px;
}

.app-image img {
  border-radius: 15px;
  box-shadow: 0 16px 18px 0 rgba(0, 0, 0, 0.5);
}

/* ===========================
   ID TYPE TIER CARDS
=========================== */
.tiers-section {
  background: var(--bg-panel);
  padding: 30px 0;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px;
}

.tier-card {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.tier-card.silver {
  background: linear-gradient(145deg, #1a1a1f, #252530);
  border: 2px solid rgba(192, 192, 192, 0.3);
}

.tier-card.silver:hover {
  transform: translateY(-10px);
  border-color: rgba(192, 192, 192, 0.8);
  box-shadow: 0 20px 60px rgba(192, 192, 192, 0.3);
}

.tier-card.gold-tier {
  background: linear-gradient(145deg, #2a1f0f, #3d2b15);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.tier-card.gold-tier:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.tier-card.platinum {
  background: linear-gradient(145deg, #0f1f2e, #1a2f42);
  border: 2px solid rgba(229, 228, 226, 0.3);
}

.tier-card.platinum:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 198, 196, 0.9);
  box-shadow: 0 20px 60px rgba(135, 206, 250, 0.25);
}

.tier-header {
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.silver .tier-icon {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
}

.gold-tier .tier-icon {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.platinum .tier-icon {
  background: linear-gradient(135deg, #87ceeb, #e0f6ff);
}

.tier-title {
  font-size: 22px;
  font-weight: 800;
}

.silver .tier-title {
  color: #c0c0c0;
}

.gold-tier .tier-title {
  color: #ffd700;
}

.platinum .tier-title {
  color: #87ceeb;
}

.tier-content {
  padding: 20px;
}

.activity-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.silver .activity-badge {
  background: rgba(192, 192, 192, 0.15);
  color: #c0c0c0;
  border: 1px solid rgba(192, 192, 192, 0.4);
}

.gold-tier .activity-badge {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.4);
}

.platinum .activity-badge {
  background: rgba(135, 206, 250, 0.15);
  color: #87ceeb;
  border: 1px solid rgba(135, 206, 250, 0.4);
}

.benefit-list {
  list-style: none;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #e0e0e0;
  font-size: 13px;
  line-height: 1.5;
}

.benefit-item .bi {
  margin-top: 2px;
  font-size: 14px;
  flex-shrink: 0;
}

.silver .bi {
  color: #c0c0c0;
}

.gold-tier .bi {
  color: #ffd700;
}

.platinum .bi {
  color: #87ceeb;
}

.tier-btn {
  width: 100%;
  padding: 13px 20px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.silver .tier-btn {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
  color: #1a1a1f;
}

.gold-tier .tier-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #2a1f0f;
}

.platinum .tier-btn {
  background: linear-gradient(135deg, #87ceeb, #00bfff);
  color: #0f1f2e;
}

.crown-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 22px;
}

/* ===========================
   LIVE CRICKET TABS
=========================== */
.cricket-section {
  background: var(--bg-panel);
  padding: 30px 0;
}

.tabs-wrapper {
  margin-top: 20px;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 12px 20px !important;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--gold) !important;
  background: rgba(2, 1, 1, 0.02);
  transition: all 0.2s;
  font-family: var(--font-main);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gold);
  color: #000;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.match-header {
  display: flex;
  align-items: center;
  background: #DEE8E8;
}

.match-header .title {
  background: #976d10;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 14px;
  clip-path: polygon(0 100%, 90% 100%, 100% 0, 0 0);
  min-width: 200px;
  gap: 8px;
}

.match-header .cols {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 0 20px;
  font-weight: bold;
  font-size: 14px;
  color: #222;
  gap: 80px;
}

.match-section {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.match-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 3fr;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

.match-row:nth-child(even) {
  background: #fdfdfd;
}

.teams {
  font-weight: bold;
  font-size: 13px;
  color: #333;
}

.subtext {
  font-size: 11px;
  color: #888;
}

.status-live {
  color: green;
  font-weight: bold;
  font-size: 12px;
}

.status-result {
  color: #c00;
  font-weight: bold;
  font-size: 12px;
}

.status-upcoming {
  color: #1565c0;
  font-weight: bold;
  font-size: 12px;
}

.date-time {
  font-size: 12px;
  color: #555;
}

.odds-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  text-align: center;
}

.odd-box {
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
}

.blue {
  background: #c5ecff;
  color: #000;
}

.pink {
  background: #ffd6dc;
  color: #000;
}

/* ===========================
   BONUSES
=========================== */
.bonus-section {
  background: #000;
  padding: 30px 0;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.promo-card {
  border-radius: 18px !important;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 24px 20px;
  position: relative;
}

.promo-card.welcome {
  background: linear-gradient(135deg, #ff6b35, #ff4500, #e63946);
  border: 3px solid #ff8c42;
}

.promo-card.reload {
  background: linear-gradient(135deg, #2ecc71, #27ae60, #229954);
  border: 3px solid #1abc9c;
}

.promo-card.referral {
  background: linear-gradient(135deg, #9b59b6, #8e44ad, #6c3483);
  border: 3px solid #af7ac5;
}

.promo-card.ipl {
  background: linear-gradient(135deg, #1e3c72, #2a5298, #ff9e00);
  border: 3px solid #ffd700;
}

.promo-card:hover {
  transform: translateY(-6px);
}

.promo-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

.promo-title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.promo-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 14px;
}

.promo-highlight {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 14px;
  border-radius: 10px;
  border-left: 3px solid rgba(255, 255, 255, 0.4);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 15px;
}

.promo-btn {
  width: 100%;
  padding: 14px;
  background: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: auto;
  font-family: var(--font-main);
}

.welcome .promo-btn {
  color: #ff6b35;
}

.reload .promo-btn {
  color: #2ecc71;
}

.referral .promo-btn {
  color: #9b59b6;
}

.ipl .promo-btn {
  color: #1e3c72;
}

/* ===========================
   SECURITY
=========================== */
.security-section {
  background: #000;
  padding: 30px 0;
}

.security-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.security-card {
  background: linear-gradient(135deg, #181830, #222244);
  border-radius: 18px;
  border: 2px solid rgba(100, 255, 218, 0.13);
  padding: 25px;
  transition: transform 0.25s;
}

.security-card:hover {
  transform: translateY(-5px);
  border-color: rgba(100, 255, 218, 0.33);
}

.security-card .s-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1cffe6, #5aeeff);
  border-radius: 12px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.security-card h3 {
  font-size: 17px;
  color: #1cffe6;
  margin-bottom: 8px;
}

.security-card p {
  color: #f2f2f2;
  font-size: 14px;
  line-height: 1.6;
}

.cert-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.cert-icons img {
  height: 50px;
  object-fit: contain;
}

/* ===========================
   PAYMENT METHODS
=========================== */
.payment-section {
  background: var(--bg-panel);
  padding: 30px 0;
}

.payment-logos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.payment-logos img {
  height: 55px;
  border-radius: 8px;
}

/* ===========================
   REVIEWS
=========================== */
.reviews-section {
  background: var(--bg-panel);
  padding: 30px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.review-card {
  background: #fff;
  border-radius: 15px;
  border: 1px solid var(--gold);
  padding: 20px;
  color: #232635;
}

.reviewer-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.reviewer-handle {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* ===========================
   FAQ ACCORDION
=========================== */
.faq-section {
  background: #000;
  padding: 30px 0;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--gold);
  border-radius: 15px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-white);
  gap: 10px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: var(--text-white);
  line-height: 1.7;
  border: 1px solid rgba(245, 218, 72, 0.4);
  border-radius: 12px;
  margin: 0 5px 5px;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 10px 15px;
}

/* ===========================
   LATEST NEWS
=========================== */
.news-section {
  background: var(--bg-dark);
  padding: 30px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.news-card {
  background: var(--bg-panel);
  border: 1px solid #FFA300;
  border-radius: 25px;
  overflow: hidden;
  padding: 15px;
  transition: transform 0.2s;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 12px;
}

.news-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.news-read-more {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

/* ===========================
   SEARCH LINKS / PEOPLE SEARCH
=========================== */
.search-links-section {
  background: var(--bg-panel);
  padding: 25px 0;
}

.search-links-section h2 {
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.search-links-section p {
  color: #fff;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}

.search-links-section a {
  color: var(--gold);
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: #0d0d0d;
  border-top: 1px solid var(--border-gold);
}

.footer-top {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-gold);
}

.footer-top img {
  height: 45px;
  object-fit: contain;
  filter: brightness(0.9);
}

.footer-main {
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-logo img {
  height: 55px;
  margin: auto;
  margin-bottom: 15px;
  margin-top: 15px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-panel);
  /* border: 1px solid var(--border-gold); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: #000;
}

.footer-bottom {
  background: #000;
  padding: 15px 20px;
  text-align: center;
  border-top: 1px solid var(--border-gold);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.8;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   WHATSAPP FLOATING BUTTON
=========================== */
.whatsapp-button {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  gap: 8px;
}

.whatsapp-button:hover {
  background-color: #20b557;
  color: #000;
}

.whatsapp-button svg {
  width: 22px;
  height: 22px;
  fill: white;
  flex-shrink: 0;
}

.whatsapp-button:hover svg {
  fill: #000;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: flex;
  }

  .hero-section {
    flex-direction: column;
  }

  .sidebar-sports {
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 8px;
    flex-direction: row;
    gap: 5px;
  }

  .sidebar-sports .sport-link {
    flex-direction: column;
    min-width: 60px;
    padding: 5px;
    text-align: center;
    gap: 3px;
  }

  .game-banners {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .whoweare-inner,
  .getid-inner,
  .login-inner,
  .app-inner {
    flex-direction: column;
  }

  .match-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .odds-row {
    flex-wrap: wrap;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .stats-circles {
    gap: 20px;
  }

  .circle-counter {
    width: 120px;
    height: 120px;
  }


  .game-button {

    position: relative;

    padding: 12px 40px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(180deg, #4a9eff 0%, #2b7fe6 50%, #1a5fb8 100%);
    border: none;
    cursor: pointer;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
  }
}



/* ── TICKER ─────────────────────────────────────────── */
.ticker-bar {
  background: linear-gradient(90deg, var(--red-dark), #8B0000, var(--red-dark));
  padding: 7px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 45, 45, 0.4);
}

.ticker-content {
  display: flex;
  gap: 60px;
  animation: tickerMove 35s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ticker-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: blink 1.5s infinite;
}

.ticker-item .live-badge {
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 2px;
  letter-spacing: 1px;
}

.ticker-item .odds {
  color: var(--gold-light);
  font-weight: 700;
}

@keyframes tickerMove {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

/* ── HEADER ─────────────────────────────────────────── */
.header {
  background: linear-gradient(180deg, #0D0D1A, #0A0A14);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.nav-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  to {
    left: 200%
  }
}

.logo-text {
  font-family: 'Rajdhani', sans-serif;
}

.logo-text .main {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold), #fff, var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.logo-text .sub {
  font-size: 10px;
  color: var(--gold-dark);
  letter-spacing: 3px;
  font-weight: 600;
}

.nav-search {
  flex: 1;
  max-width: 340px;
  position: relative;
}

.nav-search input {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 16px 9px 38px;
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}

.nav-search input:focus {
  border-color: var(--gold);
}

.nav-search input::placeholder {
  color: var(--text-muted);
}

.nav-search .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 15px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-login {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.btn-login:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: var(--shadow-gold);
}

.btn-register {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: var(--shadow-gold);
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 4px;
  border-top: 1px solid var(--border);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-link .icon {
  font-size: 17px;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
}

.hero-slider {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 260px;
  background: var(--bg-card);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active {
  opacity: 1;
}

.slide-1 {
  background: linear-gradient(135deg, #0D0D1A, #1a0a2e, #0D0D1A);
}

.slide-1::before {
  content: '🏏';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: 0.15;
}

.slide-2 {
  background: linear-gradient(135deg, #0a1a0a, #0a2e0a, #0a1a0a);
}

.slide-2::before {
  content: '⚽';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: 0.15;
}

.slide-3 {
  background: linear-gradient(135deg, #1a0a0a, #2e0a0a, #1a0a0a);
}

.slide-3::before {
  content: '🃏';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: 0.15;
}

.slide-content .tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.slide-content h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.slide-content h1 span {
  color: var(--gold);
}

.slide-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.slide-content .cta {
  display: flex;
  gap: 10px;
}

.hero-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.hero-arr:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
}

.hero-arr-l {
  left: 12px;
}

.hero-arr-r {
  right: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 40px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--gold);
  width: 36px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quick-id-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.quick-id-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}

.quick-id-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.id-input {
  width: 100%;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.3s;
}

.id-input:focus {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
}

.id-input::placeholder {
  color: var(--text-muted);
}

.btn-get-id {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 11px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.25s;
}

.btn-get-id:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.quick-features {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.qf-item {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}

.qf-item .icon {
  font-size: 20px;
  display: block;
  margin-bottom: 3px;
}

.live-count-card {
  background: linear-gradient(135deg, #1A0000, var(--bg-card));
  border: 1px solid rgba(255, 45, 45, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-count-card .label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: 'Rajdhani', sans-serif;
}

.live-count-card .count {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
}

.live-badge-large {
  background: var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 2px;
  animation: livePulse 1s infinite;
}

@keyframes livePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.4)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 45, 45, 0)
  }
}

/* ── SECTION ─────────────────────────────────────────── */
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 20px 28px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-title {
  background-color: #232635 !important;
  max-width: 1110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center !important;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background-color: black;
}

.section-title .icon {
  font-size: 22px;
}

/* .section-title::after { content:''; display:block; width:40px; height:3px; background:var(--gold); border-radius:2px; margin-left:8px; } */
.see-all {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.see-all:hover {
  gap: 8px;
}

/* ── CAROUSEL ENGINE (shared) ───────────────────────── */
.carousel-outer {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.carousel-nav-btns {
  display: flex;
  gap: 8px;
}

.cnav-btn {
  width: 34px;
  height: 34px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.cnav-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

.carousel-dots-row {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.cdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.cdot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── POSTER CAROUSEL ────────────────────────────────── */
.poster-slide {
  min-width: calc(33.333% - 10px);
  margin-right: 14px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
}

.poster-slide:hover {
  transform: translateY(-3px);
}

.poster-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.poster-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.poster-emoji {
  font-size: 80px;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

.poster-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

/* ── PAYMENT CAROUSEL ───────────────────────────────── */
.payment-slide {
  min-width: calc(25% - 12px);
  margin-right: 14px;
  flex-shrink: 0;
}

.pm-card {
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.pm-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(255, 215, 0, 0.4);
}

.pm-icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}

.pm-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pm-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pm-badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.pm-badge.instant {
  background: rgba(0, 200, 83, 0.15);
  color: var(--green);
}

.pm-badge.fast {
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold);
}

/* ── STATS BAR ──────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(90deg, var(--bg-card), var(--bg-card2), var(--bg-card));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin: 10px 0;
}

.stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--border);
}

.stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold), #fff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: 'Rajdhani', sans-serif;
}

/* ── SPORTS GRID ────────────────────────────────────── */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.sport-card:hover,
.sport-card.active {
  border-color: var(--gold);
  background: var(--bg-card2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.sport-card.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.sport-card .emoji {
  font-size: 28px;
  display: block;
  margin-bottom: 6px;
}

.sport-card .name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.sport-card:hover .name,
.sport-card.active .name {
  color: var(--gold);
}

.sport-card .count {
  font-size: 10px;
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  padding: 1px 6px;
  border-radius: 3px;
  margin-top: 4px;
  display: inline-block;
}

/* ── MATCHES ─────────────────────────────────────────── */
.api-status {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 5px;
}

.api-status.live-api {
  background: rgba(0, 200, 83, 0.15);
  color: var(--green);
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.api-status.mock-api {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.refresh-btn {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.refresh-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.matches-loader {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 40px;
  justify-content: center;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
}

.loader-spin {
  width: 24px;
  height: 24px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.match-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.match-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.match-card:hover::before {
  opacity: 1;
}

.match-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.match-league {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-live {
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1s infinite;
}

.live-text {
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.team {
  text-align: center;
  flex: 1;
  min-width: 0;
}

.team-flag {
  font-size: 32px;
  margin-bottom: 5px;
}

.team-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-score {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.vs-block {
  text-align: center;
  padding: 0 8px;
  flex-shrink: 0;
}

.vs {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
}

.match-time {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
  font-family: 'Rajdhani', sans-serif;
}

.odds-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.odd-btn {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.odd-btn:hover {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
}

.odd-btn.back {
  border-color: rgba(0, 100, 255, 0.3);
}

.odd-btn.lay {
  border-color: rgba(255, 100, 0, 0.3);
}

.odd-btn.back:hover {
  background: rgba(0, 100, 255, 0.15);
  border-color: rgba(0, 100, 255, 0.6);
}

.odd-btn.lay:hover {
  background: rgba(255, 100, 0, 0.15);
  border-color: rgba(255, 100, 0, 0.6);
}

.odd-label {
  font-size: 9px;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.odd-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.odd-btn.back .odd-value {
  color: #5599FF;
}

.odd-btn.lay .odd-value {
  color: #FF7744;
}

.odd-up {
  color: #00C853 !important;
  transition: color 0.5s;
}

.odd-down {
  color: #FF2D2D !important;
  transition: color 0.5s;
}

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonial-section {
  background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.02), transparent);
}

.testi-slide {
  min-width: calc(33.333% - 10px);
  margin-right: 14px;
  flex-shrink: 0;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  position: relative;
  transition: all 0.25s;
}

.testi-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 60px;
  color: rgba(255, 215, 0, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.testi-city {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.testi-badge {
  font-size: 11px;
  color: var(--green);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

/* ── GAMES SCROLL ────────────────────────────────────── */
.games-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.games-scroll::-webkit-scrollbar {
  display: none;
}

.game-card {
  min-width: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  flex-shrink: 0;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.game-card-img {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.game-card-1 {
  background: linear-gradient(135deg, #1a0a2e, #3d1080)
}

.game-card-2 {
  background: linear-gradient(135deg, #0a1a10, #0a3d20)
}

.game-card-3 {
  background: linear-gradient(135deg, #1a1a0a, #3d3000)
}

.game-card-4 {
  background: linear-gradient(135deg, #1a0a0a, #3d0000)
}

.game-card-5 {
  background: linear-gradient(135deg, #0a0a1a, #00003d)
}

.game-card-6 {
  background: linear-gradient(135deg, #1a0a1a, #3d003d)
}

.game-card-info {
  background: var(--bg-card);
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.game-card-info .name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.game-card-info .players {
  font-size: 11px;
  color: var(--text-muted);
}

.game-card-info .players span {
  color: var(--green);
  font-weight: 600;
}

.hot-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 1px;
  font-family: 'Rajdhani', sans-serif;
}

.new-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 1px;
  font-family: 'Rajdhani', sans-serif;
}

/* ── PROMOS ──────────────────────────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.promo-card {
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.promo-card:hover {
  transform: translateY(-3px);
}

.promo-1 {
  background: linear-gradient(135deg, #1a0a00, #3d1800);
  border: 1px solid rgba(255, 140, 0, 0.2)
}

.promo-2 {
  background: linear-gradient(135deg, #0a001a, #200040);
  border: 1px solid rgba(180, 0, 255, 0.2)
}

.promo-3 {
  background: linear-gradient(135deg, #001a0a, #004020);
  border: 1px solid rgba(0, 255, 100, 0.2)
}

.promo-card .bonus {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.promo-1 .bonus {
  color: #FF8C00
}

.promo-2 .bonus {
  color: #CC66FF
}

.promo-3 .bonus {
  color: var(--green)
}

.promo-card .promo-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.promo-card .promo-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.promo-card .promo-btn {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.promo-1 .promo-btn {
  background: #FF8C00;
  color: #000
}

.promo-2 .promo-btn {
  background: #B400FF;
  color: #fff
}

.promo-3 .promo-btn {
  background: var(--green);
  color: #000
}

/* ── FEATURES ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  background: #232635;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.25s;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.fi-1 {
  background: linear-gradient(135deg, #1a1500, #3d3000)
}

.fi-2 {
  background: linear-gradient(135deg, #001a00, #003300)
}

.fi-3 {
  background: linear-gradient(135deg, #001a1a, #003344)
}

.fi-4 {
  background: linear-gradient(135deg, #1a0010, #3d0030)
}

.feature-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: #080810;
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

.footer-col h5 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col ul li:hover {
  color: var(--text);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-payments {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.payment-badge {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
}

.disclaimer {
  background: rgba(255, 45, 45, 0.05);
  border: 1px solid rgba(255, 45, 45, 0.15);
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

.disclaimer strong {
  color: var(--red);
}

/* ── MODAL ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 420px;
  max-width: 95vw;
  padding: 32px;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    transform: scale(0.9);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
  border-radius: 20px 20px 0 0;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.modal-close:hover {
  border-color: var(--red);
  color: var(--red);
}

.modal h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.tab-switch {
  display: flex;
  background: var(--bg-card2);
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 22px;
}

.tab-btn {
  flex: 1;
  padding: 9px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--gold);
  color: #000;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}

.form-group input {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: var(--gold);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 13px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  margin-top: 8px;
  transition: all 0.25s;
}

.btn-submit:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  animation: waBounce 2s ease infinite;
}

.wa-float:hover {
  transform: scale(1.1);
}

@keyframes waBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width:1024px) {
  .sports-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .matches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .poster-slide {
    min-width: calc(50% - 7px);
  }

  .payment-slide {
    min-width: calc(33.333% - 10px);
  }

  .testi-slide {
    min-width: calc(50% - 7px);
  }
}

@media (max-width:768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    height: 200px;
  }

  .slide {
    padding: 24px;
  }

  .slide-content h1 {
    font-size: 26px;
  }

  .slide-1::before,
  .slide-2::before,
  .slide-3::before {
    font-size: 70px;
    right: 16px;
  }

  .hero-side {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .quick-id-card,
  .live-count-card {
    flex: 1 1 200px;
  }

  .sports-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .matches-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-search {
    display: none;
  }

  .poster-slide {
    min-width: calc(100% - 0px);
    margin-right: 0;
  }

  .payment-slide {
    min-width: calc(50% - 7px);
  }

  .testi-slide {
    min-width: calc(100%);
    margin-right: 0;
  }
}

/* =============================================
   SECTION 1: CRICKET BETTING MARKETS
============================================= */
.betting-markets-section {
  background: var(--bg-panel);
  padding: 30px 0;
}

.markets-intro {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  line-height: 1.7;
}

.markets-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}

.market-btn {
  position: relative;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-family: var(--font-main);
}

.market-btn .btn-icon {
  font-size: 22px;
}

.market-btn .btn-label {
  font-size: 16px;
  font-weight: 900;
}

.market-btn .btn-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.5px;
  text-transform: none;
}

.market-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.market-btn.ipl {
  background: linear-gradient(135deg, #ff6b00, #ff8c00, #ff6b00);
  color: #fff;
  border: 3px dashed #fff;
}

.market-btn.wcricket {
  background: linear-gradient(135deg, #00a8ff, #0088cc, #00a8ff);
  color: #fff;
  border: 3px dashed #fff;
}

.market-btn.asia {
  background: linear-gradient(135deg, #00cc00, #00aa00, #00cc00);
  color: #fff;
  border: 3px dashed #fff;
}

.market-btn.test {
  background: linear-gradient(135deg, #ff1493, #ff69b4, #ff1493);
  color: #fff;
  border: 3px dashed #fff;
}

.market-btn.bbl {
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  color: #000;
  border: 3px dashed #000;
}

.market-btn.domestic {
  background: linear-gradient(135deg, #9d4edd, #c77dff, #9d4edd);
  color: #fff;
  border: 3px dashed #fff;
}

/* =============================================
   SECTION 2: FANTASY CONTEST POINTS SYSTEM
============================================= */
.fantasy-section {
  background: #000;
  padding: 30px 0;
}

.fantasy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.fantasy-col-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  padding: 10px 15px;
  border: 1px solid var(--gold);
  border-radius: 10px 10px 0 0;
  background: var(--bg-panel);
  margin-bottom: 0;
}

.fantasy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.fantasy-table thead th {
  padding: 10px 12px;
  background: linear-gradient(90deg, #FFD700df, #FFA60060);
  color: #222;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid var(--gold-dark);
}

.fantasy-table tbody td {
  padding: 9px 12px;
  background: #1c1c1c;
  color: #fff;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  border-right: 1px solid rgba(255, 215, 0, 0.1);
}

.fantasy-table tbody tr:hover td {
  background: rgba(255, 215, 0, 0.08);
}

.fantasy-table tbody tr:last-child td {
  border-bottom: none;
}

/* Full-width points table */
.points-table-wrap {
  overflow-x: auto;
  margin-top: 25px;
}

.casino-points-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.casino-points-table thead th {
  padding: 12px 15px;
  background: linear-gradient(90deg, #FFD700df, #FFA60060);
  color: #222;
  font-weight: 700;
  border: 2px solid #000;
  text-align: left;
}

.casino-points-table tbody td {
  padding: 10px 15px;
  background: #f9f9f9;
  color: #000;
  border: 2px solid #000;
}

.casino-points-table tbody tr:nth-child(even) td {
  background: #f0f0f0;
}

.casino-points-table tbody tr:hover td {
  background: #ffe082;
}

/* =============================================
   SECTION 3: SPORTS BETTING OPTIONS
============================================= */
.sports-betting-section {
  background: var(--bg-panel);
  padding: 30px 0;
}

.sports-intro {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  line-height: 1.7;
  text-align: center;
}

.sports-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.sport-card {
  background: linear-gradient(145deg, #1e1e2e, #2d2d44);
  border-radius: 18px;
  border: 2px solid rgba(100, 255, 218, 0.2);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.sport-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 255, 218, 0.6);
  box-shadow: 0 18px 50px rgba(100, 255, 218, 0.2);
}

.sport-card-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(100, 255, 218, 0.07);
  border-bottom: 1px solid rgba(100, 255, 218, 0.15);
}

.sport-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, #64ffd9, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.sport-card-header h3 {
  color: #64ffd9;
  font-size: 20px;
  font-weight: 700;
}

.sport-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sport-features {
  list-style: none;
  margin-bottom: 18px;
  flex: 1;
}

.sport-features li {
  padding: 5px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sport-features li::before {
  content: '▸';
  color: #64ffd9;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bet-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(100, 255, 218, 0.05);
  border: 1px solid rgba(100, 255, 218, 0.2);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 15px;
}

.bet-item {
  text-align: center;
}

.bet-label {
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.bet-value {
  font-size: 16px;
  color: #64ffd9;
  font-weight: 700;
}

.sport-cta-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: none;
  border-radius: 10px;
  color: #0f0f1e;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.3s;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sport-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(100, 255, 218, 0.4);
}

.other-sports {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
}

.other-sports strong {
  color: var(--gold);
}

/* =============================================
   SECTION 4: LIVE CASINO DEALER GAMES
============================================= */
.live-casino-section {
  background: #000;
  padding: 30px 0;
}

.casino-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.casino-card {
  background: linear-gradient(145deg, #1a1410, #2a1f15);
  border-radius: 18px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.casino-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25);
}

.casino-card-header {
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 215, 0, 0.06);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.casino-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
  transition: all 0.3s;
}

.casino-card:hover .casino-icon-box {
  transform: rotate(12deg) scale(1.1);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.65);
}

.casino-card-header h3 {
  color: #ffd700;
  font-size: 18px;
  font-weight: 700;
}

.casino-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.premium-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1410;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}

.casino-features {
  list-style: none;
  margin-bottom: 18px;
  flex: 1;
}

.casino-features li {
  padding: 5px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.casino-features li::before {
  content: '♦';
  color: #ffd700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.casino-play-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: none;
  border-radius: 10px;
  color: #1a1410;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.casino-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* =============================================
   SECTION 5: WHY CHOOSE – STATS DASHBOARD
============================================= */
.why-choose-section {
  background: var(--bg-panel);
  padding: 30px 0;
}

.stats-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.stat-box {
  position: relative;
  border-radius: 18px;
  padding: 25px 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-box.trust {
  background: linear-gradient(145deg, #1a1410, #2a1f15);
  border-color: rgba(255, 215, 0, 0.3);
}

.stat-box.speed {
  background: linear-gradient(145deg, #0f1f2e, #1a2f42);
  border-color: rgba(100, 255, 218, 0.3);
}

.stat-box.games {
  background: linear-gradient(145deg, #1a0f2e, #2d1b3d);
  border-color: rgba(200, 150, 255, 0.3);
}

.stat-box.support {
  background: linear-gradient(145deg, #0f2e1a, #1a3d2e);
  border-color: rgba(100, 255, 150, 0.3);
}

.stat-box.security {
  background: linear-gradient(145deg, #2e0f0f, #3d1a1a);
  border-color: rgba(255, 100, 100, 0.3);
}

.stat-box:hover {
  transform: translateY(-8px) scale(1.02);
}

.stat-box.trust:hover {
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 18px 50px rgba(255, 215, 0, 0.25);
}

.stat-box.speed:hover {
  border-color: rgba(100, 255, 218, 0.8);
  box-shadow: 0 18px 50px rgba(100, 255, 218, 0.25);
}

.stat-box.games:hover {
  border-color: rgba(200, 150, 255, 0.8);
  box-shadow: 0 18px 50px rgba(200, 150, 255, 0.25);
}

.stat-box.support:hover {
  border-color: rgba(100, 255, 150, 0.8);
  box-shadow: 0 18px 50px rgba(100, 255, 150, 0.25);
}

.stat-box.security:hover {
  border-color: rgba(255, 100, 100, 0.8);
  box-shadow: 0 18px 50px rgba(255, 100, 100, 0.25);
}

.stat-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  width: fit-content;
}

.stat-title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
}

.stat-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.stat-detail-list {
  list-style: none;
  flex: 1;
}

.stat-detail-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.stat-detail-list li::before {
  content: '✓';
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.trust .stat-detail-list li::before {
  color: #ffd700;
}

.speed .stat-detail-list li::before {
  color: #64ffd9;
}

.games .stat-detail-list li::before {
  color: #d9a9ff;
}

.support .stat-detail-list li::before {
  color: #64ff96;
}

.security .stat-detail-list li::before {
  color: #ff6464;
}

/* Special stat displays */
.timer-display {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  color: #64ffd9;
  text-shadow: 0 0 12px rgba(100, 255, 218, 0.5);
  letter-spacing: 2px;
}

.score-display {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 150, 255, 0.3);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.score-number {
  font-size: 36px;
  font-weight: 900;
  color: #d9a9ff;
  display: block;
}

.score-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(100, 255, 150, 0.1);
  padding: 10px 14px;
  border-radius: 10px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #64ff96;
  border-radius: 50%;
  box-shadow: 0 0 10px #64ff96;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.status-text {
  font-size: 13px;
  color: #64ff96;
  font-weight: 700;
}

.security-meter {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px;
}

.meter-bar {
  height: 10px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 0 12px rgba(100, 255, 150, 0.5);
}

.security-fill {
  background: linear-gradient(90deg, #64ff96, #00ff88);
}

.security-text {
  font-size: 12px;
  color: #64ff96;
  font-weight: 700;
  text-align: right;
  margin-top: 4px;
}

.trust-progress {
  margin-top: 6px;
}

.progress-bar-wrap {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  width: 95%;
}

.progress-text {
  font-size: 12px;
  color: #ffd700;
  font-weight: 700;
  text-align: right;
  margin-top: 4px;
}

/* Stats layout: 2+3 */
.stats-row-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.stats-row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}

/* =============================================
   SECTION 6: RESPONSIBLE GAMING
============================================= */
.responsible-section {
  background: #000;
  padding: 30px 0;
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.responsible-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-gold);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.2s;
}

.responsible-card:hover {
  transform: translateY(-5px);
}

.responsible-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.responsible-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* =============================================
   SECTION 7: VERIFIED PLAYER REVIEWS (Carousel)
============================================= */
.player-reviews-section {
  background: var(--bg-panel);
  padding: 30px 0;
}

.whatsapp-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.whatsapp-carousel-track {
  display: flex;
  gap: 15px;
  transition: transform 0.5s ease;
}

.whatsapp-slide {
  flex-shrink: 0;
  width: calc(20% - 12px);
}

.whatsapp-slide img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.carousel-nav-btn {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: all 0.2s;
}

.carousel-nav-btn:hover {
  background: #ffed4e;
  transform: scale(1.1);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .markets-buttons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .casino-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row-top,
  .stats-row-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .whatsapp-slide {
    width: calc(33.333% - 10px);
  }
}

@media (max-width: 768px) {
  .markets-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fantasy-grid {
    grid-template-columns: 1fr;
  }

  .sports-cards-grid {
    grid-template-columns: 1fr;
  }

  .casino-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .responsible-grid {
    grid-template-columns: 1fr;
  }

  .stats-row-top,
  .stats-row-bottom {
    grid-template-columns: 1fr;
  }

  .whatsapp-slide {
    width: calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  .markets-buttons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .casino-cards-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-slide {
    width: calc(100% - 0px);
  }
}

/* ============================================
   SECTION A: EXCHANGE PLATFORM SLIDER
   (Screenshot Image 1 – "Bet on 11xPlay" style)
============================================ */
.exchange-section {
  background: #0a0c1a;
  padding: 30px 0;
}

.exchange-slider-wrap {
  position: relative;
}

.exchange-slider-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.exchange-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.exchange-slide {
  flex-shrink: 0;
  width: 100%;
  background: linear-gradient(135deg, #0d1025 0%, #141830 40%, #1a1f3a 100%);
  border-radius: 16px;
  border: 1.5px solid rgba(250, 207, 77, 0.25);
  padding: 40px 45px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 40px;
  align-items: center;
  min-height: 340px;
}

@media (max-width: 992px) {
  .exchange-slide {
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
    padding: 30px;
  }

  /* Move button/action below */
  .exchange-slide> :last-child {
    grid-column: span 2;
    justify-self: start;
  }
}

@media (max-width: 576px) {
  .exchange-slide {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 22px 10px;
    min-height: auto;
  }

  .exchange-slide>* {
    grid-column: auto !important;
  }

  /* Center content for better UI */
  .exchange-slide {
    text-align: center;
  }

  .exchange-slide> :last-child {
    justify-self: center;
  }

  .slide-content h2 {
    font-size: 20px !important;
  }

  .slide-content p {
    font-size: 10px !important;
  }

  .slide-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .slide-logo-box {
    margin: auto;
    width: 240px;
    height: 220px;
    border-radius: 18px;
    border: 2.5px solid #FACF4D;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
  }

  .slide-tag {
    width: 48%;
  }
}

/* Logo box */
.slide-logo-box {
  width: 240px;
  height: 220px;
  border-radius: 18px;
  border: 2.5px solid #FACF4D;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
}

.slide-logo-box {
  width: 100%;
  max-width: 240px;
  /* instead of fixed width */
  height: auto;
  /* ✅ FIX */
  aspect-ratio: 1/1;
  /* keeps square */
}

.slide-logo-placeholder {
  font-size: 22px;
  font-weight: 900;
  color: #FACF4D;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Slide content */
.slide-content {
  flex: 1;
  min-width: 0;
  /* 🔥 critical for grid overflow fix */
}

.slide-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #FACF4D;
  margin-bottom: 16px;
}

.slide-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 22px;
  width: 100%;
  /* ✅ FIX */
  max-width: 540px;
  /* optional */
}

.slide-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.slide-feature-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 10px;
}

.slide-feature-item .fi {
  font-size: 18px;
  flex-shrink: 0;
}

.slide-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.slide-tag {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid #FACF4D;
  background: rgba(250, 207, 77, 0.12);
  font-size: 13px;
  font-weight: 700;
  color: #FACF4D;
}

/* CTA button – orange pill */
.slide-cta-wrap {
  flex-shrink: 0;
}

.slide-cta-btn {
  display: inline-block;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ff7b35, #ff5500);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(255, 85, 0, 0.45);
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.slide-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 85, 0, 0.65);
}

/* Arrow buttons */
.ex-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  user-select: none;
}

.ex-arrow:hover {
  background: rgba(250, 207, 77, 0.2);
  border-color: #FACF4D;
  color: #FACF4D;
}

.ex-arrow.prev {
  left: -22px;
}

.ex-arrow.next {
  right: -22px;
}

/* Dots */
.ex-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.ex-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.ex-dot.active {
  background: #FACF4D;
  transform: scale(1.2);
}

/* =============================================
   SECTION 2: CRICKET BETTING MARKETS
   ============================================= */
.market-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.market-btn {
  /* display: flex; */
  background: var(--gold);
  color: #0b1120;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, transform 0.15s;
  text-align: left;
}

.market-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.02);
}

.market-btn .mb-icon {
  font-size: 1.5rem;
}

.market-btn .mb-text .mb-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.market-btn .mb-text .mb-sub {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 0.3px;
}

@media (max-width: 992px) {
  .market-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .market-buttons {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mb-text {
    text-align: center;
  }
}