/* ============================================
   9WICKETS CLONE — style.css
   ============================================ */

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

:root {
  --yellow: #f4be16;
  --red: #d51d23;
  --dark-navy: #13212b;
  --black: #0a0f14;
  --card-label-bg: rgba(0,0,0,0.82);
  --header-height: 72px;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  background: #0e1b23;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--yellow);
  height: var(--header-height);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 10px;
  max-width: 1200px;
  margin: 0 auto;
}

/* LOGO */
.logo-wrap a {
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  align-items: baseline;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}

.logo-num {
  font-size: 2.8rem;
  color: #111;
  line-height: 1;
  font-style: italic;
  position: relative;
}

.logo-num::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.logo-wkt {
  font-size: 1.6rem;
  color: #111;
  letter-spacing: 1px;
  font-style: italic;
}

.logo-strike {
  position: relative;
}

.logo-strike::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -1px;
  right: -1px;
  height: 2.5px;
  background: var(--red);
  transform: rotate(-10deg);
}

/* HEADER BUTTONS */
.header-btns {
  display: flex;
  gap: 6px;
  align-items: center;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  height: 38px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: filter 0.15s, transform 0.1s;
  text-transform: uppercase;
}

.btn-header:active {
  transform: scale(0.97);
}

.btn-header i {
  font-size: 0.85rem;
}

.btn-agent {
  background: linear-gradient(180deg, #e83030 0%, #a31010 50%, #c01414 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 2px 6px rgba(0,0,0,0.4);
}

.btn-agent:hover {
  filter: brightness(1.1);
}

.btn-login {
  background: linear-gradient(180deg, #e83030 0%, #a31010 50%, #c01414 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 2px 6px rgba(0,0,0,0.4);
}

.btn-login:hover {
  filter: brightness(1.1);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   YELLOW DIVIDER
   ============================================ */
.yellow-divider {
  height: 3px;
  background: var(--yellow);
  width: 100%;
}

/* ============================================
   PROMO SLIDER
   ============================================ */
.promo-slider {
  position: relative;
  overflow: hidden;
  height: 105px;
  background: #000;
}

.slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.4s ease;
}

.slide {
  width: calc(100% / 3);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-1 {
  background: radial-gradient(ellipse at center, #3a1200 0%, #0a0600 100%);
}

.slide-2 {
  background: radial-gradient(ellipse at center, #0a1a3a 0%, #030810 100%);
}

.slide-3 {
  background: radial-gradient(ellipse at center, #1a0a00 0%, #0a0600 100%);
}

/* Fire glow effect */
.slide-1::before, .slide-2::before, .slide-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(255,120,0,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.slide-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 36px 0 10px;
  gap: 6px;
}

.slide-left-brand {
  flex-shrink: 0;
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ipl-logo {
  width: 60px;
  height: auto;
}

.ipl-text-fallback {
  font-size: 0.7rem;
  color: var(--yellow);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.premier-logos, .champions-badge {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pl-badge, .bl-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
}

.champions-badge {
  background: rgba(0,100,200,0.3);
  border: 1px solid rgba(100,150,255,0.3);
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #cde;
  text-align: center;
}

.slide-center {
  flex: 1;
  text-align: center;
  padding: 0 4px;
}

.slide-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  font-style: italic;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(244,190,22,0.6);
  margin-bottom: 4px;
}

.slide-logo-text span {
  position: relative;
  display: inline-block;
}

.slide-logo-text span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -1px;
  right: -1px;
  height: 2px;
  background: var(--red);
  transform: rotate(-5deg);
}

.slide-bn-text {
  font-size: 0.72rem;
  line-height: 1.5;
  color: #ffe890;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.slide-right {
  flex-shrink: 0;
  width: 20%;
  text-align: center;
  font-size: 2rem;
  filter: drop-shadow(0 0 8px rgba(255,200,0,0.5));
}

.player-silhouette {
  font-size: 2.2rem;
  line-height: 1;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: rgba(255,255,255,0.8);
  width: 26px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 0.75rem;
  transition: background 0.2s;
}

.slider-btn:hover { background: rgba(0,0,0,0.7); }

.slider-prev { left: 0; border-radius: 0 4px 4px 0; }
.slider-next { right: 0; border-radius: 4px 0 0 4px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

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

.dot.active {
  background: var(--yellow);
}

/* ============================================
   HERO SPORTS CARD
   ============================================ */
.hero-card-wrap {
  position: relative;
}

.hero-card {
  display: block;
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.1) 50%,
    rgba(0,0,0,0.75) 100%
  );
}

/* Live Panel */
.live-panel {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 8px 10px;
  min-width: 88px;
  backdrop-filter: blur(2px);
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--red);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: blink 1s infinite;
  position: relative;
}

.live-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  animation: ripple 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes ripple {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #eee;
  margin-bottom: 4px;
  gap: 8px;
}

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

.live-count {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 0 5px;
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
}

/* Card Bottom Bar (shared) */
.card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.82);
  padding: 7px 10px 7px 12px;
  z-index: 2;
}

.card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.play-now-btn {
  background: var(--yellow);
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ============================================
   DOUBLE HALF CARDS
   ============================================ */
.half-card-row {
  display: flex;
  gap: 2px;
}

.half-card {
  flex: 1;
  position: relative;
  height: 160px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.half-card-bg {
  position: absolute;
  inset: 0;
}

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

.half-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0.7) 100%
  );
}

.provider-label {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.prov-icon {
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 5px;
  border-radius: 3px;
  display: inline-block;
}

.provider-label.provider-right {
  left: auto;
  right: 10px;
  align-items: flex-end;
}

.ezugi-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  letter-spacing: 1px;
}

.ezugi-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   FULL WIDTH SABA CARD
   ============================================ */
.full-card-wrap {
  position: relative;
}

.full-card {
  display: block;
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  cursor: pointer;
}

.full-card-bg {
  position: absolute;
  inset: 0;
}

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

.full-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 20%,
    rgba(0,0,0,0.65) 100%
  );
}

.saba-logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  text-align: center;
  z-index: 2;
}

.saba-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 8px rgba(255,200,0,0.6));
}

.saba-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  line-height: 1;
}

.saba-text span {
  color: var(--red);
}

/* ============================================
   PROVIDER GRID
   ============================================ */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #070d11;
}

.grid-card {
  position: relative;
  height: 130px;
  overflow: hidden;
  display: block;
  cursor: pointer;
  background: #111820;
}

.grid-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.grid-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 20%,
    rgba(0,0,0,0.72) 100%
  );
  z-index: 1;
}

/* Theme art elements (emoji fallback) */
.aviator-bg { background: radial-gradient(circle at 50% 70%, #1a0000, #000); }
.blackjack-bg { background: radial-gradient(circle, #1a1200, #000); }
.mine-bg { background: radial-gradient(circle at center, #1a2a00, #000); }
.fc-bg { background: radial-gradient(circle, #1a0a00, #100); }
.tiger-bg { background: radial-gradient(circle at center, #2a0000, #000); }
.spade-bg { background: radial-gradient(circle at center, #0a001a, #000); }
.andar-bg { background: radial-gradient(circle, #1a1000, #000); }
.yl-bg { background: radial-gradient(circle, #001a10, #000); }
.jdb-bg { background: radial-gradient(circle, #1a1000, #000); }
.super-bg { background: radial-gradient(circle at center, #001020, #000); }
.number-bg { background: radial-gradient(circle at center, #1a1a00, #060600); }
.bigsmall-bg { background: radial-gradient(circle at center, #001a1a, #000); }
.joker-bg { background: radial-gradient(circle at center, #1a0010, #000); }
.dragon-bg { background: radial-gradient(circle at center, #1a0500, #000); }
.roulette-bg { background: radial-gradient(circle at center, #0a1a00, #000); }
.dus-bg { background: radial-gradient(circle at center, #1a001a, #000); }
.callbreak-bg { background: radial-gradient(circle at center, #001a0a, #000); }
.sicbo-bg { background: radial-gradient(circle at center, #0a0a1a, #000); }
.baccarat-bg { background: radial-gradient(circle at center, #1a0a10, #000); }
.bonus-bg { background: radial-gradient(circle at center, #1a1500, #000); }
.heist-bg { background: radial-gradient(circle at center, #001a1a, #000); }
.poker-bg { background: radial-gradient(circle at center, #0a0010, #000); }
.color-bg { background: radial-gradient(circle at center, #1a0510, #000); }
.cards32-bg { background: radial-gradient(circle at center, #001510, #000); }
.worli-bg { background: radial-gradient(circle at center, #1a0a00, #000); }
.lottery-bg { background: radial-gradient(circle at center, #001a05, #000); }
.fishing-bg { background: radial-gradient(circle at center, #001520, #000); }
.virtual-bg { background: radial-gradient(circle at center, #050015, #000); }

/* Art text overlays */
.aviator-art, .blackjack-art, .updown-label,
.mine-art, .fc-art, .tiger-art, .andar-text,
.spade-label, .yl-art, .jdb-art, .jdb-label,
.tp-label, .super-art, .super-label,
.number-art, .number-label, .bs-art, .bs-label,
.joker-art, .joker-label, .dragon-art, .dragon-label,
.roulette-art, .roulette-label, .dus-art, .dus-label,
.cb-art, .cb-label, .sicbo-art, .sicbo-label,
.baccarat-art, .baccarat-label, .bonus-art, .bonus-label,
.heist-art, .heist-label, .poker-art, .poker-label,
.color-art, .color-label, .cards32-art, .cards32-label,
.worli-art, .worli-label, .lottery-art, .lottery-label,
.fishing-art, .fishing-label, .virtual-art, .virtual-label,
.mine-label, .fc-label, .tiger-label {
  position: absolute;
  z-index: 2;
}

/* Center art emojis */
.aviator-art, .mine-art, .fc-art, .tiger-art,
.yl-art, .jdb-art, .super-art, .number-art,
.bs-art, .joker-art, .dragon-art, .roulette-art,
.dus-art, .cb-art, .sicbo-art, .baccarat-art,
.bonus-art, .heist-art, .poker-art, .color-art,
.cards32-art, .worli-art, .lottery-art, .fishing-art,
.virtual-art {
  font-size: 3rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

.blackjack-art { font-size: 2.5rem; top: 30%; left: 50%; transform: translate(-50%, -50%); }

/* Text overlays */
.bj-label {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.bj-title {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(244,190,22,0.7);
  white-space: nowrap;
  z-index: 2;
}

.updown-label {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.andar-text {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  text-align: center;
  line-height: 1.3;
}

.mine-label, .fc-label, .tiger-label, .spade-label,
.jdb-label, .tp-label, .super-label, .number-label,
.bs-label, .joker-label, .dragon-label, .roulette-label,
.dus-label, .cb-label, .sicbo-label, .baccarat-label,
.bonus-label, .heist-label, .poker-label, .color-label,
.cards32-label, .worli-label, .lottery-label, .fishing-label,
.virtual-label {
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.spade-label { color: #fff; font-size: 0.8rem; top: 10%; }

/* NEW badge */
.new-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--yellow);
  color: #111;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  z-index: 3;
  letter-spacing: 0.5px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0a0f14;
  padding: 16px 12px;
  text-align: center;
  border-top: 2px solid var(--yellow);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

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

.footer-links span {
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
}

.footer-note {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* ============================================
   BOTTOM NAVIGATION
   ============================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #192736 0%, #0f1d28 100%);
  height: 65px;
  display: flex;
  align-items: stretch;
  border-top: 1.5px solid rgba(255,255,255,0.07);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.5);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 4px;
}

.nav-item:hover {
  color: rgba(255,255,255,0.85);
}

.nav-item i {
  font-size: 1.25rem;
}

.nav-item span {
  font-size: 0.6rem;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52px;
  text-align: center;
}

/* Home icon — larger + highlighted */
.nav-home {
  color: #fff;
  position: relative;
}

.nav-home-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, #2a3d4e 0%, var(--dark-navy) 100%);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.4);
}

.nav-home .nav-home-icon i {
  font-size: 1.45rem;
  color: #fff;
}

.nav-home span {
  color: #fff;
  font-weight: 700;
}

/* ============================================
   DESKTOP / TABLET RESPONSIVE
   ============================================ */
@media (min-width: 600px) {
  .provider-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-card {
    height: 260px;
  }

  .half-card {
    height: 200px;
  }

  .full-card {
    height: 220px;
  }

  .grid-card {
    height: 160px;
  }

  .promo-slider {
    height: 130px;
  }

  .slide-bn-text {
    font-size: 0.85rem;
  }

  .slide-logo-text {
    font-size: 1.3rem;
  }
}

@media (min-width: 992px) {
  body {
    background: #08131a;
  }

  .main-content {
    padding: 0;
  }

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

  .hero-card {
    height: 300px;
  }

  .full-card {
    height: 250px;
  }

  .half-card {
    height: 240px;
  }

  .grid-card {
    height: 180px;
  }

  .promo-slider {
    height: 155px;
  }

  .slide-bn-text {
    font-size: 1rem;
  }

  .slide-logo-text {
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .play-now-btn {
    font-size: 0.82rem;
    padding: 5px 15px;
  }

  .btn-header {
    height: 42px;
    padding: 0 16px;
    font-size: 0.88rem;
  }
}

@media (max-width: 360px) {
  .btn-agent {
    padding: 0 7px;
    font-size: 0.72rem;
  }

  .btn-login {
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .logo-num {
    font-size: 2.2rem;
  }

  .logo-wkt {
    font-size: 1.3rem;
  }
}
