/* ============================================================
   1111111.homes - Theme CSS (class prefix: vd83-)
   Mobile-first canvas 320-430px; remains centered on wide screens.
   All custom classes / variables use the "vd83-" prefix.
   Palette: #9400D3 | #FAFAFA | #1A1A2E | #8B008B | #00FF00 | #9AFF9A
   Comments are in English per project convention.
   ============================================================ */

:root {
  --vd83-violet: #9400D3;
  --vd83-violet-soft: #b347e0;
  --vd83-magenta: #8B008B;
  --vd83-ink: #1A1A2E;
  --vd83-ink-2: #211b3a;
  --vd83-ink-3: #2c2453;
  --vd83-paper: #FAFAFA;
  --vd83-green: #00FF00;
  --vd83-mint: #9AFF9A;
  --vd83-line: rgba(250, 250, 250, 0.10);
  --vd83-line-strong: rgba(250, 250, 250, 0.22);
  --vd83-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  --vd83-radius: 14px;
  --vd83-radius-sm: 10px;
  --vd83-radius-lg: 20px;
  --vd83-gap: 12px;
  --vd83-safe-top: env(safe-area-inset-top, 0px);
  --vd83-safe-bottom: env(safe-area-inset-bottom, 0px);
  --vd83-header-h: 58px;
  --vd83-bottomnav-h: 64px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: radial-gradient(120% 80% at 50% -10%, #2c1a55 0%, #160d2c 45%, #0c0820 100%);
  color: var(--vd83-paper);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Centered phone canvas on wide screens (no desktop-wide layout). */
.vd83-stage {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(60% 30% at 80% 6%, rgba(148, 0, 211, 0.35) 0%, transparent 70%),
    radial-gradient(50% 26% at 10% 12%, rgba(139, 0, 139, 0.30) 0%, transparent 70%),
    linear-gradient(180deg, #1a1336 0%, #15102a 60%, #100b22 100%);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  padding-bottom: calc(var(--vd83-bottomnav-h) + var(--vd83-safe-bottom) + 16px);
}

img { max-width: 100%; display: block; }
a { color: var(--vd83-mint); text-decoration: none; }
a:hover { color: var(--vd83-green); }

/* ---------- Focus / press states ---------- */
:focus-visible {
  outline: 2px solid var(--vd83-green);
  outline-offset: 2px;
  border-radius: 6px;
}

.vd83-press {
  transform: scale(0.96);
  filter: brightness(1.08);
}

/* ============================================================
   Header (LOGO-led action bar)
   ============================================================ */
.vd83-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: calc(var(--vd83-header-h) + var(--vd83-safe-top));
  padding-top: var(--vd83-safe-top);
  background: linear-gradient(180deg, rgba(20, 12, 40, 0.96) 0%, rgba(20, 12, 40, 0.82) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vd83-line);
}

.vd83-header-row {
  height: var(--vd83-header-h);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
}

.vd83-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.vd83-logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--vd83-violet) 0%, var(--vd83-magenta) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  box-shadow: 0 6px 14px rgba(148, 0, 211, 0.45);
  flex-shrink: 0;
}

.vd83-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.vd83-brand-name strong {
  font-size: 17px;
  color: var(--vd83-paper);
  letter-spacing: 0.5px;
  font-weight: 800;
}
.vd83-brand-name span {
  font-size: 10px;
  color: var(--vd83-mint);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

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

/* Buttons (Register / Login) */
.vd83-btn {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  color: #fff;
}

.vd83-btn-primary {
  background: linear-gradient(135deg, var(--vd83-green) 0%, #16d04b 100%);
  color: #07210a;
  box-shadow: 0 8px 18px rgba(0, 255, 0, 0.28);
}
.vd83-btn-primary:hover { color: #07210a; }

.vd83-btn-ghost {
  background: rgba(250, 250, 250, 0.08);
  border: 1px solid var(--vd83-line-strong);
  color: var(--vd83-paper);
}
.vd83-btn-ghost:hover { background: rgba(250, 250, 250, 0.14); color: #fff; }

.vd83-btn-violet {
  background: linear-gradient(135deg, var(--vd83-violet) 0%, var(--vd83-magenta) 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(148, 0, 211, 0.35);
}

.vd83-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(250, 250, 250, 0.08);
  border: 1px solid var(--vd83-line-strong);
  color: var(--vd83-paper);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .14s ease, background .14s ease;
}
.vd83-icon-btn:hover { background: rgba(250, 250, 250, 0.16); color: #fff; }
.vd83-icon-btn svg { width: 20px; height: 20px; display: block; }

/* ============================================================
   Layered dropdown menu
   ============================================================ */
.vd83-menu-wrap {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0 10px 10px;
  z-index: 59;
  pointer-events: none;
}

.vd83-menu-panel {
  background: linear-gradient(180deg, #1c1438 0%, #160f2e 100%);
  border: 1px solid var(--vd83-line-strong);
  border-radius: var(--vd83-radius);
  box-shadow: var(--vd83-shadow);
  padding: 10px 12px 12px;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
}
.vd83-menu-panel.vd83-menu-open {
  opacity: 1;
  transform: translateY(0);
  max-height: 560px;
  pointer-events: auto;
}

.vd83-menu-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vd83-mint);
  margin: 6px 4px 6px;
}

.vd83-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.vd83-menu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 250, 250, 0.05);
  border: 1px solid var(--vd83-line);
  border-radius: 10px;
  padding: 9px 10px;
  color: var(--vd83-paper);
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  transition: background .14s ease, transform .14s ease;
}
.vd83-menu-link:hover { background: rgba(148, 0, 211, 0.25); color: #fff; }
.vd83-menu-link .vd83-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vd83-green), var(--vd83-mint));
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--vd83-green);
}

/* ============================================================
   Layout containers
   ============================================================ */
.vd83-section {
  padding: 18px 12px 6px;
}
.vd83-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.vd83-section-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: var(--vd83-paper);
  position: relative;
  padding-left: 12px;
}
.vd83-section-title::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px; border-radius: 3px;
  background: linear-gradient(180deg, var(--vd83-green), var(--vd83-violet));
}
.vd83-section-sub {
  font-size: 12px;
  color: var(--vd83-mint);
  letter-spacing: 0.5px;
}

/* ============================================================
   Hero carousel
   ============================================================ */
.vd83-hero {
  margin: 14px 12px 0;
  border-radius: var(--vd83-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--vd83-shadow);
}
#vd83-carousel {
  position: relative;
  height: 190px;
  background: #0c0820;
}
.vd83-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  display: block;
  cursor: pointer;
}
.vd83-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vd83-slide-active { opacity: 1; }
.vd83-slide-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 14px 18px;
  background: linear-gradient(0deg, rgba(8, 4, 20, 0.85) 0%, rgba(8, 4, 20, 0) 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vd83-slide-overlay strong {
  font-size: 16px;
  color: var(--vd83-mint);
  letter-spacing: 0.4px;
}
.vd83-slide-overlay span {
  font-size: 12px;
  color: var(--vd83-paper);
  opacity: 0.9;
}
.vd83-hero-cta {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--vd83-green) 0%, #15c945 100%);
  color: #07210a;
  border: 0;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.vd83-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 6, 22, 0.55);
  border: 1px solid var(--vd83-line-strong);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
}
.vd83-hero-arrow:hover { background: rgba(148, 0, 211, 0.6); }
.vd83-hero-arrow svg { width: 18px; height: 18px; }
.vd83-hero-prev { left: 8px; }
.vd83-hero-next { right: 8px; }

.vd83-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 6;
}
.vd83-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(250, 250, 250, 0.4);
  border: 0; padding: 0; cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.vd83-dot-active {
  background: var(--vd83-green);
  width: 20px;
  border-radius: 999px;
}

/* ============================================================
   Quick chips (category shortcuts)
   ============================================================ */
.vd83-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 12px 4px;
  scrollbar-width: none;
}
.vd83-chips::-webkit-scrollbar { display: none; }
.vd83-chip {
  flex-shrink: 0;
  background: rgba(250, 250, 250, 0.06);
  border: 1px solid var(--vd83-line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--vd83-paper);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
}
.vd83-chip:hover { background: rgba(148, 0, 211, 0.3); color: #fff; }
.vd83-chip .vd83-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vd83-green), var(--vd83-mint));
}

/* ============================================================
   Game grid + cards
   ============================================================ */
.vd83-games {
  padding: 6px 12px 10px;
}
.vd83-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .vd83-game-grid { gap: 10px; }
}
.vd83-game-card {
  background: linear-gradient(180deg, rgba(40, 28, 78, 0.7) 0%, rgba(22, 15, 44, 0.7) 100%);
  border: 1px solid var(--vd83-line);
  border-radius: var(--vd83-radius-sm);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: border-color .14s ease, transform .14s ease;
}
.vd83-game-card:hover {
  border-color: var(--vd83-green);
}
.vd83-game-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0c0820;
  overflow: hidden;
}
.vd83-game-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.vd83-game-card:hover .vd83-game-thumb img { transform: scale(1.06); }
.vd83-game-tag {
  position: absolute;
  top: 4px; left: 4px;
  background: linear-gradient(135deg, var(--vd83-violet), var(--vd83-magenta));
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.4px;
}
.vd83-game-name {
  font-size: 10.5px;
  padding: 5px 4px 6px;
  color: var(--vd83-paper);
  line-height: 1.25;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   Promo pills (compact promo entries)
   ============================================================ */
.vd83-promo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 4px 0 0;
}
.vd83-promo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(148, 0, 211, 0.30) 0%, rgba(139, 0, 139, 0.22) 100%);
  border: 1px solid var(--vd83-line-strong);
  border-radius: var(--vd83-radius-sm);
  padding: 10px 12px;
  cursor: pointer;
  color: var(--vd83-paper);
  font-weight: 700;
  font-size: 12.5px;
  min-height: 44px;
}
.vd83-promo-pill:hover { background: linear-gradient(135deg, rgba(148, 0, 211, 0.5) 0%, rgba(139, 0, 139, 0.4) 100%); color: #fff; }
.vd83-promo-pill .vd83-pill-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--vd83-green), #16d04b);
  display: grid; place-items: center;
  color: #07210a; flex-shrink: 0;
}
.vd83-promo-pill .vd83-pill-icon svg { width: 16px; height: 16px; }

/* ============================================================
   Info / supplementary blocks
   ============================================================ */
.vd83-card {
  background: linear-gradient(180deg, rgba(36, 25, 70, 0.7) 0%, rgba(20, 14, 40, 0.7) 100%);
  border: 1px solid var(--vd83-line);
  border-radius: var(--vd83-radius);
  padding: 14px;
  margin: 10px 12px;
}
.vd83-card h2 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--vd83-paper);
  font-weight: 800;
}
.vd83-card h3 {
  margin: 12px 0 4px;
  font-size: 13.5px;
  color: var(--vd83-mint);
}
.vd83-card p {
  margin: 0 0 8px;
  font-size: 13.5px;
  color: rgba(250, 250, 250, 0.88);
}
.vd83-card ul {
  margin: 4px 0 8px;
  padding-left: 18px;
}
.vd83-card li {
  font-size: 13px;
  margin-bottom: 4px;
  color: rgba(250, 250, 250, 0.88);
}

/* Inline link inside content */
.vd83-inline-link {
  color: var(--vd83-mint);
  font-weight: 700;
  border-bottom: 1px dashed rgba(154, 255, 154, 0.5);
}
.vd83-inline-link:hover { color: var(--vd83-green); border-bottom-color: var(--vd83-green); }

/* Achievement row */
.vd83-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 8px 0 2px;
}
.vd83-stat {
  background: rgba(250, 250, 250, 0.04);
  border: 1px solid var(--vd83-line);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
}
.vd83-stat strong {
  display: block;
  font-size: 16px;
  color: var(--vd83-green);
  font-weight: 800;
}
.vd83-stat span {
  font-size: 11px;
  color: rgba(250, 250, 250, 0.78);
}

/* Steps (How to play) */
.vd83-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vd83-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(250, 250, 250, 0.04);
  border: 1px solid var(--vd83-line);
  border-radius: 10px;
  padding: 10px;
}
.vd83-step-num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vd83-violet), var(--vd83-magenta));
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 12px;
}
.vd83-step p { margin: 0; font-size: 13px; }

/* Two-column highlight tiles */
.vd83-tile-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.vd83-tile {
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.10) 0%, rgba(148, 0, 211, 0.18) 100%);
  border: 1px solid var(--vd83-line-strong);
  border-radius: 10px;
  padding: 10px;
}
.vd83-tile strong { display: block; color: var(--vd83-mint); font-size: 13px; }
.vd83-tile span { font-size: 12px; color: rgba(250, 250, 250, 0.82); }

/* ============================================================
   Extended site footer (homepage only)
   ============================================================ */
.vd83-site-footer {
  margin: 14px 12px 6px;
  border-top: 1px solid var(--vd83-line-strong);
  padding-top: 14px;
}
.vd83-footer-brand {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 10px;
}
.vd83-footer-brand .vd83-logo-badge { width: 34px; height: 34px; font-size: 16px; }
.vd83-footer-brand p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(250, 250, 250, 0.82);
}

.vd83-footer-title {
  font-size: 12px;
  color: var(--vd83-mint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 12px 0 6px;
}

.vd83-footer-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 6px;
}
.vd83-footer-action {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.10), rgba(148, 0, 211, 0.18));
  border: 1px solid var(--vd83-line-strong);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  color: var(--vd83-paper);
  font-weight: 700;
  font-size: 12.5px;
  min-height: 44px;
}
.vd83-footer-action:hover { background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(148, 0, 211, 0.32)); color: #fff; }
.vd83-footer-action svg { width: 16px; height: 16px; color: var(--vd83-mint); flex-shrink: 0; }

/* Two-column directory of internal pages */
.vd83-dir-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 4px;
}
.vd83-dir-grid a {
  background: rgba(250, 250, 250, 0.05);
  border: 1px solid var(--vd83-line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--vd83-paper);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
}
.vd83-dir-grid a:hover { background: rgba(148, 0, 211, 0.28); color: #fff; }
.vd83-dir-grid a::before {
  content: "›";
  color: var(--vd83-green);
  font-weight: 800;
}

.vd83-disclaimer {
  margin-top: 12px;
  font-size: 11.5px;
  color: rgba(250, 250, 250, 0.65);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 8px 10px;
  border-left: 3px solid var(--vd83-magenta);
}

/* Copyright bar (above bottom nav) */
.vd83-copyright {
  text-align: center;
  font-size: 11px;
  color: rgba(250, 250, 250, 0.55);
  padding: 10px 16px 6px;
}

/* ============================================================
   Mobile bottom navigation (compact icon rack)
   ============================================================ */
.vd83-bottomnav {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 70;
  background: linear-gradient(180deg, rgba(18, 12, 38, 0.97) 0%, rgba(10, 6, 22, 0.98) 100%);
  border-top: 1px solid var(--vd83-line-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-bottom: var(--vd83-safe-bottom);
}
.vd83-bottomnav-inner {
  max-width: 430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: calc(var(--vd83-bottomnav-h));
}
.vd83-navbtn {
  background: transparent;
  border: 0;
  color: rgba(250, 250, 250, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 2px;
  position: relative;
  transition: color .14s ease;
}
.vd83-navbtn svg { width: 22px; height: 22px; }
.vd83-navbtn:hover { color: var(--vd83-paper); }

/* Active state = background support block */
.vd83-navbtn-active {
  color: var(--vd83-green);
}
.vd83-navbtn-active::before {
  content: "";
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 28px;
  background: linear-gradient(180deg, rgba(0, 255, 0, 0.20), rgba(0, 255, 0, 0));
  border-radius: 12px;
  z-index: -1;
}
.vd83-navbtn-active::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 3px;
  background: var(--vd83-green);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 8px var(--vd83-green);
}

/* Promo role accent */
.vd83-navbtn-promo { color: var(--vd83-mint); }
.vd83-navbtn-promo:hover { color: var(--vd83-green); }

/* ============================================================
   Utility / helpers
   ============================================================ */
.vd83-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.vd83-pb-safe { padding-bottom: 4px; }

/* Keep grids crisp on slightly wider phones */
@media (min-width: 392px) {
  .vd83-game-grid { grid-template-columns: repeat(5, 1fr); }
}
