/* =====================================================================
   345bet app - ui-a0f72a.css
   Mobile-first gaming portal styles (class prefix: v72a-)
   Palette: #F0F8FF | #87CEFA | #000080 | #333333
   Layout: top centered identity bar, side drawer, outlined bottom nav.
   ===================================================================== */

:root {
  --v72a-bg: #000080;
  --v72a-bg-2: #0b0b5e;
  --v72a-bg-3: #11114f;
  --v72a-card: #ffffff;
  --v72a-ink: #333333;
  --v72a-ink-soft: #4a4a5a;
  --v72a-light: #F0F8FF;
  --v72a-accent: #87CEFA;
  --v72a-accent-deep: #1d8fd6;
  --v72a-gold: #ffd76a;
  --v72a-border: rgba(135, 206, 250, 0.28);
  --v72a-shadow: 0 10px 30px rgba(0, 0, 64, 0.28);
  --v72a-radius: 14px;
  --v72a-radius-lg: 18px;
  --v72a-header-h: 58px;
  --v72a-bnav-h: 64px;
  --v72a-maxw: 430px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  background: #06062c;
  color: var(--v72a-light);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.55;
}

body.v72a-lock { overflow: hidden; }

a { color: var(--v72a-accent); text-decoration: none; }
a:focus-visible { outline: 2px solid var(--v72a-accent); outline-offset: 2px; border-radius: 4px; }
img { max-width: 100%; display: block; }

/* Mobile canvas on wide screens */
.v72a-shell {
  max-width: var(--v72a-maxw);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(1200px 320px at 50% -80px, rgba(135, 206, 250, 0.25), transparent 60%),
    linear-gradient(180deg, var(--v72a-bg) 0%, var(--v72a-bg-2) 38%, var(--v72a-bg-3) 100%);
  position: relative;
  box-shadow: var(--v72a-shadow);
  overflow: hidden;
}

/* ===================== TOP IDENTITY BAR ===================== */
.v72a-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--v72a-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  background: linear-gradient(180deg, rgba(0, 0, 128, 0.96), rgba(11, 11, 94, 0.96));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--v72a-border);
}

.v72a-id {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
  justify-content: center;
}

.v72a-id-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--v72a-accent), #ffe28a);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #000080;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.v72a-id-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--v72a-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.3px;
}
.v72a-id-name span { color: var(--v72a-accent); }

.v72a-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
}

.v72a-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  min-height: 36px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.v72a-btn:active { transform: translateY(1px) scale(0.98); }

.v72a-btn--primary {
  background: linear-gradient(135deg, var(--v72a-gold), #ff9d3c);
  color: #3a2400;
  box-shadow: 0 4px 12px rgba(255, 157, 60, 0.35);
}
.v72a-btn--ghost {
  background: transparent;
  color: var(--v72a-light);
  border: 1.5px solid var(--v72a-accent);
}
.v72a-btn--ghost:hover { background: rgba(135, 206, 250, 0.12); }

.v72a-menu-btn {
  border: 1px solid var(--v72a-border);
  background: rgba(135, 206, 250, 0.12);
  color: var(--v72a-light);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.v72a-menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--v72a-accent);
  border-radius: 2px;
  position: relative;
}
.v72a-menu-btn span::before,
.v72a-menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--v72a-accent);
  border-radius: 2px;
}
.v72a-menu-btn span::before { top: -6px; }
.v72a-menu-btn span::after { top: 6px; }

/* ===================== SIDE DRAWER ===================== */
.v72a-mask {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 18, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease;
  z-index: 70;
}
.v72a-mask--show { opacity: 1; visibility: visible; }

.v72a-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 82%;
  max-width: 320px;
  background: linear-gradient(180deg, #0b0b5e, #11114f);
  border-left: 1px solid var(--v72a-border);
  transform: translateX(105%);
  transition: transform 0.26s cubic-bezier(.22,.7,.32,1);
  z-index: 80;
  padding: 18px 16px 24px;
  overflow-y: auto;
}
.v72a-drawer--open { transform: translateX(0); }

.v72a-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.v72a-drawer-title { font-size: 17px; font-weight: 800; color: var(--v72a-light); }
.v72a-drawer-close {
  background: transparent;
  border: none;
  color: var(--v72a-accent);
  font-size: 22px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.v72a-drawer-promo {
  background: linear-gradient(135deg, var(--v72a-gold), #ff9d3c);
  color: #3a2400;
  border-radius: var(--v72a-radius);
  padding: 12px 14px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.v72a-drawer-promo small { font-weight: 600; opacity: 0.85; }

.v72a-drawer-section { margin-top: 12px; }
.v72a-drawer-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--v72a-accent);
  font-weight: 700;
  margin: 6px 4px;
}
.v72a-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--v72a-light);
  font-size: 14px;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.v72a-drawer-link:hover, .v72a-drawer-link:focus-visible {
  background: rgba(135, 206, 250, 0.10);
  border-color: var(--v72a-border);
}
.v72a-drawer-link::after {
  content: "›";
  color: var(--v72a-accent);
  font-size: 18px;
}

/* ===================== MAIN ===================== */
.v72a-main {
  padding: 14px 12px calc(var(--v72a-bnav-h) + 22px);
}

/* ===================== HERO CAROUSEL ===================== */
.v72a-hero { margin-bottom: 16px; }

#pro72a-carousel {
  position: relative;
  border-radius: var(--v72a-radius-lg);
  overflow: hidden;
  box-shadow: var(--v72a-shadow);
  border: 1px solid var(--v72a-border);
}

.v72a-car-window {
  overflow: hidden;
  border-radius: var(--v72a-radius-lg);
}

#pro72a-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.v72a-slide {
  min-width: 100%;
  position: relative;
}
.v72a-slide img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.v72a-slide-cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  background: linear-gradient(0deg, rgba(0, 0, 64, 0.78), transparent);
  color: var(--v72a-light);
  padding: 18px 12px 8px;
  border-radius: 0 0 var(--v72a-radius-lg) var(--v72a-radius-lg);
  pointer-events: none;
}
.v72a-slide-cap strong { display: block; font-size: 15px; font-weight: 800; color: var(--v72a-gold); }
.v72a-slide-cap span { display: block; font-size: 12px; opacity: 0.95; }

.v72a-car-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 64, 0.55);
  border: 1px solid var(--v72a-border);
  color: var(--v72a-light);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  z-index: 2;
}
.v72a-car-nav:hover { background: rgba(0, 0, 128, 0.85); }
#pro72a-prev { left: 8px; }
#pro72a-next { right: 8px; }

.v72a-car-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.v72a-car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(135, 206, 250, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.v72a-car-dot--active {
  background: var(--v72a-gold);
  transform: scale(1.25);
}

/* ===================== QUICK STATS ===================== */
.v72a-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 0 16px;
}
.v72a-stat {
  background: rgba(135, 206, 250, 0.08);
  border: 1px solid var(--v72a-border);
  border-radius: 12px;
  padding: 9px 6px;
  text-align: center;
}
.v72a-stat b { display: block; font-size: 15px; color: var(--v72a-gold); font-weight: 800; }
.v72a-stat small { font-size: 10.5px; color: var(--v72a-light); opacity: 0.85; }

/* ===================== CATEGORY CHIPS ===================== */
.v72a-chips {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}
.v72a-chips::-webkit-scrollbar { display: none; }
.v72a-chip {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(135, 206, 250, 0.10);
  border: 1px solid var(--v72a-border);
  color: var(--v72a-light);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.v72a-chip:hover, .v72a-chip:focus-visible {
  background: var(--v72a-accent);
  color: #000080;
}

/* ===================== SECTION HEADER ===================== */
.v72a-sec {
  margin-top: 18px;
}
.v72a-sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2px 10px;
}
.v72a-sec-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--v72a-light);
  position: relative;
  padding-left: 10px;
}
.v72a-sec-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--v72a-gold), var(--v72a-accent));
}
.v72a-sec-more { font-size: 12px; color: var(--v72a-accent); font-weight: 600; }

/* ===================== GAME GRID ===================== */
.v72a-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.v72a-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--v72a-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.v72a-card:hover, .v72a-card:focus-within {
  transform: translateY(-2px);
  border-color: var(--v72a-accent);
  box-shadow: 0 8px 18px rgba(0, 0, 64, 0.28);
}
.v72a-card-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0d0d4d;
}
.v72a-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v72a-card-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(0, 0, 128, 0.78);
  color: var(--v72a-gold);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 5px;
  border: 1px solid var(--v72a-border);
}
.v72a-card-name {
  font-size: 11px;
  color: var(--v72a-light);
  text-align: center;
  padding: 5px 4px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

/* 5-col row at wider screens for compact grids */
@media (min-width: 380px) {
  .v72a-grid--dense { grid-template-columns: repeat(5, 1fr); }
}

/* ===================== SEO CONTENT BLOCKS ===================== */
.v72a-prose {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--v72a-border);
  border-radius: var(--v72a-radius);
  padding: 14px 14px;
  margin-top: 16px;
}
.v72a-prose h2 {
  font-size: 16px;
  font-weight: 800;
  color: var(--v72a-light);
  margin: 12px 0 6px;
}
.v72a-prose h2:first-child { margin-top: 0; }
.v72a-prose h3 {
  font-size: 14px;
  color: var(--v72a-accent);
  margin: 12px 0 4px;
  font-weight: 700;
}
.v72a-prose p {
  font-size: 13.5px;
  color: #d6e6ff;
  margin: 0 0 8px;
}
.v72a-prose a { color: var(--v72a-gold); font-weight: 600; }
.v72a-prose a:hover { text-decoration: underline; }
.v72a-prose ul { margin: 4px 0 10px; padding-left: 18px; }
.v72a-prose li { font-size: 13px; color: #d6e6ff; margin-bottom: 4px; }

.v72a-h1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--v72a-light);
  margin: 4px 2px 8px;
  line-height: 1.3;
}
.v72a-h1 span { color: var(--v72a-gold); }
.v72a-lead {
  font-size: 13.5px;
  color: #cfe1ff;
  margin: 0 2px 8px;
}

/* ===================== CHECKLIST / INFO TILES ===================== */
.v72a-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.v72a-tile {
  background: rgba(135, 206, 250, 0.08);
  border: 1px solid var(--v72a-border);
  border-radius: 12px;
  padding: 10px;
}
.v72a-tile b { display: block; font-size: 12.5px; color: var(--v72a-accent); margin-bottom: 3px; font-weight: 700; }
.v72a-tile span { font-size: 12px; color: #d6e6ff; }

.v72a-checklist {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.v72a-checklist li {
  position: relative;
  padding: 7px 8px 7px 26px;
  font-size: 13px;
  color: #d6e6ff;
  border-bottom: 1px dashed var(--v72a-border);
}
.v72a-checklist li:last-child { border-bottom: none; }
.v72a-checklist li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 6px;
  color: var(--v72a-gold);
  font-weight: 800;
}

/* ===================== EXTENDED FOOTER (home only) ===================== */
.v72a-ext {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--v72a-border);
  border-radius: var(--v72a-radius);
  padding: 14px;
}
.v72a-ext h2 {
  font-size: 15px;
  font-weight: 800;
  color: var(--v72a-light);
  margin: 0 0 8px;
}
.v72a-ext p {
  font-size: 13px;
  color: #cfe1ff;
  margin: 0 0 12px;
}
.v72a-ext-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}
.v72a-ext-col h3 {
  font-size: 12px;
  color: var(--v72a-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 5px;
}
.v72a-ext-col a {
  display: block;
  font-size: 12.5px;
  color: #d6e6ff;
  padding: 3px 0;
  border-bottom: 1px dashed rgba(135,206,250,0.15);
}
.v72a-ext-col a:hover { color: var(--v72a-gold); }

.v72a-ext-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 10px 0;
}
.v72a-ext-promo {
  background: linear-gradient(135deg, var(--v72a-accent), #5ab8ee);
  color: #001a3a;
  border-radius: 10px;
  padding: 9px 10px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  border: none;
}
.v72a-ext-promo:nth-child(2n) {
  background: linear-gradient(135deg, var(--v72a-gold), #ff9d3c);
  color: #3a2400;
}
.v72a-ext-promo:nth-child(3n) {
  background: linear-gradient(135deg, #b18cff, var(--v72a-accent));
  color: #1a0033;
}
.v72a-ext-promo:nth-child(4n) {
  background: linear-gradient(135deg, #38d9a9, #2eb6fc);
  color: #002418;
}

.v72a-disclaimer {
  font-size: 11px;
  color: #9bb4d8;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  margin-top: 10px;
  border-left: 3px solid var(--v72a-accent);
}

/* ===================== BOTTOM NAV (outlined functional bar) ===================== */
.v72a-bnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 65;
  display: flex;
  justify-content: center;
}
.v72a-bnav-inner {
  width: 100%;
  max-width: var(--v72a-maxw);
  height: var(--v72a-bnav-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(180deg, rgba(11, 11, 94, 0.97), rgba(6, 6, 44, 0.98));
  border-top: 1px solid var(--v72a-border);
  backdrop-filter: blur(10px);
  padding: 0 2px;
}
.v72a-bnav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #aab6d6;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 2px;
  transition: color 0.22s ease;
}
.v72a-bnav-item::before {
  /* Top indicator line for active state */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 26px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--v72a-gold), var(--v72a-accent));
  transition: transform 0.22s ease;
}
.v72a-bnav-item:hover { color: var(--v72a-accent); }
.v72a-bnav-item--active {
  color: var(--v72a-light);
}
.v72a-bnav-item--active::before { transform: translateX(-50%) scaleX(1); }

.v72a-bnav-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}
.v72a-bnav-icon svg { width: 22px; height: 22px; display: block; }

.v72a-bnav-label { font-size: 10px; line-height: 1; }

/* ===================== COPYRIGHT ===================== */
.v72a-copyright {
  text-align: center;
  font-size: 11.5px;
  color: #8fa6cf;
  padding: 10px 12px 4px;
  margin-top: 12px;
  border-top: 1px solid rgba(135, 206, 250, 0.12);
}

/* ===================== UTIL ===================== */
.v72a-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.v72a-divider { height: 1px; background: var(--v72a-border); margin: 14px 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
