/* ==================== RESET & GLOBAL yello - #f8ff13; background:#0f1117; ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background-color: #0f1117;
  color: #ffffff;
  overflow-x: hidden;
}

.app {
  display: flex;
  min-height: 100vh;
  max-width: 1600px;
  margin: 0 auto;
  background: #0f1117;
  position: relative;
}

/* ==================== INTERNAL CONTENT LINKS – GOLD (NO UNDERLINE) ==================== */
section a {
    color: #f8ff13;
    text-decoration: none;
    transition: color 0.2s ease;
}

section a:hover {
    color: #ffffff; /* or a lighter gold: #ffff70 */
}

/* Exclude button-like links inside sections */
section .hero-cta-btn,
section .btn,
section .button,
section .tab,
section .quick-stake,
section .place-bet,
section .util-btn,
section .bet-type-btn,
section .preset-btn,
section .format-btn,
section .add-odds-btn,
section .calc-btn,
section .reset-btn,
section .login-btn,
section .signup-btn,
section .nav-link,
section .dropdown > a {
    color: inherit;        /* revert to original color */
    text-decoration: none; /* already none, but keep for safety */
}

/* Optional: ensure keyword spans are not affected */
section .keyword {
    color: inherit;
    text-decoration: none;
}

/* ----- UTILITY CLASSES (gold highlights) ----- */
.highlight-gold {
  color: #f8ff13;
  font-weight: 600;
}

/* ==================== HEADER (new design) ==================== */
.mb-header {
  background-color: #0f1117;
  border-bottom: 1px solid #262b33;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
.logo span {
  color: #f8ff13;
  margin-left: 4px;
}

.search-box {
  flex: 1;
  max-width: 400px;
}
.search-box input {
  width: 100%;
  padding: 10px 16px;
  background: #1e2632;
  border: 1px solid #3a4557;
  border-radius: 40px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.search-box input:focus {
  border-color: #f8ff13;
  box-shadow: 0 0 0 3px rgba(248, 255, 19, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #b0b7c4;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s;
}
.dropdown > a:hover {
  color: #f8ff13;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1f2b;
  border: 1px solid #2a3240;
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #b0b7c4;
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
  background: #252e3b;
  color: #f8ff13;
}

.nav-link {
  color: #b0b7c4;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #f8ff13;
}

.auth-buttons {
  display: flex;
  gap: 8px;
  margin-left: 10px;
}
.login-btn {
  background: transparent;
  border: 1px solid #3a4557;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s;
  white-space: nowrap;
}
.login-btn:hover {
  border-color: #f8ff13;
  color: #f8ff13;
}
.signup-btn {
  background: #f8ff13;
  border: 1px solid #f8ff13;
  color: #0f1117;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s;
  white-space: nowrap;
}
.signup-btn:hover {
  background: #f8ff13;
  box-shadow: 0 0 15px #f8ff13;
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  color: #f8ff13;
  cursor: pointer;
}

/* ==================== FOOTER (new design) ==================== */
.mb-footer {
  background: #0a0c12;
  border-top: 1px solid #262b33;
  padding: 50px 0 0;
  margin-top: 40px;
}
.mb-footer-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.mb-footer-col h3, .mb-footer-col h4 {
  color: #f8ff13;
  margin-bottom: 20px;
}
.mb-footer-col ul {
  list-style: none;
}
.mb-footer-col li {
  margin-bottom: 10px;
}
.mb-footer-col a {
  color: #9aa9bc;
  font-size: 13px;
  transition: color 0.2s;
}
.mb-footer-col a:hover {
  color: #f8ff13;
}
.mb-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.mb-social-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0.8);
  transition: filter 0.2s;
}
.mb-social-icons img:hover {
  filter: brightness(1.2);
}
.mb-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0bed6;
}
.mb-icon {
  width: 20px;
  height: 20px;
}
.mb-footer-license {
  margin-top: 20px;
}
.mb-footer-license img {
  max-width: 120px;
}
.mb-footer-bottom {
  border-top: 1px solid #262b33;
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  color: #6f7a8c;
  font-size: 13px;
}
.mb-footer-bottom a {
  color: #9aa9bc;
  margin: 0 5px;
}
.mb-footer-bottom a:hover {
  color: #f8ff13;
}

/* ==================== TABLET ==================== */
@media (max-width: 1024px) {

  .search-box {
    display: none;
  }

  .header-container {
    height: 60px;
  }

  .nav-links {
    gap: 15px;
  }

  .mb-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ==================== MOBILE ==================== */
@media (max-width: 768px) {

  /* HEADER */

  .header-container {
    height: 60px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .search-box {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: #0f1117;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    border: none;
    box-shadow: none;
    padding-left: 10px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .auth-buttons {
    width: 100%;
    flex-direction: column;
  }

  .login-btn,
  .signup-btn {
    width: 100%;
    text-align: center;
  }

  /* FOOTER */

  .mb-footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mb-footer {
    padding: 30px 0 0;
  }

  .mb-footer-bottom {
    font-size: 12px;
    padding: 15px;
  }

}


/* ==================== SMALL MOBILE ==================== */
@media (max-width: 480px) {

  .logo a {
    font-size: 20px;
  }

  .header-container {
    padding: 0 15px;
  }

  .mb-footer-container {
    padding: 0 15px;
  }

}

/* ==================== MOBILE HEADER ==================== */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #1a1f2b;
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #2a3240;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.menu-toggle, .betslip-toggle {
  background: none;
  border: none;
  color: #f8ff13;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #262e3a;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.logo span {
  color: #f8ff13;
  margin-left: 4px;
}

/* ==================== LEFT SIDEBAR ==================== */
.sidebar {
  width: 280px;
  background: #0f1117;
  color: #b0b7c4;
  border-right: 1px solid #262b33;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 20px 0 30px 0;
  scrollbar-width: thin;
  transition: transform 0.3s ease;
  z-index: 1001;
}

.sidebar::-webkit-scrollbar {
  width: 5px;
}

.sidebar::-webkit-scrollbar-track {
  background: #1a1f2b;
}

.sidebar::-webkit-scrollbar-thumb {
  background: #3a4050;
  border-radius: 12px;
}

/* ==================== WELCOME BONUS BANNER ==================== */
.welcome-banner {
  background: linear-gradient(135deg, #1a1f2b 0%, #0f1117 100%);
  border-radius: 16px;
  margin: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid #f8ff1333;
}

.welcome-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #f8ff131a 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 20px;
  font-weight: 700;
  color: #f8ff13;
  margin-bottom: 8px;
}

.banner-subtitle {
  font-size: 14px;
  color: #b0bed6;
  margin-bottom: 16px;
}

.banner-button {
  background: #f8ff13;
  color: #0f1117;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.banner-button:hover {
  background: #f8ff13;
  box-shadow: 0 0 20px #f8ff13;
}

/* ==================== CATEGORY ICONS ==================== */
.categories-section {
  padding: 0 16px;
  margin-bottom: 24px;
}

.categories-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-icon-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 70px;
  cursor: pointer;
}

.icon-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a1f2b 0%, #0f1117 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #f8ff13;
  border: 2px solid #f8ff1333;
  transition: 0.2s;
}

.category-icon-item:hover .icon-circle {
  border-color: #f8ff13;
  transform: scale(1.05);
  box-shadow: 0 0 15px #f8ff13;
}

.category-icon-item span {
  font-size: 11px;
  color: #9aa9bc;
  text-align: center;
}

/* ==================== HOT MATCHES ==================== */
.hot-matches-section {
  padding: 0 16px;
  margin-bottom: 24px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-header .more-link {
  color: #f8ff13;
  font-size: 13px;
  cursor: pointer;
}

.horizontal-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.hot-match-card {
  flex: 0 0 280px;
  background: #1a1f2b;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #2a3240;
  transition: 0.2s;
}

.hot-match-card:hover {
  border-color: #f8ff13;
  box-shadow: 0 8px 20px rgba(248, 255, 19, 0.15);
}

.match-league {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  color: #9aa9bc;
}

.live-badge {
  background: #dc2626;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.match-teams-compact {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.team-compact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-name {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

.team-score {
  font-size: 16px;
  font-weight: 700;
  color: #f8ff13;
}

.match-odds-compact {
  display: flex;
  gap: 8px;
}

.odds-button-small {
  background: #252e3b;
  border: 1px solid #3a4557;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: 0.1s;
  flex: 1;
}

.odds-button-small:hover {
  background: #f8ff13;
  color: #0f1117;
  border-color: #f8ff13;
}

/* ==================== INSTANT GAMES ==================== */
.instant-games-section {
  padding: 0 16px;
  margin-bottom: 24px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.game-tile {
  background: #1a1f2b;
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  border: 1px solid #2a3240;
  transition: 0.2s;
  cursor: pointer;
}

.game-tile:hover {
  border-color: #f8ff13;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(248, 255, 19, 0.15);
}

.game-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.game-tile span {
  font-size: 12px;
  color: #b0bed6;
  display: block;
}

/* ==================== LIVE CASINO ==================== */
.live-casino-section {
  padding: 0 16px;
  margin-bottom: 24px;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.casino-card {
  background: #1a1f2b;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #2a3240;
  position: relative;
  transition: 0.2s;
}

.casino-card:hover {
  border-color: #f8ff13;
  transform: translateY(-2px);
}

.casino-live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #dc2626;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
}

.casino-icon {
  width: 40px;
  height: 40px;
  background: #252e3b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.casino-name {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 4px;
}

.casino-provider {
  font-size: 11px;
  color: #9aa9bc;
  margin-bottom: 8px;
}

.casino-limits {
  font-size: 11px;
  color: #f8ff13;
}

/* ==================== VIRTUAL SPORTS ==================== */
.virtual-sports-section {
  padding: 0 16px;
  margin-bottom: 24px;
}

.virtual-card {
  background: linear-gradient(135deg, #1a1f2b 0%, #0f1117 100%);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #f8ff1333;
}

.virtual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.virtual-header h3 {
  font-size: 16px;
  color: #f8ff13;
}

.virtual-live {
  background: #dc2626;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.virtual-match {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px;
  background: #1a1f2b;
  border-radius: 12px;
}

.virtual-teams {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.virtual-team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-icon {
  width: 24px;
  height: 24px;
  background: #252e3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.virtual-scores {
  font-weight: 700;
  color: #f8ff13;
}

.virtual-odds {
  display: flex;
  gap: 8px;
}

/* ==================== SPORTS LIST VERTICAL ==================== */
.sports-vertical-list {
  padding: 0 16px;
  margin-bottom: 24px;
}

.sport-vertical-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #2a3240;
  cursor: pointer;
  transition: 0.1s;
}

.sport-vertical-item:hover {
  background: #1a1f2b;
  padding-left: 12px;
  margin-left: -12px;
  padding-right: 12px;
  border-radius: 12px;
}

.sport-icon-vertical {
  width: 40px;
  height: 40px;
  background: #252e3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 12px;
  color: #f8ff13;
}

.sport-info-vertical {
  flex: 1;
}

.sport-name-vertical {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 4px;
}

.sport-events-count {
  font-size: 11px;
  color: #9aa9bc;
}

.sport-live-badge {
  background: #dc2626;
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
}

/* ==================== TOP SLOTS ==================== */
.top-slots-section {
  padding: 0 16px;
  margin-bottom: 24px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.slot-card {
  background: #1a1f2b;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a3240;
  transition: 0.2s;
}

.slot-card:hover {
  border-color: #f8ff13;
  transform: translateY(-2px);
}

.slot-image {
  height: 100px;
  background: linear-gradient(135deg, #252e3b 0%, #1a1f2b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #f8ff13;
}

.slot-info {
  padding: 12px;
}

.slot-name {
  font-weight: 600;
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 4px;
}

.slot-provider {
  font-size: 10px;
  color: #9aa9bc;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media screen and (max-width: 767px) {
  .mobile-header {
    display: flex;
  }

  .sidebar {
    position: fixed;
    left: 0;
    top: 60px;
    height: calc(100vh - 60px);
    transform: translateX(-100%);
    width: 280px;
    z-index: 999;
    box-shadow: 2px 0 20px rgba(0,0,0,0.5);
  }

  .sidebar.mobile-open {
    transform: translateX(0);
  }

  .betslip-panel {
    position: fixed;
    right: 0;
    top: 60px;
    height: calc(100vh - 60px);
    transform: translateX(100%);
    width: 280px;
    z-index: 999;
    box-shadow: -2px 0 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
  }

  .betslip-panel.mobile-open {
    transform: translateX(0);
  }

  .center {
    width: 100%;
    padding: 76px 0 20px 0;
  }

  .games-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-tile {
    padding: 12px 4px;
  }

  .game-icon {
    font-size: 22px;
  }

  .game-tile span {
    font-size: 10px;
  }
}

@media screen and (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hot-match-card {
    flex: 0 0 260px;
  }

  .category-icon-item {
    width: 60px;
  }

  .icon-circle {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .category-icon-item span {
    font-size: 10px;
  }
}

/* ==================== BETSLIP PANEL STYLES ==================== */
.betslip-panel {
  width: 320px;
  background: #0f1117;
  border-left: 1px solid #262b33;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
}

.betslip-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.tab {
  flex: 1;
  background: transparent;
  border: 1px solid #2e3643;
  color: #8a99b0;
  padding: 10px 0;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  cursor: default;
  transition: 0.1s;
}

.tab.active {
  background: #f8ff13;
  border-color: #f8ff13;
  color: #0f1117;
}

.betslip-items {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.bet-item {
  background: #1a1f2b;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #2b3340;
}

.bet-match {
  font-weight: 600;
  font-size: 13px;
  color: #d4deee;
  margin-bottom: 6px;
}

.bet-market {
  font-size: 12px;
  color: #96a4bb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.bet-odds {
  background: #222a36;
  padding: 4px 10px;
  border-radius: 30px;
  font-weight: 700;
  color: #f8ff13;
}

.bet-remove {
  background: none;
  border: none;
  color: #7b8aa4;
  font-size: 18px;
  cursor: pointer;
  padding: 0 5px;
}

.bet-remove:hover {
  color: #f87171;
}

.betslip-footer {
  background: #151a23;
  border-radius: 16px;
  padding: 18px 14px;
  border: 1px solid #2b3442;
}

.stake-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.stake-row label {
  font-size: 14px;
  color: #b0bed6;
}

.stake-row input {
  background: #1e2632;
  border: 1px solid #3d485a;
  color: white;
  padding: 10px 16px;
  border-radius: 40px;
  width: 130px;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

.quick-stakes {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.quick-stake {
  background: #1f2937;
  border: 1px solid #3a4557;
  color: #cbd5e3;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.1s;
  flex: 1 0 auto;
}

.quick-stake:hover {
  background: #2e3b4e;
  border-color: #f8ff13;
}

.profit-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  margin: 14px 0 18px;
  padding-top: 10px;
  border-top: 1px dashed #323e50;
}

.profit-amount {
  color: #f8ff13;
  font-size: 20px;
  font-weight: 700;
}

.place-bet {
  width: 100%;
  background: #2f3d56;
  border: none;
  color: #7b8da8;
  font-weight: 700;
  font-size: 18px;
  padding: 16px;
  border-radius: 60px;
  cursor: not-allowed;
  transition: 0.15s;
}

.place-bet.active {
  background: #f8ff13;
  color: #0f1117;
  cursor: pointer;
  box-shadow: 0 0 20px #f8ff13;
}

.place-bet.active:hover {
  background: #f8ff13;
}

.loading-spinner {
  display: none;
  width: 48px;
  height: 48px;
  border: 4px solid rgba(248, 255, 19, 0.15);
  border-top: 4px solid #f8ff13;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==================== FIX SIDEBAR STYLES ==================== */
.top-menu {
  list-style: none;
  margin-bottom: 20px;
}

.top-menu li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #b0b7c4;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.top-menu li:hover {
  background: #1a1f2b;
  color: #ffffff;
  border-left-color: #f8ff13;
}

.top-menu li svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
}

.section-title {
  padding: 20px 20px 8px;
  font-size: 12px;
  color: #6f7a8c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.sports-list {
  list-style: none;
  margin-bottom: 20px;
}

.sport-item {
  margin-bottom: 2px;
}

.sport-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  cursor: pointer;
  color: #e1e6ef;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.sport-header:hover {
  background: #1a1f2b;
}

.arrow-icon {
  width: 14px;
  height: 14px;
  color: #9aa9bc;
  transition: transform 0.25s ease;
}

.sport-item.expanded .arrow-icon {
  transform: rotate(90deg);
}

.sport-name {
  flex: 1;
}

.child-list {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #0a0c12;
}

.sport-item.expanded .child-list {
  max-height: 500px;
}

.child-item, .child-header {
  padding: 8px 20px 8px 44px;
  font-size: 13px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.child-item {
  color: #b0bed6;
}

.child-item:hover {
  background: #1a1f2b;
  color: #ffffff;
  border-left-color: #f8ff13;
}

.child-item.active {
  background: rgba(248, 255, 19, 0.1);
  border-left: 3px solid #f8ff13;
  color: #f8ff13;
}

.child-header {
  color: #6f7a8c;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  cursor: default;
  padding-top: 12px;
}

.child-header:not(:first-of-type) {
  margin-top: 4px;
  border-top: 1px solid #2a3240;
}

/* ==================== CENTER CONTENT STYLES ==================== */
.center {
  flex: 1;
  background: #161b22;
  overflow-y: auto;
  height: 100vh;
  position: relative;
}

.homepage-container {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding-bottom: 30px;
}

/* ==================== MATCHES GRID STYLES ==================== */
.matches-header {
  padding: 20px 16px 10px;
}

.matches-header h2 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}

.matches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
}

.match-card {
  background: #1a1f2b;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #2a3240;
  transition: all 0.2s;
}

.match-card:hover {
  border-color: #f8ff13;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a3240;
  font-size: 12px;
  color: #9aa9bc;
}

.league-name {
  font-weight: 600;
  color: #b0bed6;
}

.live-badge {
  background: #dc2626;
  color: white;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.markets-count {
  font-size: 11px;
  color: #6f7a8c;
}

.match-teams {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.team {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-name {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

.team-score {
  font-size: 16px;
  font-weight: 700;
  color: #f8ff13;
}

.team-overs {
  font-size: 11px;
  color: #7d8b9f;
}

.odds-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.odds-btn {
  background: #252e3b;
  border: 1px solid #3a4557;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  text-align: center;
}

.odds-btn:hover {
  background: #f8ff13;
  color: #0f1117;
  border-color: #f8ff13;
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(248, 255, 19, 0.3);
}

.odds-btn.selected {
  background: #f8ff13;
  color: #0f1117;
  border-color: #f8ff13;
  box-shadow: 0 0 15px #f8ff13;
}

.market-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #2a3240;
  flex-wrap: wrap;
}

.market-name {
  font-size: 12px;
  color: #9aa9bc;
  min-width: 80px;
}

.market-odds {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.no-matches {
  text-align: center;
  padding: 40px;
  color: #9aa9bc;
  font-size: 14px;
}

/* ==================== FIXED MOBILE RESPONSIVE ==================== */
@media screen and (max-width: 767px) {
  .app {
    flex-direction: column;
  }

  .mobile-header {
    display: flex;
  }

  .sidebar {
    position: fixed;
    left: 0;
    top: 60px;
    height: calc(100vh - 60px);
    transform: translateX(-100%);
    width: 280px;
    z-index: 999;
    box-shadow: 2px 0 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    padding-top: 10px;
  }

  .sidebar.mobile-open {
    transform: translateX(0);
  }

  .betslip-panel {
    position: fixed;
    right: 0;
    top: 60px;
    height: calc(100vh - 60px);
    transform: translateX(100%);
    width: 280px;
    z-index: 999;
    box-shadow: -2px 0 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    padding: 16px;
  }

  .betslip-panel.mobile-open {
    transform: translateX(0);
  }

  .center {
    width: 100%;
    height: calc(100vh - 60px);
    margin-top: 60px;
    padding: 0 0 20px 0;
  }

  .betslip-items {
    max-height: calc(100vh - 280px);
  }

  .stake-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .stake-row input {
    width: 100%;
  }

  .quick-stakes {
    justify-content: space-between;
  }

  .quick-stake {
    flex: 1;
    padding: 8px 4px;
    font-size: 11px;
  }

  .profit-row {
    margin: 12px 0;
  }

  .profit-amount {
    font-size: 18px;
  }

  .place-bet {
    padding: 14px;
    font-size: 16px;
  }

  /* Fix for category icons on mobile */
  .categories-scroll {
    gap: 12px;
  }

  .category-icon-item {
    width: 60px;
  }

  .icon-circle {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .category-icon-item span {
    font-size: 10px;
  }

  /* Fix for hot matches on mobile */
  .hot-match-card {
    flex: 0 0 260px;
    padding: 12px;
  }

  .team-score {
    font-size: 14px;
  }

  .odds-button-small {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* Fix for games grid on mobile */
  .games-grid {
    gap: 8px;
  }

  .game-tile {
    padding: 12px 4px;
  }

  .game-icon {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .game-tile span {
    font-size: 10px;
  }

  /* Fix for casino grid on mobile */
  .casino-card {
    padding: 12px;
  }

  .casino-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .casino-name {
    font-size: 12px;
  }

  .casino-provider, .casino-limits {
    font-size: 9px;
  }

  /* Fix for slots grid on mobile */
  .slot-image {
    height: 80px;
    font-size: 24px;
  }

  .slot-name {
    font-size: 12px;
  }

  .slot-provider {
    font-size: 9px;
  }

  /* Fix for virtual sports on mobile */
  .virtual-card {
    padding: 16px;
  }

  .virtual-header h3 {
    font-size: 14px;
  }

  .virtual-match {
    padding: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .virtual-scores {
    align-self: flex-end;
  }

  /* Fix for sports vertical list on mobile */
  .sport-vertical-item {
    padding: 10px 0;
  }

  .sport-icon-vertical {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .sport-name-vertical {
    font-size: 13px;
  }

  .sport-events-count {
    font-size: 10px;
  }

  .sport-live-badge {
    font-size: 9px;
    padding: 2px 6px;
  }
}

/* Extra small devices */
@media screen and (max-width: 360px) {
  .category-icon-item {
    width: 50px;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .game-tile {
    padding: 8px 2px;
  }

  .game-icon {
    font-size: 18px;
  }

  .game-tile span {
    font-size: 9px;
  }

  .hot-match-card {
    flex: 0 0 240px;
  }

  .team-name {
    font-size: 12px;
  }

  .team-score {
    font-size: 13px;
  }

  .odds-button-small {
    padding: 4px 8px;
    font-size: 11px;
  }
}

/* Landscape mode on mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .sidebar {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .betslip-panel {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .center {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }

  .games-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

/* Tablet styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sidebar {
    width: 240px;
  }

  .betslip-panel {
    width: 280px;
  }

  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ==================== HEADER STYLES ==================== */
.mb-header {
  background: #0f1117;
  border-bottom: 1px solid #262b33;
  position: sticky;
  top: 0;
  z-index: 1002;
  width: 100%;
}

.mb-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.mb-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.logo-text span {
  color: #f8ff13;
  margin-left: 4px;
}

/* Navigation */
.mb-nav {
  flex: 1;
  margin: 0 30px;
}

.mb-nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  justify-content: center;
}

.mb-nav-menu li {
  position: relative;
}

.mb-nav-menu a {
  color: #b0b7c4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  padding: 8px 0;
}

.mb-nav-menu a:hover,
.mb-nav-menu a.active {
  color: #f8ff13;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1f2b;
  border: 1px solid #2a3240;
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  z-index: 100;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: #b0b7c4;
}

.dropdown-menu a:hover {
  background: #252e3b;
  color: #f8ff13;
}

/* Auth Buttons */
.mb-auth-buttons {
  display: flex;
  gap: 8px;
}

.mb-login-btn {
  background: transparent;
  border: 1px solid #3a4557;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}

.mb-login-btn:hover {
  border-color: #f8ff13;
  color: #f8ff13;
}

.mb-signup-btn {
  background: #f8ff13;
  border: 1px solid #f8ff13;
  color: #0f1117;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.mb-signup-btn:hover {
  background: #f8ff13;
  box-shadow: 0 0 15px #f8ff13;
}

/* Mobile Menu Toggle */
.mb-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mb-mobile-menu span {
  width: 24px;
  height: 2px;
  background: #f8ff13;
  transition: 0.3s;
}




/* ==================== MAHADEV BOOK HOMEPAGE START ==================== */

/* Theme Variables */
:root {
  --bg-primary: #0f1117;
  --bg-secondary: #1a1f2b;
  --bg-card: #1a1f2b;
  --border-color: #262b33;
  --gold: #f8ff13;
  --gold-dark: #d4af37;
  --text-primary: #ffffff;
  --text-secondary: #b0b7c4;
  --text-muted: #9aa9bc;
  --success: #4caf50;
  --warning: #ff9800;
  --error: #f44336;
  --info: #2196f3;
  --green: #25D366;
}

/* ==================== BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 80px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

section:last-of-type {
  border-bottom: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.highlight-gold {
  color: var(--gold);
  font-weight: 600;
}

/* =============================== HERO BRAND INTRODUCTION ================================ */
/* Mahadev Book Hero Section - Dark Theme with #f8ff13 gold */
#hero-brand-introduction {
  background: linear-gradient(135deg, #1a1e26 0%, #0f1117 100%);
  padding: 4rem 2rem;
  width: 100%;
  overflow: hidden;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-text {
  flex: 1 1 55%;
  max-width: 750px;
}

.hero-image {
  flex: 1 1 40%;
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

.hero-image-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: #1e293b;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
  line-height: 0;
}

.hero-image-badge img {
  width: 60px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stars {
  color: #f8ff13;  /* Updated gold */
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 1rem;
  font-weight: 500;
  color: #cbd5e1;
  background: #1e293b;
  padding: 0.3rem 1rem;
  border-radius: 30px;
}

.highlight-gold {
  color: #f8ff13;  /* Updated gold */
  background: rgba(248, 255, 19, 0.15);  /* Adjusted to match new gold */
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
}

.hero-id-highlight {
  font-size: 1.1rem;
  margin: 1.5rem 0 1rem 0;
  background: #1e293b;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border-left: 5px solid #f8ff13;  /* Updated gold */
  box-shadow: 0 4px 6px -2px rgba(0,0,0,0.2);
  color: #e2e8f0;
}

.hero-id-highlight .highlight-gold {
  background: transparent;
  padding: 0;
  color: #f8ff13;  /* Updated gold */
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1rem 0 0.5rem 0;
  color: #e2e8f0;
}

.hero-content p {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin: 1rem 0;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.hero-highlights li {
  background: #1e293b;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.3);
  font-size: 0.95rem;
  font-weight: 500;
  color: #f1f5f9;
  border: 1px solid #334155;
  transition: all 0.2s;
}

.hero-highlights li:hover {
  border-color: #f8ff13;  /* Updated gold */
  box-shadow: 0 8px 20px -8px rgba(248, 255, 19, 0.2);  /* Updated gold with alpha */
  transform: translateY(-2px);
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 2rem 0 1.5rem;
  padding: 1rem 0;
  border-top: 2px dashed #334155;
  border-bottom: 2px dashed #334155;
}

.hero-trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f1f5f9;
  background: #1e293b;
  padding: 0.3rem 1rem;
  border-radius: 30px;
}

.hero-trust-badges span::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  margin-right: 4px;
}

.hero-tagline {
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem 0;
  background: #1e293b;
  padding: 1rem 2rem;
  border-radius: 60px;
  display: inline-block;
  color: #f1f5f9;
}

.hero-tagline a {
  color: #f8ff13;  /* Updated gold */
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid #f8ff13;  /* Updated gold */
}

.hero-tagline a:hover {
  color: #f8ff13;  /* keep same or slightly darker? we can keep */
}

.hero-urgency {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  padding: 0.8rem 1.5rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  margin: 1.5rem 0;
  display: inline-block;
  border-left: 4px solid #ef4444;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0 1rem;
}

.hero-cta-btn {
  display: inline-block;
  background: linear-gradient(145deg, #f59e0b, #d97706);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 15px 25px -8px rgba(245, 158, 11, 0.4);
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
  transform: translateY(-3px);
  box-shadow: 0 25px 30px -8px rgba(245, 158, 11, 0.5);
}

.hero-secondary-link {
  color: #cbd5e1;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 2px solid #475569;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.hero-secondary-link:hover {
  border-bottom-color: #f8ff13;  /* Updated gold */
  color: #ffffff;
}

.hero-cta-note {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  #hero-brand-introduction {
    padding: 3rem 1.5rem;
  }
  .hero-layout {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    gap: 3rem;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-image {
    order: -1;
  }
  .hero-image img {
    max-width: 500px;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
  }
  .hero-trust-badges {
    justify-content: center;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-btn {
    text-align: center;
  }
  .hero-secondary-link {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  #hero-brand-introduction {
    padding: 2rem 1rem;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-rating {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-id-highlight {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-image-badge {
    width: 50px;
    bottom: -5px;
    right: -5px;
  }
}

/* Links */
.hero-content a:not(.hero-cta-btn):not(.hero-secondary-link) {
  color: #f8ff13;  /* Updated gold */
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.hero-content a:hover {
  color: #f8ff13;  /* keep same or adjust */
}

/* About Mahadev Book Section - Dark Theme with #f8ff13 Gold */
#about-mahadev-book {
  background: #1a1e26; /* Slightly lighter than body for separation */
  padding: 5rem 2rem;
  width: 100%;
  border-top: 1px solid #2d3748;
  border-bottom: 1px solid #2d3748;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  display: inline-block;
}

.about-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f8ff13; /* Gold accent */
  border-radius: 2px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.8rem;
}

.about-content .about-lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: #f1f5f9;
  border-left: 4px solid #f8ff13;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.about-content strong {
  color: #f8ff13; /* Gold for strong emphasis */
  font-weight: 600;
}

.about-cta {
  text-align: center;
  margin-top: 3rem;
}

.about-cta-link {
  display: inline-block;
  background: transparent;
  color: #f8ff13;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  border: 2px solid #f8ff13;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.about-cta-link:hover {
  background: #f8ff13;
  color: #0f1117;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -8px rgba(248, 255, 19, 0.3);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  #about-mahadev-book {
    padding: 3rem 1.5rem;
  }

  .about-header h2 {
    font-size: 2.2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-content .about-lead {
    font-size: 1.2rem;
    padding-left: 1rem;
  }
}

@media screen and (max-width: 480px) {
  #about-mahadev-book {
    padding: 2.5rem 1rem;
  }

  .about-header h2 {
    font-size: 1.8rem;
  }

  .about-content .about-lead {
    font-size: 1.1rem;
  }

  .about-cta-link {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
}

/* Getting Started Section - Dark Theme with #f8ff13 Gold */
#getting-started {
  background: #0f1117; /* Match body background for depth */
  padding: 5rem 2rem;
  width: 100%;
}

#getting-started .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Headings */
#getting-started h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 2rem 0;
  text-align: center;
  position: relative;
}

#getting-started h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f8ff13;
  border-radius: 2px;
}

#getting-started h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f1f5f9;
  margin: 2.5rem 0 1.2rem 0;
}

/* Paragraphs */
#getting-started p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

/* Checklist (ul) */
#getting-started ul.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
}

#getting-started ul.checklist li {
  font-size: 1.1rem;
  color: #cbd5e1;
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  border-bottom: 1px solid #2d3748;
}

#getting-started ul.checklist li:last-child {
  border-bottom: none;
}

#getting-started ul.checklist li::before {
  content: "✓";
  color: #f8ff13;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0.6rem;
}

/* Numbered steps (ol) */
#getting-started ol.numbered-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
}

#getting-started ol.numbered-steps li {
  counter-increment: step-counter;
  font-size: 1.1rem;
  color: #cbd5e1;
  padding: 0.8rem 0 0.8rem 3rem;
  position: relative;
  border-bottom: 1px solid #2d3748;
}

#getting-started ol.numbered-steps li:last-child {
  border-bottom: none;
}

#getting-started ol.numbered-steps li::before {
  content: counter(step-counter);
  background: #f8ff13;
  color: #0f1117;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0.7rem;
  font-size: 0.95rem;
}

#getting-started ol.numbered-steps li strong {
  color: #f8ff13;
  font-weight: 600;
}

#getting-started ol.numbered-steps li em {
  color: #94a3b8;
  font-style: italic;
}

/* Note box */
#getting-started .note-box {
  background: #1e293b;
  border-left: 6px solid #f8ff13;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  margin: 2.5rem 0;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.5);
}

#getting-started .note-box p {
  margin: 0;
  color: #e2e8f0;
  font-size: 1.05rem;
}

#getting-started .note-box strong {
  color: #f8ff13;
  font-weight: 600;
}

/* CTA section */
#getting-started .section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

#getting-started .cta-button.primary {
  display: inline-block;
  background: linear-gradient(145deg, #f59e0b, #d97706);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 15px 25px -8px rgba(245, 158, 11, 0.4);
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}

#getting-started .cta-button.primary:hover {
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
  transform: translateY(-3px);
  box-shadow: 0 25px 30px -8px rgba(245, 158, 11, 0.5);
}

#getting-started .cta-link {
  color: #cbd5e1;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 2px solid #475569;
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

#getting-started .cta-link:hover {
  border-bottom-color: #f8ff13;
  color: #ffffff;
}

/* Responsive */
@media screen and (max-width: 768px) {
  #getting-started {
    padding: 3rem 1.5rem;
  }

  #getting-started h2 {
    font-size: 2.2rem;
  }

  #getting-started h3 {
    font-size: 1.5rem;
  }

  #getting-started p,
  #getting-started ul.checklist li,
  #getting-started ol.numbered-steps li {
    font-size: 1rem;
  }

  #getting-started .note-box {
    padding: 1.2rem 1.5rem;
  }

  #getting-started .section-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  #getting-started .cta-button.primary {
    text-align: center;
  }

  #getting-started .cta-link {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  #getting-started {
    padding: 2.5rem 1rem;
  }

  #getting-started h2 {
    font-size: 1.8rem;
  }

  #getting-started h3 {
    font-size: 1.3rem;
  }

  #getting-started ol.numbered-steps li {
    padding-left: 2.5rem;
  }

  #getting-started ol.numbered-steps li::before {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
    top: 0.8rem;
  }
}
/* ==================== MAHADEV BETTING APP ==================== */
#mahadev-betting-app {
  background-color: var(--bg-secondary);
}

.app-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.app-image {
  flex: 1;
}

.app-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.app-content {
  flex: 1;
}

.app-content h2 {
  color: var(--gold);
  margin-bottom: 20px;
}

.app-features {
  list-style: none;
  margin: 20px 0;
}

.app-features li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.app-features li::before {
  content: "✓";
  color: var(--gold);
  position: absolute;
  left: 0;
}

.app-upgrades {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
}

.app-upgrades p {
  margin-bottom: 10px;
}

.app-upgrades ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-secondary);
}

.app-download {
  text-align: center;
  margin: 20px 0;
}

.app-download img {
  width: 180px;
  height: 180px;
  margin-top: 10px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .app-container {
    flex-direction: column;
  }
}

/* ==================== MAHADEV CRICKET ==================== */
#mahadev-cricket.black-gold-theme {
  background-color: var(--bg-primary);
}

.cricket-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cricket-header {
  text-align: center;
  margin-bottom: 40px;
}

.cricket-header h2 {
  color: var(--gold);
}

.cricket-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.cricket-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.cricket-features-column {
  flex: 1;
}

.feature-card {
  display: flex;
  gap: 15px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: var(--gold);
}

.feature-point {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  min-width: 40px;
}

.feature-text h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 14px;
  margin: 0;
}

.cricket-note {
  margin-top: 20px;
  padding: 15px;
  background: rgba(248, 255, 19, 0.05);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.cricket-image {
  flex: 1;
}

.image-frame {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.cricket-image img {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .cricket-grid {
    flex-direction: column;
  }
}

/* ==================== EXPERT ADVICE ==================== */
.expert-advice {
  background-color: var(--bg-secondary);
}

.expert-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.expert-header {
  text-align: center;
  margin-bottom: 40px;
}

.expert-badge {
  display: inline-block;
  background: rgba(248, 255, 19, 0.1);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid var(--gold);
  margin-bottom: 15px;
}

.expert-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.author-credential {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
  align-items: center;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.author-info h3 {
  color: var(--gold);
  margin-bottom: 5px;
}

.author-title {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.author-bio {
  font-size: 14px;
}

.author-verification {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.verified-badge, .experience-badge {
  background: rgba(248, 255, 19, 0.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  border: 1px solid var(--gold);
}

.expert-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.tip-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: border-color 0.3s;
}

.tip-card:hover {
  border-color: var(--gold);
}

.tip-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}

.tip-card h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.tip-example {
  background: rgba(255,255,255,0.02);
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.example-label {
  color: var(--gold);
  font-weight: 600;
  margin-right: 5px;
}

.monthly-insights {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
}

.monthly-insights h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

.insight-content p {
  margin-bottom: 10px;
}

.insight-footer {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 13px;
}

.update-tag, .source-tag {
  background: rgba(255,255,255,0.02);
  padding: 4px 10px;
  border-radius: 30px;
}

.expert-disclaimer {
  background: rgba(244, 67, 54, 0.1);
  border-left: 4px solid var(--error);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 30px;
}

.expert-disclaimer h4 {
  color: var(--error);
  margin-bottom: 5px;
}

@media (max-width: 1024px) {
  .expert-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .author-credential {
    flex-direction: column;
    text-align: center;
  }
  .expert-tips-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== OTHER SPORTS ==================== */
#mahadev-other-sports {
  background-color: var(--bg-primary);
}

.sports-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sports-header {
  text-align: center;
  margin-bottom: 40px;
}

.sports-header h2 {
  color: var(--gold);
}

.sports-band {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.sport-line {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 15px 25px;
  transition: border-color 0.3s;
}

.sport-line:hover {
  border-color: var(--gold);
}

.sport-line strong {
  color: var(--gold);
  min-width: 120px;
  font-size: 16px;
}

.sport-line span {
  color: var(--text-secondary);
  font-size: 15px;
}

.sports-footer {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .sport-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    border-radius: 12px;
  }
}

/* ==================== LIVE CASINO EXPERIENCE ==================== */
#mahadev-live-casino-experience {
  background-color: var(--bg-secondary);
}

.casino-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.casino-heading {
  text-align: center;
  margin-bottom: 40px;
}

.casino-heading h2 {
  color: var(--gold);
}

.casino-subline {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.casino-content {
  max-width: 900px;
  margin: 0 auto;
}

.casino-divider {
  height: 1px;
  background: var(--border-color);
  margin: 40px 0;
}

.casino-focus {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.focus-row {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.3s;
}

.focus-row:hover {
  border-color: var(--gold);
}

.focus-title {
  min-width: 150px;
  font-weight: 600;
  color: var(--gold);
}

.focus-text {
  color: var(--text-secondary);
  font-size: 15px;
}

.casino-note {
  margin-top: 40px;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 768px) {
  .focus-row {
    flex-direction: column;
    gap: 5px;
  }
}

/* ==================== BETTING CALCULATOR ==================== */
.betting-calculator-section {
  background-color: var(--bg-primary);
}

.calculator-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.calculator-header {
  text-align: center;
  margin-bottom: 40px;
}

.calculator-header h2 {
  color: var(--gold);
}

.calculator-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.calculator-inputs {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
}

.calc-section {
  margin-bottom: 30px;
}

.calc-section h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 15px;
}

.bet-type-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bet-type-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 15px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.bet-type-btn.active,
.bet-type-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.stake-input {
  position: relative;
}

.currency-symbol {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 600;
}

#stakeAmount {
  width: 100%;
  padding: 12px 15px 12px 40px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 16px;
}

.stake-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.preset-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.preset-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.odds-input-container,
.multiple-odds-container {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px;
}

.odds-input-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.format-selector {
  display: flex;
  gap: 5px;
}

.format-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

.format-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

#oddsDecimal {
  flex: 1;
  padding: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-primary);
}

.multiple-odds-container {
  margin-top: 10px;
}

.odds-entries {
  margin-bottom: 10px;
}

.odds-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.odds-entry span {
  min-width: 50px;
  color: var(--gold);
}

.multi-odds {
  flex: 1;
  padding: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-primary);
}

.remove-odds {
  background: transparent;
  border: none;
  color: var(--error);
  font-size: 18px;
  cursor: pointer;
}

.add-odds-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.commission-input {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

#commissionSlider {
  flex: 1;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  -webkit-appearance: none;
}

#commissionSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
}

.slider-value {
  min-width: 60px;
  color: var(--gold);
  font-weight: 600;
}

.commission-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

.calc-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.calc-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.calculate-btn {
  background: var(--gold);
  color: var(--bg-primary);
}

.calculate-btn:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.reset-btn {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.reset-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.calculator-results {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
}

.results-summary {
  margin-bottom: 30px;
}

.results-summary h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.result-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
}

.result-item.highlight {
  background: rgba(248, 255, 19, 0.1);
  border-color: var(--gold);
}

.result-item.highlight.profit .result-value {
  color: var(--success);
}

.result-label {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 5px;
}

.result-value {
  display: block;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
}

.breakdown-chart {
  margin: 30px 0;
}

.breakdown-chart h3 {
  color: var(--gold);
  margin-bottom: 15px;
}

.chart-container {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
}

.chart-bar {
  display: flex;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
}

.bar-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  height: 100%;
}

.stake-bar {
  background: rgba(255,255,255,0.2);
  color: var(--text-primary);
}

.profit-bar {
  background: var(--gold);
  color: var(--bg-primary);
}

.bar-label {
  margin-right: 5px;
}

.chart-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 13px;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.stake-color {
  background: rgba(255,255,255,0.2);
  border: 1px solid var(--border-color);
}

.profit-color {
  background: var(--gold);
}

.risk-calculator {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
}

.risk-calculator h3 {
  color: var(--gold);
  margin-bottom: 15px;
}

.risk-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.risk-controls label {
  color: var(--text-secondary);
}

#bankrollAmount {
  flex: 1;
  padding: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-primary);
}

.risk-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.risk-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}

.risk-item span:first-child {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 5px;
}

.risk-item span:last-child {
  color: var(--gold);
  font-weight: 600;
}

.risk-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

.calculator-utils {
  margin-top: 30px;
}

.calculator-utils h3 {
  color: var(--gold);
  margin-bottom: 15px;
}

.util-buttons {
  display: flex;
  gap: 10px;
}

.util-btn {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.util-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.strategy-tips {
  margin-top: 40px;
}

.strategy-tips h3 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.strategy-tips .tip-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
}

.strategy-tips .tip-number {
  font-size: 24px;
  opacity: 0.3;
  margin-bottom: 5px;
}

.strategy-tips .tip-card h4 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 5px;
}

.strategy-tips .tip-card p {
  font-size: 13px;
}

.calculator-disclaimer {
  background: rgba(244, 67, 54, 0.1);
  border-left: 4px solid var(--error);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  .risk-results {
    grid-template-columns: 1fr;
  }
  .util-buttons {
    flex-direction: column;
  }
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== PAYMENTS TRANSPARENCY ==================== */
#mahadev-payments-transparency {
  background-color: var(--bg-secondary);
}

.payments-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.payments-header {
  text-align: center;
  margin-bottom: 40px;
}

.payments-header h2 {
  color: var(--gold);
}

.payments-intro {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.payments-flow {
  position: relative;
  padding: 20px 0;
}

.flow-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.flow-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 30px;
}

.flow-step .flow-title {
  display: block;
  font-weight: 600;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 5px;
}

.flow-step p {
  margin: 0;
}

.payments-trust-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: var(--text-muted);
}

/* ==================== WITHDRAWAL RELIABILITY ==================== */
#mahadev-withdrawal-reliability {
  background-color: var(--bg-primary);
}

.withdrawal-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.withdrawal-header {
  text-align: center;
  margin-bottom: 40px;
}

.withdrawal-header h2 {
  color: var(--gold);
}

.withdrawal-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.flow-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: border-color 0.3s;
}

.flow-step:hover {
  border-color: var(--gold);
}

.step-index {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  display: block;
  margin-bottom: 10px;
}

.step-content h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  margin: 0;
}

.withdrawal-trust-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .withdrawal-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .withdrawal-flow {
    grid-template-columns: 1fr;
  }
}

/* ==================== USER SAFETY ACCOUNT SECURITY ==================== */
#user-safety-account-security {
  background-color: var(--bg-secondary);
}

.security-framework {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.security-header-block {
  text-align: center;
  margin-bottom: 40px;
}

.security-header-block h2 {
  color: var(--gold);
}

.security-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.security-pillar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: border-color 0.3s;
}

.security-pillar:hover {
  border-color: var(--gold);
}

.security-pillar h3 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 10px;
}

.security-pillar p {
  font-size: 13px;
  margin: 0;
}

.security-disclaimer {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .security-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .security-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .security-pillars {
    grid-template-columns: 1fr;
  }
}

/* ==================== RESPONSIBLE GAMING ==================== */
#responsible-gaming-mahadev-book {
  background-color: var(--bg-primary);
}

.rg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rg-intro {
  text-align: center;
  margin-bottom: 40px;
}

.rg-intro h2 {
  color: var(--gold);
}

.rg-guidelines {
  max-width: 800px;
  margin: 0 auto;
}

.rg-line {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.rg-line:last-child {
  border-bottom: none;
}

.rg-index {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  min-width: 40px;
}

.rg-text h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 5px;
}

.rg-text p {
  font-size: 15px;
  margin: 0;
}

.rg-commitment {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .rg-line {
    flex-direction: column;
    gap: 5px;
  }
}

/* ==================== LEGAL COMPLIANCE ==================== */
#mahadev-legal-compliance {
  background-color: var(--bg-secondary);
}

.legal-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-heading {
  text-align: center;
  margin-bottom: 40px;
}

.legal-heading h2 {
  color: var(--gold);
}

.legal-blocks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.legal-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: border-color 0.3s;
}

.legal-block:hover {
  border-color: var(--gold);
}

.legal-block h3 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 10px;
}

.legal-block p {
  font-size: 13px;
  margin: 0;
}

.legal-closure {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .legal-blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .legal-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .legal-blocks {
    grid-template-columns: 1fr;
  }
}

/* ==================== TRUST SECTION ==================== */
.mahadev-trust-section {
  background-color: var(--bg-primary);
}

.mahadev-trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mahadev-trust-title {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.mahadev-trust-title span {
  color: var(--gold);
}

.mahadev-trust-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.mahadev-trust-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mahadev-trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: border-color 0.3s;
}

.mahadev-trust-card:hover {
  border-color: var(--gold);
}

.mahadev-trust-card h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
}

.mahadev-trust-card p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 1024px) {
  .mahadev-trust-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .mahadev-trust-points {
    grid-template-columns: 1fr;
  }
}

/* ==================== SUPPORT SECTION ==================== */
#mahadev-support {
  background-color: var(--bg-secondary);
}

.support-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.support-image {
  flex: 1;
}

.support-image-frame {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.support-image img {
  width: 100%;
  display: block;
}

.support-content {
  flex: 1;
}

.support-content h2 {
  color: var(--gold);
  margin-bottom: 20px;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  transition: border-color 0.3s;
}

.support-card:hover {
  border-color: var(--gold);
}

.support-card h3 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 5px;
}

.support-card p {
  font-size: 13px;
  margin: 0;
}

@media (max-width: 768px) {
  .support-container {
    flex-direction: column;
  }
  .support-cards {
    grid-template-columns: 1fr;
  }
}

/* ==================== FEATURES SECTION ==================== */
.mahadev-features-section {
  background-color: var(--bg-primary);
}

.mahadev-features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mahadev-features-title {
  text-align: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.mahadev-features-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.mahadev-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mahadev-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.mahadev-feature-card:hover {
  border-color: var(--gold);
}

.feature-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  opacity: 0.5;
}

.mahadev-feature-card h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
}

.mahadev-feature-card p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 1024px) {
  .mahadev-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .mahadev-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== VERIFICATION PROCESS ==================== */
#mahadev-verification-process {
  background-color: var(--bg-secondary);
}

.verification-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.verification-header {
  text-align: center;
  margin-bottom: 40px;
}

.verification-header h2 {
  color: var(--gold);
}

.verification-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.verification-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: border-color 0.3s;
}

.verification-step:hover {
  border-color: var(--gold);
}

.step-index {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  display: block;
  margin-bottom: 10px;
}

.verification-step h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
}

.verification-step p {
  font-size: 14px;
  margin: 0;
}

.verification-note {
  margin-top: 40px;
  background: rgba(248, 255, 19, 0.05);
  border-left: 4px solid var(--gold);
  padding: 20px;
  border-radius: 0 8px 8px 0;
}

.verification-note h4 {
  color: var(--gold);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .verification-steps {
    grid-template-columns: 1fr;
  }
}

/* ==================== INDIA TRUST ==================== */
#mahadev-india-trust {
  background-color: var(--bg-primary);
}

.india-trust-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.india-trust-heading {
  text-align: center;
  margin-bottom: 40px;
}

.india-trust-heading h2 {
  color: var(--gold);
}

.india-trust-rail {
  max-width: 800px;
  margin: 0 auto;
}

.trust-rail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.rail-marker {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.rail-content h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 5px;
}

.rail-content p {
  font-size: 15px;
  margin: 0;
}

.india-trust-strip {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .trust-rail-item {
    flex-direction: column;
    gap: 5px;
  }
}

/* ==================== SEARCH FAQS ==================== */
#mahadev-search-faqs {
  background-color: var(--bg-secondary);
}

.mahadev-search-faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mahadev-search-faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.mahadev-search-faq-header h2 {
  color: var(--gold);
}

.mahadev-search-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.mahadev-search-faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 10px;
  transition: border-color 0.3s;
}

.mahadev-search-faq-list details:hover {
  border-color: var(--gold);
}

.mahadev-search-faq-list summary {
  padding: 18px 20px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.mahadev-search-faq-list summary::-webkit-details-marker {
  display: none;
}

.mahadev-search-faq-list summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  color: var(--gold);
  font-size: 20px;
}

.mahadev-search-faq-list details[open] summary::after {
  content: '−';
}

.mahadev-search-faq-list details p {
  padding: 0 20px 20px 20px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

/* ==================== UPDATES ==================== */
#mahadev-updates {
  background-color: var(--bg-primary);
}

.mahadev-updates-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mahadev-updates-header {
  text-align: center;
  margin-bottom: 40px;
}

.mahadev-updates-header h2 {
  color: var(--gold);
}

.mahadev-update-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.update-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: border-color 0.3s;
}

.update-item:hover {
  border-color: var(--gold);
}

.update-tag {
  display: inline-block;
  background: rgba(248, 255, 19, 0.1);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--gold);
}

.update-item h3 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 10px;
}

.update-item p {
  font-size: 13px;
  margin: 0;
}

.mahadev-update-footer {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .mahadev-update-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .mahadev-update-feed {
    grid-template-columns: 1fr;
  }
}

/* ==================== TRUSTED BRAND ==================== */
#mahadev-trusted-brand {
  background-color: var(--bg-secondary);
}

.trusted-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trusted-brand-image {
  flex: 1;
}

.trusted-brand-image .image-frame {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.trusted-brand-image img {
  width: 100%;
  display: block;
}

.trusted-brand-content {
  flex: 1;
}

.brand-tag {
  display: inline-block;
  background: rgba(248, 255, 19, 0.1);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid var(--gold);
  margin-bottom: 15px;
}

.trusted-brand-content h2 {
  color: var(--gold);
  margin-bottom: 20px;
}

.brand-note {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 20px;
}

@media (max-width: 768px) {
  .trusted-brand-wrapper {
    flex-direction: column;
  }
}

/* ==================== USER TESTIMONIALS ==================== */
.user-testimonials {
  background-color: var(--bg-primary);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-badge {
  display: inline-block;
  background: rgba(248, 255, 19, 0.1);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid var(--gold);
  margin-bottom: 15px;
}

.testimonials-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.trust-metrics {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.metric-item {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.metric-label {
  color: var(--text-secondary);
  font-size: 14px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: var(--gold);
}

.testimonial-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(248, 255, 19, 0.1);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.user-info {
  display: flex;
  gap: 15px;
}

.user-avatar {
  position: relative;
  width: 60px;
  height: 60px;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.verified-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 2px solid var(--bg-card);
}

.user-details h4 {
  font-size: 16px;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.user-location,
.user-join-date {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
}

.rating {
  text-align: right;
}

.stars {
  color: var(--gold);
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
}

.rating-text {
  color: var(--text-muted);
  font-size: 12px;
}

.testimonial-content {
  margin: 15px 0;
}

.testimonial-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.experience-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.detail-tag {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 11px;
  color: var(--text-secondary);
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-size: 12px;
  color: var(--text-muted);
}

.verified-badge {
  background: rgba(76, 175, 80, 0.1);
  color: var(--success);
  padding: 4px 10px;
  border-radius: 30px;
  border: 1px solid var(--success);
}

.verification-note {
  margin-top: 40px;
}

.verification-note h4 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

.verification-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.verification-step {
  text-align: center;
}

.step-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

.verification-step h5 {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 5px;
}

.verification-step p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.submit-testimonial {
  text-align: center;
  margin-top: 40px;
}

.submit-testimonial h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.submit-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  margin: 15px 0;
  border: 2px solid var(--gold);
  transition: all 0.3s;
}

.submit-btn:hover {
  background: transparent;
  color: var(--gold);
}

.small-note {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .verification-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .verification-steps {
    grid-template-columns: 1fr;
  }
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ==================== RELATED KEYWORDS ==================== */
.related-keywords {
  background-color: var(--bg-primary);
  padding: 40px 20px;
  text-align: center;
}

.related-keywords h2 {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 30px;
}

.keywords-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.keyword {
  display: inline-block;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: border-color 0.3s, color 0.3s;
}

.keyword:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==================== DISCLAIMER SECTION ==================== */
.mahadev-disclaimer-section {
  background-color: var(--bg-secondary);
  padding: 60px 0;
}

.mahadev-disclaimer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mahadev-disclaimer-title {
  color: var(--gold);
  text-align: center;
  margin-bottom: 30px;
}

.mahadev-disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
}

.mahadev-disclaimer-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.mahadev-disclaimer-note {
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 30px;
  text-align: center;
}

/* ==================== MAHADEV BOOK HOMEPAGE END ==================== */

/* ==================== FIX CARD SECTION ALIGNMENT ==================== */
/* Remove global section styling from specific card sections */
.hot-matches-section,
.instant-games-section,
.live-casino-section,
.virtual-sports-section,
.top-slots-section,
.categories-section,
.sports-vertical-list,
.matches-grid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: transparent !important;
  border-bottom: none !important;
}

/* Restore original heading styles inside these sections */
.hot-matches-section h2,
.instant-games-section h2,
.live-casino-section h2,
.virtual-sports-section h2,
.top-slots-section h2,
.categories-section h2,
.sports-vertical-list h2,
.matches-header h2 {
  font-size: 18px !important;
  margin-bottom: 12px !important;
  color: #ffffff !important;
}

/* Ensure any other heading levels are not affected */
.hot-matches-section h3,
.instant-games-section h3,
.live-casino-section h3,
.virtual-sports-section h3,
.top-slots-section h3 {
  font-size: 16px !important;
  margin-bottom: 10px !important;
  color: #ffffff !important;
}

.hot-matches-section .container,
.instant-games-section .container {
  max-width: none !important;
  padding: 0 !important;
}

/* ===============================
   Mahadev Book WhatsApp Floating CTA
================================ */

.mahadevbook-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;
  background: #25d366;
  color: #ffffff;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;

  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mahadevbook-whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
}

/* WhatsApp Icon Wrapper */
.mahadevbook-whatsapp-float .whatsapp-icon {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mahadevbook-whatsapp-float .whatsapp-icon svg {
  width: 22px;
  height: 22px;
}

/* Text */
.mahadevbook-whatsapp-float .whatsapp-text {
  white-space: nowrap;
}

/* Mobile Optimization */
@media (max-width: 576px) {
  .mahadevbook-whatsapp-float {
    padding: 12px;
  }

  .mahadevbook-whatsapp-float .whatsapp-text {
    display: none;
  }
}

.mahadevbook-whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  animation: whatsappPulse 2.5s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
}

/* ========== NEW SECTIONS STYLES ========== */

/* --- Intro Section --- */
.mahadev-intro {
  background: linear-gradient(135deg, #1a1e26 0%, #0f1117 100%);
  padding: 5rem 0;
}
.intro-content h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.intro-content h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.intro-lead {
  font-size: 1.3rem;
  color: #f1f5f9;
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.expectations {
  margin: 3rem 0;
}
.expectations h3 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.expect-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 40px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  transition: border-color 0.2s;
}
.expect-item i {
  color: var(--gold);
  width: 24px;
}
.expect-item:hover {
  border-color: var(--gold);
}
.explore-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-color);
}
.explore-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #f1f5f9;
}

/* --- Comparison Table (already defined in original CSS, but ensure it's present) --- */
.comparison-section {
  background: var(--bg-primary);
  padding: 4rem 0;
}
.table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
  background: var(--bg-card);
  border-radius: 28px;
  border: 1px solid var(--border-color);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.compare-table th {
  background: #0f2b3d;
  color: var(--gold);
  padding: 16px 20px;
  font-weight: 600;
  text-align: left;
}
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table .feature-name {
  font-weight: 600;
  background: #1a1f2b;
  width: 28%;
}

/* --- Journey CTA --- */
.journey-cta {
  background: linear-gradient(115deg, #0f2b3d 0%, #1d4a64 100%);
  padding: 4rem 0;
  text-align: center;
}
.journey-content h2 {
  color: var(--gold);
  margin-bottom: 1rem;
}
.journey-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.journey-content .btn-primary {
  background: var(--gold);
  color: #0f1117;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 60px;
  font-weight: 700;
  transition: all 0.2s;
}
.journey-content .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(248, 255, 19, 0.5);
}

/* --- ID Details Section --- */
.id-details {
  background: var(--bg-primary);
  padding: 4rem 0;
}
.id-details h3 {
  color: var(--gold);
  margin: 2rem 0 1rem;
}
.id-details h3:first-of-type {
  margin-top: 0;
}
.id-explanation p {
  margin-bottom: 1rem;
}
.steps-to-get .numbered-steps {
  margin: 1.5rem 0;
}
.steps-to-get .numbered-steps li {
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
}
.steps-to-get .numbered-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background: var(--gold);
  color: #0f1117;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.steps-to-get ol {
  counter-reset: step-counter;
}
.steps-to-get .numbered-steps a {
  color: var(--gold);
  text-decoration: underline;
}
.cta-center {
  text-align: center;
  margin: 2rem 0;
}
.safe-registration {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.security-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.security-features span {
  background: rgba(248, 255, 19, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.9rem;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.login-methods .two-columns {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
}
.login-methods .col {
  flex: 1;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
}
.login-methods .col h4 {
  margin-bottom: 1rem;
  color: var(--gold);
}
.login-methods .col ul {
  list-style: none;
  padding: 0;
}
.login-methods .col li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.login-methods .col li::before {
  content: "✓";
  color: var(--gold);
  position: absolute;
  left: 0;
}
.key-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.key-features .feature-card,
.why-choose .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}
.key-features .feature-card:hover,
.why-choose .feature-card:hover {
  border-color: var(--gold);
}
.key-features .feature-card i,
.why-choose .feature-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: inline-block;
}
.key-features .feature-card h4,
.why-choose .feature-card h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--text-primary);
}
.popular-games .games-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}
.badge {
  background: rgba(248, 255, 19, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.9rem;
  border: 1px solid var(--gold);
  color: var(--text-secondary);
}
.live-betting ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.live-betting ul li {
  background: var(--bg-card);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  transition: border-color 0.2s;
}
.live-betting ul li:hover {
  border-color: var(--gold);
}
.why-choose .features-grid {
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .login-methods .two-columns {
    flex-direction: column;
  }
  .expect-grid {
    grid-template-columns: 1fr;
  }
  .security-features span {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}