/* ============================================================
   WINUM CASINO — Main Stylesheet
   Target: winum-in.net | India Market | May 2026
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary:    #0d0d1a;
  --bg-secondary:  #13131f;
  --bg-card:       #1a1a2e;
  --bg-card2:      #1e1e30;
  --blue-main:     #1a6aff;
  --blue-light:    #4d8fff;
  --blue-dark:     #0f4acc;
  --accent-cyan:   #00d4ff;
  --text-white:    #ffffff;
  --text-gray:     #a0a8c0;
  --text-muted:    #6a718a;
  --border-color:  #252540;
  --gold:          #ffd700;
  --green:         #00c853;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow-blue:   0 4px 24px rgba(26,106,255,0.25);
  --shadow-card:   0 2px 16px rgba(0,0,0,0.45);
  --font-main:     'Inter', 'Segoe UI', Arial, sans-serif;
  --transition:    0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  /* prevent ANY child from causing horizontal scroll */
  max-width: 100%;
}

a { color: var(--blue-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-cyan); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--blue-dark); border-radius: 3px; }

/* ============================================================
   LAYOUT WRAPPER
   ============================================================ */
.site-wrapper {
  display: flex;
  min-height: 100vh;
  overflow-x: hidden; /* belt-and-suspenders: stop horizontal bleed */
  width: 100%;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  width: 200px;
  min-width: 200px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  z-index: 100;
  overflow-y: auto;
  padding-bottom: 16px;
}

.sidebar-logo {
  padding: 18px 16px 14px;
  border-bottom: 1px solid var(--border-color);
}
.sidebar-logo a { display: flex; align-items: center; gap: 8px; }
.sidebar-logo img { height: 32px; width: auto; }

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-gray);
  font-size: 14px;
  transition: background var(--transition);
}
.sidebar-user:hover { background: var(--bg-card); }
.sidebar-user .user-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-card2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-gray);
}
.sidebar-user .chevron { margin-left: auto; font-size: 12px; color: var(--text-muted); }

.sidebar-cats {
  display: flex;
  gap: 6px;
  padding: 12px 12px 6px;
}
.sidebar-cat-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-white);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 6px;
  cursor: pointer;
  transition: all var(--transition);
}
.sidebar-cat-btn:hover,
.sidebar-cat-btn.active { background: var(--blue-main); border-color: var(--blue-main); }
.sidebar-cat-btn svg { width: 14px; height: 14px; }

.sidebar-nav { padding: 8px 0; }
.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--text-gray);
  font-size: 13.5px;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
  position: relative;
}
.sidebar-nav-item:hover { background: var(--bg-card); color: var(--text-white); }
.sidebar-nav-item .nav-icon { width: 20px; height: 16px; flex-shrink: 0; opacity: 0.7; }
.sidebar-nav-item .badge {
  margin-left: auto;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
}

.sidebar-bottom {
  margin-top: auto;
  padding: 0;
  border-top: 1px solid var(--border-color);
}

.install-app-card {
  margin: 10px 10px 0;
  background: linear-gradient(135deg, #1a1a35, #0f3080);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--blue-dark);
}
.install-app-card .install-icon { width: 22px; height: 22px; opacity: 0.8; }
.install-app-card .install-text { flex: 1; }
.install-app-card .install-text strong { display: block; font-size: 12px; color: #fff; }
.install-app-card .install-text span { font-size: 10px; color: var(--accent-cyan); }
.install-app-card .install-btn {
  background: var(--blue-main);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.lang-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 6px;
  font-size: 12px;
  color: var(--text-gray);
}
.lang-btn {
  display: flex; align-items: center; gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 4px 8px;
  color: var(--text-white);
  font-size: 12px;
  cursor: pointer;
}
.support-link { color: var(--text-gray); font-size: 12px; }
.support-link span { color: var(--green); font-weight: 700; margin-left: 4px; }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  margin-left: 200px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;        /* critical: prevents flex child from overflowing */
  overflow-x: hidden;
  width: 100%;
}

/* ============================================================
   HEADER (TOP BAR)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
}

.header-hamburger {
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  display: none;
}

.header-logo { display: none; }

.header-spacer { flex: 1; }

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

.btn-login {
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-login:hover { border-color: var(--blue-main); color: var(--blue-light); }

.btn-register {
  background: var(--blue-main);
  border: none;
  color: #fff;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-blue);
}
.btn-register:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ============================================================
   PAGE CONTENT AREA
   ============================================================ */
.page-content {
  padding: 20px 24px 48px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* ============================================================
   HERO BANNER SLIDER
   ============================================================ */
.hero-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
}

.slide-1 { background: linear-gradient(120deg, #0a2d8a 0%, #1a6aff 55%, #0d1b4a 100%); }
.slide-2 { background: linear-gradient(120deg, #1a1a2e 0%, #2d1a5a 50%, #1a0d3a 100%); }
.slide-3 { background: linear-gradient(120deg, #0a2d4a 0%, #0d4a7a 55%, #0a1a3a 100%); }

.slide-content {
  padding: 32px 40px;
  z-index: 2;
  position: relative;
}
.slide-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
  max-width: 320px;
}
.slide-content p { color: rgba(255,255,255,0.75); font-size: 13px; margin-bottom: 18px; }
.slide-content .btn-detail {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 8px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.slide-content .btn-detail:hover { background: rgba(255,255,255,0.28); }

.slide-img {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 85%;
  width: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.slide-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  overflow: hidden;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: #fff; width: 20px; border-radius: 4px; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--blue-main); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

/* ============================================================
   PROMO BONUS BANNER
   ============================================================ */
.promo-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  background: linear-gradient(110deg, #0a2d8a 0%, #1a5aee 60%, #1236b0 100%);
  display: flex;
  align-items: center;
  min-height: 90px;
  padding: 0 32px;
  position: relative;
  border: 1px solid rgba(26,106,255,0.3);
  box-shadow: var(--shadow-blue);
}
.promo-banner img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}
.promo-text { flex: 1; }
.promo-text h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.promo-steps {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.promo-step {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.8);
}
.promo-step .step-num {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.4);
}
.promo-arrow { color: var(--text-muted); font-size: 12px; }
.btn-activate {
  background: #fff;
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  padding: 9px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-activate:hover { background: #e8f0ff; transform: translateY(-1px); }
.promo-img-right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 260px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: flex-end;
}

/* ============================================================
   CATEGORIES BAR
   ============================================================ */
.categories-section { margin-bottom: 32px; }
.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
}
.view-all-btn {
  display: flex; align-items: center; gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-gray);
  border-radius: 16px;
  padding: 5px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition);
}
.view-all-btn:hover { border-color: var(--blue-main); color: var(--blue-light); }

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

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition);
  overflow: hidden;
  position: relative;
  height: 76px;
}
.cat-card:hover {
  border-color: var(--blue-main);
  background: rgba(26,106,255,0.12);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.cat-card .cat-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  z-index: 2;
  position: relative;
}
.cat-card .cat-icon {
  font-size: 36px;
  position: absolute;
  right: -4px;
  bottom: -4px;
  opacity: 0.85;
}

/* ============================================================
   GAMES SECTION
   ============================================================ */
.games-section { margin-bottom: 36px; }

.games-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.games-controls { display: flex; align-items: center; gap: 8px; }
.game-nav-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-gray);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.game-nav-btn:hover { background: var(--blue-main); border-color: var(--blue-main); color: #fff; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}
.game-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 32px rgba(0,0,0,0.5); }

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

.game-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
}

.game-card .game-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 20px 8px 8px;
}
.game-card .game-title {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}
.game-card .game-provider {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.game-card .game-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,106,255,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-play-overlay { opacity: 1; }
.play-icon { font-size: 32px; color: #fff; }

/* ============================================================
   SEO CONTENT SECTIONS
   ============================================================ */

/* Hero H1 — visually styled, SEO-visible */
.hero-h1 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-gray);
  line-height: 1.5;
  padding: 10px 16px;
  background: var(--bg-card);
  border-left: 3px solid var(--blue-main);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.seo-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 28px;
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
  width: 100%;
}
  margin-bottom: 28px;
}

.seo-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-main);
  display: inline-block;
}

.seo-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-light);
  margin: 20px 0 10px;
}

.seo-section p {
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 14.5px;
}

.seo-section ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.seo-section ul.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-gray);
  font-size: 13.5px;
  line-height: 1.5;
}
.seo-section ul.feature-list li::before {
  content: '✦';
  color: var(--blue-main);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Steps grid — How to Register / App Download */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* App Download grid */
.app-download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
}
.app-platform-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  min-width: 0;          /* prevent grid child overflow */
  overflow: hidden;
  box-sizing: border-box;
  word-break: break-word;
}
.app-platform-icon {
  margin-bottom: 12px;
}
.app-platform-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.step-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  position: relative;
  min-width: 0;          /* prevent grid child overflow */
  overflow: hidden;
  box-sizing: border-box;
  word-break: break-word;
}
.step-num {
  width: 32px;
  height: 32px;
  background: var(--blue-main);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.step-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.step-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   TABLES (SEO INFO TABLES)
   ============================================================ */
.info-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.info-table thead tr {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-main));
}
.info-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition);
}
.info-table tbody tr:last-child { border-bottom: none; }
.info-table tbody tr:hover { background: rgba(26,106,255,0.06); }
.info-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.info-table tbody tr:nth-child(even):hover { background: rgba(26,106,255,0.06); }
.info-table td {
  padding: 11px 16px;
  color: var(--text-gray);
}
.info-table td:first-child {
  color: var(--text-white);
  font-weight: 600;
}
.info-table .badge-green { color: var(--green); font-weight: 700; }
.info-table .badge-blue { color: var(--blue-light); font-weight: 700; }
.info-table .badge-gold { color: var(--gold); font-weight: 700; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { margin-top: 16px; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--bg-card2);
  border: none;
  color: var(--text-white);
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(26,106,255,0.1); }
.faq-question .faq-arrow {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 14px 18px;
  color: var(--text-gray);
  font-size: 13.5px;
  line-height: 1.7;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}
.faq-answer.open { display: block; }

/* ============================================================
   INDIA SECTION
   ============================================================ */
.india-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(26,106,255,0.08) 100%);
  border: 1px solid var(--border-color);
  border-left: 4px solid #ff9900;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 28px;
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
  width: 100%;
}
.india-flag { font-size: 28px; margin-right: 10px; }
.india-section h2 {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ff9900;
}

/* ============================================================
   PROMOTIONS GRID
   ============================================================ */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition);
}
.promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-blue); }

.promo-card-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.promo-card-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 20px 18px 16px;
}
.promo-card-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.btn-more-details {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 7px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-more-details:hover { background: rgba(255,255,255,0.28); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 40px 24px 24px;
  margin-left: 0;
}
.footer-inner { max-width: 1200px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-badges { display: flex; align-items: center; gap: 10px; }
.badge-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--text-muted);
}
.footer-18plus {
  background: var(--bg-card);
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-blue { color: var(--blue-light); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */

/* ---- Tablet (≤1100px) ---- */
@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(5, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .seo-section { padding: 28px 28px; }
  .india-section { padding: 28px 28px; }
}

/* ---- Small Tablet / Large Phone (≤900px) ---- */
@media (max-width: 900px) {
  /* Sidebar hidden → hamburger toggle */
  .sidebar { display: none; }
  .main-content { margin-left: 0; width: 100%; }
  .header-hamburger { display: flex; align-items: center; justify-content: center; }
  .header-logo { display: flex; align-items: center; }
  .header-logo img { height: 26px; }
  .site-header { padding: 0 16px; height: 52px; }

  /* Page content — full width, no overflow */
  .page-content { padding: 16px 16px 40px; width: 100%; box-sizing: border-box; overflow-x: hidden; }

  /* Slider */
  .slide { height: 180px; }
  .slide-content { padding: 24px 28px; }
  .slide-content h2 { font-size: 22px; }

  /* Buttons */
  .btn-login { padding: 7px 16px; font-size: 13px; }
  .btn-register { padding: 7px 16px; font-size: 13px; }

  /* Sections — full width */
  .seo-section { padding: 24px 20px; width: 100%; box-sizing: border-box; }
  .india-section { padding: 24px 20px; width: 100%; box-sizing: border-box; }
  .seo-section ul.feature-list { grid-template-columns: 1fr; }

  /* Steps — 2 col on tablet */
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .app-download-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-brand p { max-width: 100%; }
}

/* ---- Phone (≤600px) ---- */
@media (max-width: 600px) {
  /* Header */
  .site-header { padding: 0 12px; height: 50px; gap: 10px; }
  .btn-login { display: none; }
  .btn-register { padding: 7px 18px; font-size: 13px; font-weight: 700; }

  /* Page — strict full width */
  .page-content { padding: 12px 12px 32px; width: 100%; box-sizing: border-box; overflow-x: hidden; }

  /* H1 intro */
  .hero-h1 { font-size: 13px; }

  /* Slider */
  .slide { height: 150px; }
  .slide-content { padding: 18px 18px; }
  .slide-content h2 { font-size: 18px; max-width: 220px; }
  .slide-content p { font-size: 12px; margin-bottom: 12px; }
  .slide-content .btn-detail { padding: 7px 16px; font-size: 12px; }
  .slider-btn { width: 28px; height: 28px; font-size: 14px; }

  /* Section titles */
  .section-title { font-size: 15px; }
  .section-title-row { margin-bottom: 10px; }

  /* Games sections */
  .games-section { margin-bottom: 24px; }
  .games-header { margin-bottom: 10px; }
  .game-nav-btn { width: 28px; height: 28px; font-size: 12px; }

  /* Categories */
  .categories-section { margin-bottom: 24px; }

  /* SEO sections — full width */
  .seo-section {
    padding: 18px 14px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .seo-section h2 { font-size: 17px; }
  .seo-section h3 { font-size: 14px; margin: 14px 0 8px; }
  .seo-section p { font-size: 13.5px; }
  .seo-section ul.feature-list { grid-template-columns: 1fr; gap: 7px; }
  .seo-section ul.feature-list li { font-size: 13px; }

  /* India section */
  .india-section {
    padding: 18px 14px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .india-section h2 { font-size: 17px; }

  /* Tables — горизонтальный скролл */
  .info-table-wrap { border-radius: var(--radius-sm); overflow-x: auto; }
  .info-table { font-size: 12px; }
  .info-table thead th { padding: 9px 10px; font-size: 11px; }
  .info-table td { padding: 8px 10px; font-size: 12px; }

  /* Steps grid — 1 колонка на телефоне */
  .steps-grid,
  .app-download-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }
  .step-card,
  .app-platform-card { padding: 14px 12px; width: 100%; box-sizing: border-box; }
  .step-num { width: 26px; height: 26px; font-size: 13px; }
  .step-card h3,
  .app-platform-card h3 { font-size: 13px; }

  /* Buttons in cards — full width */
  .step-card .btn-register,
  .step-card .btn-login,
  .app-platform-card .btn-register,
  .app-platform-card .btn-login {
    width: 100% !important;
    box-sizing: border-box;
    margin-top: 12px;
  }

  /* FAQ */
  .faq-question { font-size: 13px; padding: 12px 14px; }
  .faq-answer { font-size: 13px; padding: 12px 14px; }

  /* Footer */
  .site-footer { padding: 28px 12px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand p { font-size: 12px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-badges { flex-wrap: wrap; gap: 6px; }
  .badge-item { font-size: 10px; padding: 3px 8px; }
  .footer-copy { font-size: 11px; }
}

/* ---- Small Phone (≤420px) ---- */
@media (max-width: 420px) {
  .page-content { padding: 10px 10px 28px; }
  .slide { height: 130px; }
  .slide-content { padding: 14px 14px; }
  .slide-content h2 { font-size: 16px; max-width: 180px; }
  .slide-content p { display: none; } /* убираем подпись на совсем малых экранах */
  .hero-slider { margin-bottom: 16px; }
  .seo-section { padding: 14px 12px; }
  .india-section { padding: 14px 12px; }
  .info-table { font-size: 11px; }
  .info-table thead th { padding: 7px 8px; }
  .info-table td { padding: 7px 8px; }
  /* Steps и App — 1 колонка на маленьких телефонах */
  .steps-grid,
  .app-download-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROMO BANNER BLOCK (CSS-only, no external images)
   ============================================================ */
.promo-banner-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.promo-banner-block:hover { opacity: 0.92; }

.promo-banner-bonus {
  background: linear-gradient(135deg, #1a3a8f 0%, #0d1f5c 50%, #1a1a4e 100%);
  border: 1px solid rgba(77, 143, 255, 0.25);
  box-shadow: 0 4px 24px rgba(26, 106, 255, 0.18);
}

.promo-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  gap: 16px;
  min-height: 140px;
}

.promo-banner-text { flex: 1; min-width: 0; }

.promo-banner-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.2);
}

.promo-banner-text h2 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.promo-banner-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.promo-banner-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-coins {
  display: flex;
  gap: 10px;
  align-items: center;
}

.coin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}
.coin:hover { transform: scale(1.1); }

.coin-1 {
  background: linear-gradient(135deg, #f7c947, #c8860a);
  box-shadow: 0 4px 16px rgba(247,201,71,0.4);
}
.coin-2 {
  background: linear-gradient(135deg, #4d8fff, #1a3aff);
  box-shadow: 0 4px 16px rgba(77,143,255,0.4);
  width: 72px;
  height: 72px;
  font-size: 16px;
}
.coin-3 {
  background: linear-gradient(135deg, #2ecc71, #0e7a4a);
  box-shadow: 0 4px 16px rgba(46,204,113,0.4);
}

/* ============================================================
   CATEGORIES GRID (CSS-only icon cards)
   ============================================================ */
.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
}

.cat-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  min-width: 0;
  overflow: hidden;
}
.cat-card-item:hover {
  border-color: var(--blue-main);
  background: var(--bg-card2);
}

.cat-card-icon {
  color: var(--blue-light);
  line-height: 0;
}

.cat-card-item span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-white);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* ============================================================
   GAME CARDS ROW (CSS gradient cards — no images)
   ============================================================ */
.game-cards-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.game-card-css {
  background: var(--gc, linear-gradient(135deg, #1a3a8f, #0d1f5c));
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 8px;
  min-width: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s;
}
.game-card-css:hover { transform: translateY(-2px); }

.game-card-css::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  border-radius: var(--radius-md);
}

.game-card-css span {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  line-height: 1.3;
  word-break: break-word;
}

.game-card-live small {
  position: relative;
  font-size: 9px;
  font-weight: 700;
  color: #ff4757;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ============================================================
   RESPONSIVE: promo / cat-cards / game-cards
   ============================================================ */
@media (max-width: 900px) {
  .promo-banner-inner { padding: 20px 20px; min-height: 120px; }
  .promo-banner-text h2 { font-size: 22px; }
  .coin { width: 46px; height: 46px; font-size: 16px; }
  .coin-2 { width: 58px; height: 58px; font-size: 14px; }
  .cat-cards-grid { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .game-cards-row { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
  .promo-banner-inner { padding: 16px 14px; min-height: 100px; }
  .promo-banner-text h2 { font-size: 18px; }
  .promo-banner-text p { font-size: 12px; }
  .promo-banner-visual { display: none; }
  .cat-cards-grid { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .cat-card-item { padding: 12px 6px; gap: 5px; }
  .cat-card-item span:last-child { font-size: 10px; }
  .game-cards-row { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .game-card-css span { font-size: 10px; }
}

@media (max-width: 420px) {
  .promo-banner-text h2 { font-size: 15px; }
  .cat-cards-grid { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .cat-card-icon svg { width: 20px; height: 20px; }
  .game-cards-row { grid-template-columns: repeat(3, 1fr); gap: 5px; }
}
