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

body {
  font-family: Arial, sans-serif;
  background-image: linear-gradient(#0d4e72, #18b0c8);
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
}

/* ── Ticker Bar ── */
.ticker-bar {
  background: #045662;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  font-size: 12px;
  min-height: 30px;
  --duration: 20s;
  --delay: 0s;
  --direction: normal;
  --play: running;
  --iteration-count: infinite;
  --min-width: 100%;
}

/* Clip zone — only text scrolls inside here */
.ticker-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-text {
  flex: 0 0 auto;
  min-width: var(--min-width);
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
  animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
  animation-play-state: var(--play);
  animation-delay: var(--delay);
  animation-direction: var(--direction);
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.ticker-date {
  white-space: nowrap;
  font-size: 12px;
  color: #aef;
  flex-shrink: 0;
}

/* ── Header ── */
.site-header {
  background-image: linear-gradient(#022c43, #18b0c8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px 18px;
  min-height: 48px;
  overflow: visible;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.brand-logo {
  height: 64px;
  width: auto;
  display: block;
}

.logo-circle {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #006868;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
}

.logo-sub {
  color: #aef;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-pills {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.header-metric-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
  min-width: 78px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, #2f8fbe, #165f86);
  color: #fff;
  padding: 0 8px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.header-metric-btn-exposure {
  background: linear-gradient(180deg, #2d84ad, #145476);
}

.header-metric-label {
  color: #f3d65c;
  font-size: 9px;
  letter-spacing: 0.2px;
}

.header-metric-text {
  line-height: 1;
}

.coin-wrap {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.demo-account-ribbon {
  position: absolute;
  top: -9px;
  left: 56%;
  transform: translateX(-50%);
  background: #ff1010;
  color: #fff;
  border-radius: 3px;
  font-size: 10px;
  line-height: 1;
  padding: 3px 10px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.btn-login {
  background: linear-gradient(180deg, #18b0c8, #022c43);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 10px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  filter: brightness(1.2);
}

.btn-login:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.btn-register {
  background: transparent;
  color: #00aaaa;
  border: 2px solid #00aaaa;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all .2s;
}

.btn-register:hover {
  background: #00aaaa;
  color: #fff;
}

/* ── Navigation ── */
.main-nav {
  background: #045662;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 44px;
  overflow: visible;
}

.nav-list {
  display: flex;
  list-style: none;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  height: 100%;
  align-items: center;
}

.nav-list::-webkit-scrollbar {
  display: none;
}

.nav-item {
  display: flex;
  align-items: stretch;
  height: 100%;
  overflow: visible;
}

.nav-item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 100%;
  color: #fff;
  text-decoration: none;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s, color .2s;
  border-bottom: 3px solid transparent;
}

.nav-item.active a,
.nav-item a:hover {
  background: rgba(0, 200, 200, .12);
  color: #fff;
  border-bottom-color: #00cccc;
}

.nav-item.ipl a {
  color: #ffd700;
}

.live-badge {
  background-image: linear-gradient(180deg, #fb3434, #e80505);
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 7px;
  height: 10px;
  line-height: 10px;
  padding: 0 2px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
}

.live-badge strong {
  font-weight: 700;
  font-style: normal;
  font-size: 7px;
  letter-spacing: 0.2px;
}

.badge-count {
  background: #fff;
  color: #cc0000;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 900;
}

/* ── Slider / Hero ── */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  height: 480px;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity .5s;
}

.slide.active {
  display: block;
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: background .2s;
}

.dot.active {
  background: #00cccc;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .5);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.slider-arrow:hover {
  background: rgba(0, 170, 170, .7);
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

/* ── Sport Cards ── */
.sport-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: #f0f0f0;
}

.sport-card {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  color: #fff;
  cursor: pointer;
  transition: filter .2s, transform .2s;
}

.sport-card:hover {
  filter: brightness(1.1);
  transform: scale(1.01);
}

.sport-card.cricket {
  background: linear-gradient(to right, rgba(0,30,80,.55), rgba(0,0,0,.2)),
              url('/images/slider-radhe-2nd/img1.webp') center/cover no-repeat;
}

.sport-card.slot {
  background: linear-gradient(to right, rgba(0,0,0,.55), rgba(0,0,0,.2)),
              url('/images/slider-radhe-2nd/img2.webp') center/cover no-repeat;
}

.sport-card.tennis {
  background: linear-gradient(to right, rgba(0,30,80,.55), rgba(0,0,0,.2)),
              url('/images/slider-radhe-2nd/img3.webp') center/cover no-repeat;
}

.sport-card::before {
  display: none;
}

.sport-text p {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.sport-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.sport-name {
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  margin-top: 4px;
}

/* ── Promo Banners ── */
.promo-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: #f0f0f0;
}

.promo-card {
  overflow: hidden;
  cursor: pointer;
  transition: filter .2s;
  line-height: 0;
}

.promo-card:hover {
  filter: brightness(1.1);
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Section Heading ── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 6px;
}

.section-head h2 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  font-family: 'Roboto Condensed', sans-serif;
  text-align: left;
}

.see-all {
  color: #007a7a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.see-all:hover {
  color: #fff;
}

/* ── Top Games Carousel ── */
.games-section {
  background: #f0f0f0;
  padding: 0 0 20px;
}

.games-carousel-wrap {
  overflow: hidden;
  width: 100%;
}

.games-carousel {
  display: flex;
  gap: 8px;
  padding: 0 8px;
  transition: transform 0.4s ease;
  width: max-content;
}

.game-card {
  flex-shrink: 0;
  width: 160px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #1a2030;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Live Casino Section ── */
.live-casino-section {
  background: #0d1117;
  padding: 0 16px 20px;
}

.live-casino-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.live-card {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s;
  background: #1a2030;
  aspect-ratio: 1;
}

.live-card:hover {
  transform: scale(1.04);
}

.live-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Footer ── */
.site-footer {
  background: #001a1a;
  border-top: 2px solid #005555;
  padding: 30px 24px 16px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 24px;
}

.footer-brand .logo-main {
  font-size: 20px;
}

.footer-brand p {
  color: #888;
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #00cccc;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #003333;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: #555;
  font-size: 12px;
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.badge-item {
  background: #003333;
  color: #00cccc;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 1px;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .live-casino-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .sport-cards {
    grid-template-columns: 1fr;
  }

  .promo-banners {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .hero-slider {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .promo-label {
    font-size: 28px;
  }

  .hero-slider {
    height: 160px;
  }

  .site-header {
    padding: 8px 12px;
  }

  .logo-main {
    font-size: 16px;
  }
}

@media (max-width: 374px) {

  .btn-login,
  .login-btn {
    font-size: 9px;
    padding: 2px 10px;
    gap: 3px;
  }
}

/* ── Sports Odds Sections ── */
.odds-wrapper {
  background: #e8e8e8;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.odds-section {
  background: #fff;
  border: 1px solid #ddd;
}

.odds-header {
  background: #18b0c8;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  font-family: 'Roboto Condensed', sans-serif;
}

.odds-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px 2px;
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

.odds-table thead tr th {
  text-align: center;
  padding: 4px 2px;
  font-weight: 700;
  color: #333;
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif;
  border-bottom: 1px solid #eee;
}

.odds-table thead th.col-match {
  width: 45%;
  text-align: left;
}

.odds-table thead th.col-icons {
  width: 8%;
}

.odds-table thead th.col-group {
  width: 7.8%;
}

.odds-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}

.odds-table tbody tr:last-child {
  border-bottom: none;
}

.match-info {
  padding: 7px 12px;
  color: #222;
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

.match-date {
  color: #555;
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

.live-dot {
  color: #22cc44;
  font-size: 10px;
}

.live-now {
  color: #18b0c8;
  font-weight: 700;
  font-size: 11px;
}

.match-icons {
  text-align: right;
  padding: 4px 6px;
  white-space: nowrap;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  border-radius: 3px;
  font-size: 10px;
  padding: 2px 4px;
  margin-left: 2px;
  color: #333;
}

.odds-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.icon-box.teal {
  background: #18b0c8;
  color: #fff;
}

.icon-box.dark {
  background: #555;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.odd {
  text-align: center;
  padding: 5px 2px;
  font-size: 14px;
  font-weight: 700;
  min-width: 44px;
  cursor: pointer;
  border-radius: 4px;
}

.odd.back {
  background: #72bbef;
  color: #000;
}

.odd.lay {
  background: #faa9ba;
  color: #000;
}

.odd.back:empty,
.odd.lay:empty {
  background: #c8dff0;
}

.odd.lay:empty {
  background: #f5ccd4;
}

.view-more {
  text-align: right;
  padding: 5px 12px;
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: #333;
  border-top: 1px solid #eee;
  cursor: pointer;
}

.view-more:hover {
  color: #18b0c8;
}

/* ── Racing Sections ── */
.racing-section {
  background: #fff;
  border-top: 1px solid #ddd;
}

.racing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 8px 0;
}

.racing-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-right: 1px solid #e0e0e0;
  cursor: pointer;
}

.racing-card:last-child {
  border-right: none;
}

.racing-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.racing-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.racing-name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.racing-time {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

/* ── APK Banner ── */
.apk-banner {
  line-height: 0;
  padding: 8px;
  background: #e8e8e8;
}

.apk-banner img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* ── Footer ── */
.site-footer {
  background: #045662;
  padding: 16px 24px 12px;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.footer-logos img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-disclaimer {
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  padding-top: 10px;
  line-height: 1.5;
}

/* Home login modal */
.home-login-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  padding: 20px;
}

.home-login-modal.open {
  display: flex;
}

.home-login-dialog {
  width: min(500px, 95vw);
  background: #f5f5f5;
  border: 5px solid #19b9de;
  border-radius: 14px;
  padding: 10px 16px 14px;
  position: relative;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}

.home-login-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.home-login-title {
  text-align: center;
  color: #111;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  margin: 2px 0 8px;
  font-family: 'Roboto Condensed', sans-serif;
}

.home-login-form {
  display: block;
}

.home-login-label {
  display: block;
  color: #222;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 8px 0 6px;
}

.home-login-input {
  width: 100%;
  height: 42px;
  border: 1px solid #6b6b6b;
  border-radius: 12px;
  background: #f0f0f0;
  color: #222;
  padding: 0 12px;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
}

.home-login-input::placeholder {
  color: #777;
}

.home-remember-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.home-remember-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2a2a2a;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
}

.home-remember-label input {
  width: 14px;
  height: 14px;
}

.home-password-wrap {
  position: relative;
}

.home-eye-btn {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}

.home-captcha-box {
  margin-top: 10px;
  border: 1px solid #999;
  border-radius: 12px;
  padding: 10px;
  background: #d8d8d8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8px;
}

.home-captcha-question {
  background: repeating-linear-gradient(-45deg, #c2d4f5, #c2d4f5 8px, #d8e4fa 8px, #d8e4fa 16px);
  border: 1px solid #a0a0a0;
  border-radius: 8px;
  color: #1f507e;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  white-space: nowrap;
  letter-spacing: 0;
}

.home-captcha-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-captcha-input {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: 1px solid #8e8e8e;
  border-radius: 8px;
  background: #f0f0f0;
  color: #222;
  padding: 0 12px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
}

.home-captcha-input::placeholder {
  color: #777;
}

.home-captcha-refresh {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.home-login-error {
  min-height: 20px;
  margin: 8px 0;
  color: #cc2020;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.home-login-btn {
  width: 100%;
  height: 42px;
  border: 1px solid #1d7f9a;
  border-radius: 6px;
  margin-top: 6px;
  background: linear-gradient(180deg, #67d6ea 0%, #0f6f8e 100%);
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

.home-login-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.mobile-menu-btn {
  display: none;
}

.mobile-bottom-nav {
  display: none;
}

.right-sidebar-backdrop,
.right-sidebar {
  display: none;
}

@media (max-width: 991px) {
  .home-login-dialog {
    width: min(700px, 96vw);
    border-width: 4px;
    padding: 12px 14px 14px;
  }

  .home-login-title {
    font-size: 30px;
  }

  .home-login-label {
    font-size: 17px;
  }

  .home-login-input {
    height: 40px;
    border-radius: 12px;
    font-size: 16px;
  }

  .home-remember-label {
    font-size: 13px;
  }

  .home-remember-label input {
    width: 18px;
    height: 18px;
  }

  .home-captcha-box {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .home-captcha-question,
  .home-captcha-input {
    height: 40px;
    font-size: 16px;
  }

  .home-login-btn {
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    background: #e8e8e8;
    padding-bottom: 62px;
  }

  .ticker-bar {
    padding: 4px 8px;
    font-size: 10px;
    min-height: 24px;
    gap: 6px;
  }

  .ticker-date {
    font-size: 10px;
  }

  .site-header {
    min-height: 56px;
    padding: 8px 10px;
    justify-content: space-between;
    gap: 8px;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }

  .header-logo {
    flex: 1;
  }

  .brand-logo {
    height: 44px;
  }

  .btn-login {
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .header-metric-btn {
    min-width: 74px;
    height: 20px;
    padding: 0 7px;
    gap: 4px;
    font-size: 10px;
  }

  .header-metric-label {
    font-size: 9px;
  }

  .demo-account-ribbon {
    top: -8px;
    font-size: 9px;
    padding: 2px 8px;
  }

  .main-nav {
    height: 42px;
  }

  .nav-item a {
    font-size: 13px;
    padding: 0 11px;
  }

  .live-badge {
    top: 2px;
  }

  .hero-slider {
    height: 180px;
  }

  .slider-arrow {
    display: none;
  }

  .sport-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 6px;
    background: #fff;
  }

  .sport-card {
    height: 86px;
    border-radius: 4px;
    padding: 0;
  }

  .promo-banners {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 0 0 6px;
    background: #fff;
  }

  .promo-card img {
    height: 48px;
  }

  .games-section {
    background: #fff;
    padding-bottom: 8px;
  }

  .section-head {
    padding: 8px 8px 6px;
  }

  .games-carousel {
    gap: 6px;
    padding: 0 6px;
  }

  .game-card {
    width: 92px;
    border-radius: 4px;
  }

  .odds-wrapper {
    padding: 0;
    gap: 6px;
    background: #e8e8e8;
  }

  .odds-header {
    font-size: 14px;
    padding: 6px 8px;
  }

  .odds-table {
    font-size: 12px;
    border-spacing: 1px;
    table-layout: fixed;
  }

  .odds-table thead th.col-icons,
  .match-icons {
    display: none;
  }

  .odds-table thead th.col-match {
    width: 56%;
  }

  .odds-table thead th.col-group {
    width: 14.66%;
  }

  .odds-table thead tr th {
    font-size: 11px;
    padding: 3px 2px;
  }

  .match-info,
  .match-date {
    font-size: 11px;
    line-height: 1.2;
    padding: 6px 5px;
  }

  .live-now {
    font-size: 11px;
  }

  .odd {
    min-width: 0;
    font-size: 12px;
    padding: 6px 2px;
  }

  .view-more {
    font-size: 12px;
    padding: 5px 8px;
  }

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

  .racing-card {
    padding: 8px 8px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    gap: 8px;
  }

  .racing-icon {
    width: 30px;
    height: 30px;
  }

  .racing-name,
  .racing-time {
    font-size: 12px;
  }

  .apk-banner {
    padding: 6px 6px 8px;
  }

  .site-footer {
    padding: 10px 8px 12px;
  }

  .footer-logos {
    gap: 10px;
    padding-bottom: 8px;
  }

  .footer-logos img {
    height: 20px;
  }

  .footer-disclaimer {
    font-size: 11px;
    padding-top: 8px;
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: #045662;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 500;
  }

  .mobile-bottom-item {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Roboto Condensed', sans-serif;
  }

  .mobile-bottom-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 8px;
    transition: background 0.2s ease, gap 0.2s ease, padding 0.2s ease;
  }

  .mobile-bottom-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-bottom-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .mobile-bottom-icon-mini {
    width: 24px;
    height: 24px;
  }

  .mobile-bottom-label {
    display: none;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-bottom-item.active {
    color: #fff;
  }

  .mobile-bottom-item.active .mobile-bottom-content {
    background: #2ab4c8;
    gap: 6px;
    padding: 0 12px;
  }

  .mobile-bottom-item.active .mobile-bottom-label {
    display: inline-block;
  }

  .right-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 650;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .right-sidebar-backdrop.show {
    opacity: 1;
    pointer-events: auto;
  }

  .right-sidebar {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(330px, 84vw);
    height: 100vh;
    background: rgb(4, 86, 98);
    color: rgb(161, 174, 212);
    z-index: 700;
    padding: 12px 0 16px;
    transform: translateX(100%);
    transition: transform 0.24s ease;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    line-height: 1.5;
  }

  .right-sidebar.open {
    transform: translateX(0);
  }

  .right-sidebar-close {
    position: absolute;
    top: 6px;
    right: 10px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
  }

  .right-sidebar-profile {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 700;
    padding: 18px 14px 10px;
  }

  .right-sidebar-user-icon {
    font-size: 13px;
  }

  .right-sidebar-wallet-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 0 8px;
  }

  .right-sidebar-wallet-box {
    background: #1ab3c6;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    padding: 6px 8px;
    min-height: 44px;
  }

  .wallet-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
  }

  .wallet-value {
    color: #003d47;
    font-size: 14px;
    font-weight: 700;
  }

  .right-sidebar-links {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
  }

  .right-sidebar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
  }

  .right-sidebar-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
  }

  body.right-sidebar-open {
    overflow: hidden;
  }
}
