/* ===========================================================
   ba999 UI - mobile-first basefile stylesheet (bn-BD)
   All custom classes / variables use the v85f- prefix.
   Palette: #5D5D5D / #262626 / #7CFC00 / #F8F8FF / #7FFF00
   =========================================================== */

:root {
  --v85f-bg: #262626;
  --v85f-bg-2: #1d1d1d;
  --v85f-bg-3: #303030;
  --v85f-surface: #3a3a3a;
  --v85f-muted: #5D5D5D;
  --v85f-text: #F8F8FF;
  --v85f-text-dim: #c7c7cf;
  --v85f-accent: #7CFC00;
  --v85f-accent-2: #7FFF00;
  --v85f-accent-deep: #5dbf00;
  --v85f-border: rgba(124, 252, 0, 0.22);
  --v85f-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --v85f-radius: 14px;
  --v85f-radius-sm: 10px;
  --v85f-header-h: 60px;
  --v85f-bnav-h: 64px;
  --v85f-max-w: 440px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--v85f-bg);
  color: var(--v85f-text);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "SolaimanLipi", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(124, 252, 0, 0.10), transparent 60%),
    linear-gradient(180deg, #2b2b2b 0%, var(--v85f-bg) 35%, #1c1c1c 100%);
}

a { color: var(--v85f-accent); text-decoration: none; }
a:hover { color: var(--v85f-accent-2); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { margin: 0 0 10px; line-height: 1.3; font-weight: 700; }
h1 { font-size: 22px; }
h2 { font-size: 19px; }
h3 { font-size: 16px; }
p { margin: 0 0 12px; color: var(--v85f-text-dim); }

/* ===== App canvas: keeps mobile frame on wider screens ===== */
.v85f-app {
  max-width: var(--v85f-max-w);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--v85f-bg);
  position: relative;
  box-shadow: var(--v85f-shadow);
}

.v85f-main {
  padding: calc(var(--v85f-header-h) + 6px) 12px calc(var(--v85f-bnav-h) + 24px);
}

/* ===== Header ===== */
.v85f-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: var(--v85f-max-w);
  margin: 0 auto;
  height: var(--v85f-header-h);
  background: linear-gradient(180deg, #2f2f2f 0%, #232323 100%);
  border-bottom: 1px solid var(--v85f-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 60;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

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

.v85f-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  background: var(--v85f-bg-3);
  border: 1px solid var(--v85f-border);
  box-shadow: 0 0 0 2px rgba(124, 252, 0, 0.15);
  flex-shrink: 0;
}

.v85f-brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.4px;
  color: var(--v85f-text);
  white-space: nowrap;
}
.v85f-brand-name b { color: var(--v85f-accent); }

.v85f-brand-tag {
  font-size: 10px;
  color: var(--v85f-text-dim);
  line-height: 1;
  margin-top: 2px;
}

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

.v85f-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background 0.25s ease, color 0.25s ease;
}
.v85f-btn:active { transform: scale(0.96); }

.v85f-btn-primary {
  background: linear-gradient(135deg, var(--v85f-accent) 0%, var(--v85f-accent-2) 100%);
  color: #0d2b00;
  box-shadow: 0 6px 16px rgba(124, 252, 0, 0.30);
}
.v85f-btn-primary:hover { color: #0d2b00; filter: brightness(1.06); }

.v85f-btn-ghost {
  background: transparent;
  color: var(--v85f-text);
  border: 1px solid var(--v85f-border);
}

.v85f-icon-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--v85f-border);
  color: var(--v85f-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.v85f-icon-btn svg { width: 20px; height: 20px; }

/* ===== Expandable nav panel ===== */
.v85f-menu {
  position: fixed;
  top: var(--v85f-header-h);
  left: 0;
  right: 0;
  max-width: var(--v85f-max-w);
  margin: 0 auto;
  background: #202020;
  border-bottom: 1px solid var(--v85f-border);
  transform: translateY(-130%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s ease, opacity 0.32s ease, visibility 0.32s;
  z-index: 55;
  padding: 14px 12px 18px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.45);
}
.v85f-menu.v85f-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.v85f-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.v85f-menu-title {
  font-size: 13px;
  color: var(--v85f-text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.v85f-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.v85f-menu-link {
  background: var(--v85f-bg-3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--v85f-radius-sm);
  padding: 10px 8px;
  text-align: center;
  font-size: 12px;
  color: var(--v85f-text);
  transition: background 0.22s ease, border-color 0.22s ease;
}
.v85f-menu-link:hover {
  background: #3a3a3a;
  border-color: var(--v85f-border);
  color: var(--v85f-accent);
}
.v85f-menu-cta {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ===== Hero carousel ===== */
.v85f-hero {
  margin: 4px 0 16px;
  border-radius: var(--v85f-radius);
  overflow: hidden;
  box-shadow: var(--v85f-shadow);
  position: relative;
}
.v85f-carousel {
  position: relative;
  overflow: hidden;
}
.v85f-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.v85f-slide {
  flex: 0 0 100%;
  position: relative;
  cursor: pointer;
}
.v85f-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.v85f-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.78) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.v85f-slide-text {
  color: var(--v85f-text);
}
.v85f-slide-text h2 {
  margin: 0 0 4px;
  font-size: 17px;
  color: var(--v85f-accent);
}
.v85f-slide-text p {
  margin: 0;
  font-size: 12px;
  color: var(--v85f-text-dim);
}
.v85f-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--v85f-border);
  color: var(--v85f-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
}
.v85f-carousel-arrow:hover { background: rgba(124, 252, 0, 0.22); }
.v85f-carousel-prev { left: 8px; }
.v85f-carousel-next { right: 8px; }
.v85f-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}
.v85f-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.v85f-dot.v85f-dot-active {
  background: var(--v85f-accent);
  transform: scale(1.25);
}

/* ===== Promo strip ===== */
.v85f-promo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.v85f-promo-card {
  background: linear-gradient(135deg, #303030 0%, #262626 100%);
  border: 1px solid var(--v85f-border);
  border-radius: var(--v85f-radius-sm);
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.v85f-promo-card:active { transform: scale(0.97); }
.v85f-promo-card .v85f-promo-ico {
  font-size: 18px;
  margin-bottom: 4px;
}
.v85f-promo-card strong {
  display: block;
  font-size: 12px;
  color: var(--v85f-accent);
  line-height: 1.2;
}
.v85f-promo-card span {
  font-size: 10px;
  color: var(--v85f-text-dim);
}

/* ===== Section heading ===== */
.v85f-section {
  margin: 18px 0 8px;
}
.v85f-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(124, 252, 0, 0.25);
}
.v85f-section-head h2 {
  margin: 0;
  font-size: 17px;
  color: var(--v85f-text);
}
.v85f-section-head h2 em {
  color: var(--v85f-accent);
  font-style: normal;
}
.v85f-section-link {
  font-size: 12px;
  color: var(--v85f-accent);
  white-space: nowrap;
}

/* ===== Filter chips ===== */
.v85f-chips {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  margin-bottom: 12px;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.v85f-chips::-webkit-scrollbar { display: none; }
.v85f-chip {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--v85f-bg-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--v85f-text-dim);
  cursor: pointer;
  transition: all 0.22s ease;
}
.v85f-chip.v85f-chip-active,
.v85f-chip:hover {
  background: linear-gradient(135deg, var(--v85f-accent) 0%, var(--v85f-accent-2) 100%);
  color: #0d2b00;
  border-color: transparent;
  font-weight: 700;
}

/* ===== Game grid ===== */
.v85f-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .v85f-game-grid { gap: 9px; }
}
@media (min-width: 400px) {
  .v85f-game-grid { grid-template-columns: repeat(5, 1fr); }
}

.v85f-game {
  background: var(--v85f-bg-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--v85f-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.v85f-game:hover {
  transform: translateY(-2px);
  border-color: var(--v85f-border);
  box-shadow: 0 8px 18px rgba(124, 252, 0, 0.12);
}
.v85f-game:active { transform: scale(0.96); }
.v85f-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #1a1a1a;
  display: block;
}
.v85f-game-name {
  font-size: 11px;
  line-height: 1.25;
  color: var(--v85f-text);
  padding: 5px 6px 6px;
  text-align: center;
  background: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 28px;
}

/* ===== Info / content blocks ===== */
.v85f-card {
  background: var(--v85f-bg-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--v85f-radius);
  padding: 14px;
  margin: 10px 0;
}
.v85f-card h3 {
  color: var(--v85f-accent);
  margin-bottom: 8px;
}
.v85f-card p { font-size: 13px; }

.v85f-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0;
}
.v85f-grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 10px 0;
}
@media (min-width: 400px) {
  .v85f-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.v85f-feature {
  background: linear-gradient(135deg, #2f2f2f 0%, #232323 100%);
  border: 1px solid var(--v85f-border);
  border-radius: var(--v85f-radius-sm);
  padding: 12px 10px;
  text-align: center;
}
.v85f-feature-icon {
  font-size: 22px;
  margin-bottom: 4px;
}
.v85f-feature strong {
  display: block;
  color: var(--v85f-accent);
  font-size: 13px;
  margin-bottom: 3px;
}
.v85f-feature span {
  font-size: 11px;
  color: var(--v85f-text-dim);
  line-height: 1.4;
}

/* ===== Testimonials ===== */
.v85f-review {
  background: var(--v85f-bg-3);
  border-left: 3px solid var(--v85f-accent);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.v85f-review-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.v85f-review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v85f-accent) 0%, var(--v85f-accent-2) 100%);
  color: #0d2b00;
  font-weight: 800;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.v85f-review-name { font-size: 13px; font-weight: 700; color: var(--v85f-text); }
.v85f-review-stars { color: #ffd166; font-size: 11px; margin-left: auto; }
.v85f-review p { font-size: 12px; margin: 0; color: var(--v85f-text-dim); }

/* ===== Steps ===== */
.v85f-steps {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  counter-reset: step;
}
.v85f-steps li {
  position: relative;
  padding: 8px 10px 8px 38px;
  font-size: 13px;
  color: var(--v85f-text-dim);
  border-left: 1px dashed rgba(124, 252, 0, 0.35);
  margin-left: 12px;
}
.v85f-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -12px;
  top: 8px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--v85f-accent) 0%, var(--v85f-accent-2) 100%);
  color: #0d2b00;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== Achievement strip ===== */
.v85f-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 10px 0;
}
.v85f-stat {
  background: var(--v85f-bg-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--v85f-radius-sm);
  padding: 10px 6px;
  text-align: center;
}
.v85f-stat b {
  display: block;
  font-size: 18px;
  color: var(--v85f-accent);
  line-height: 1;
}
.v85f-stat span { font-size: 10px; color: var(--v85f-text-dim); }

/* ===== Article prose for SEO content ===== */
.v85f-prose {
  font-size: 14px;
  color: var(--v85f-text-dim);
  line-height: 1.75;
}
.v85f-prose h2 { color: var(--v85f-text); margin-top: 18px; }
.v85f-prose h3 { color: var(--v85f-accent); margin-top: 14px; }
.v85f-prose p { margin: 0 0 12px; color: var(--v85f-text-dim); }
.v85f-prose a { color: var(--v85f-accent); border-bottom: 1px dashed rgba(124, 252, 0, 0.45); }
.v85f-prose ul { padding-left: 18px; margin: 0 0 12px; }
.v85f-prose li { margin-bottom: 6px; }

/* ===== Inline CTA banner ===== */
.v85f-cta {
  background: linear-gradient(135deg, rgba(124, 252, 0, 0.16) 0%, rgba(127, 255, 0, 0.06) 100%);
  border: 1px solid var(--v85f-border);
  border-radius: var(--v85f-radius);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
}
.v85f-cta-text { flex: 1; min-width: 0; }
.v85f-cta-text strong { color: var(--v85f-accent); display: block; font-size: 14px; }
.v85f-cta-text span { color: var(--v85f-text-dim); font-size: 12px; }

/* ===== Extended footer (homepage only) ===== */
.v85f-ext-footer {
  margin: 22px 0 6px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--v85f-radius);
  padding: 14px;
}
.v85f-ext-footer h3 {
  color: var(--v85f-accent);
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.v85f-ext-footer p { font-size: 12px; color: var(--v85f-text-dim); }
.v85f-promo-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin: 10px 0;
}
.v85f-promo-link {
  background: var(--v85f-bg-3);
  border: 1px solid var(--v85f-border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--v85f-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.v85f-promo-link:hover { background: #3a3a3a; }
.v85f-promo-link span.ico { font-size: 14px; }

.v85f-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 10px 0;
}
.v85f-directory a {
  font-size: 12px;
  color: var(--v85f-text-dim);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.v85f-directory a:hover { color: var(--v85f-accent); border-color: var(--v85f-border); }

.v85f-disclaimer {
  margin-top: 10px;
  padding: 10px;
  border: 1px dashed rgba(255, 214, 102, 0.35);
  border-radius: 8px;
  background: rgba(255, 214, 102, 0.04);
  font-size: 11px;
  color: #e6e6e6;
  line-height: 1.55;
}

/* ===== Footer (common) ===== */
.v85f-footer {
  background: #181818;
  border-top: 1px solid var(--v85f-border);
  padding: 16px 12px calc(var(--v85f-bnav-h) + 16px);
  text-align: center;
}
.v85f-footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}
.v85f-footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: cover;
}
.v85f-footer-brand b { color: var(--v85f-accent); font-size: 15px; }
.v85f-footer p { font-size: 11px; color: #888; margin: 0 0 4px; }
.v85f-copy { font-size: 11px; color: #666; margin-top: 6px; }

/* ===== Bottom navigation (5 roles) ===== */
.v85f-bnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: var(--v85f-max-w);
  margin: 0 auto;
  height: var(--v85f-bnav-h);
  background: linear-gradient(180deg, #232323 0%, #161616 100%);
  border-top: 1px solid var(--v85f-border);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 60;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.5);
}
.v85f-bnav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #9a9aa3;
  font-size: 10px;
  cursor: pointer;
  text-decoration: none;
  padding: 6px 2px 4px;
  transition: color 0.25s ease;
}
.v85f-bnav-item svg {
  width: 22px;
  height: 22px;
  transition: transform 0.25s ease;
}
.v85f-bnav-item:active svg { transform: scale(0.88); }
.v85f-bnav-item:hover { color: var(--v85f-text); }
.v85f-bnav-current {
  color: var(--v85f-accent) !important;
}
.v85f-bnav-current svg { transform: translateY(-2px); }
.v85f-bnav-current::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--v85f-accent) 0%, var(--v85f-accent-2) 100%);
}
.v85f-bnav-promo {
  background: linear-gradient(135deg, rgba(124, 252, 0, 0.18) 0%, rgba(127, 255, 0, 0.06) 100%);
  color: var(--v85f-accent);
  border: 1px solid var(--v85f-border);
  border-radius: 12px 12px 0 0;
  margin: 4px 4px 0;
}

/* ===== Back to top ===== */
.v85f-top {
  position: fixed;
  right: 14px;
  bottom: calc(var(--v85f-bnav-h) + 14px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v85f-accent) 0%, var(--v85f-accent-2) 100%);
  color: #0d2b00;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 50;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.v85f-top.v85f-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== Utility ===== */
.v85f-text-center { text-align: center; }
.v85f-mt-12 { margin-top: 12px; }
.v85f-mt-16 { margin-top: 16px; }
.v85f-hide { display: none !important; }

/* ===== Mobile breakpoint max-width 430px ===== */
@media (max-width: 430px) {
  .v85f-app { font-size: 14px; }
  .v85f-main { padding-left: 10px; padding-right: 10px; }
  .v85f-header { height: 56px; padding: 0 8px; }
  .v85f-brand-logo { width: 32px; height: 32px; }
  .v85f-brand-name { font-size: 16px; }
  .v85f-btn { font-size: 12px; padding: 8px 12px; min-height: 34px; }
  .v85f-icon-btn { width: 36px; height: 36px; }
  .v85f-hero { margin: 4px 0 12px; }
  .v85f-slide img { aspect-ratio: 16 / 10; }
  .v85f-slide-overlay { padding: 10px; }
  .v85f-slide-text h2 { font-size: 15px; }
  .v85f-slide-text p { font-size: 11px; }
  .v85f-carousel-arrow { width: 30px; height: 30px; }
  .v85f-promo-strip { gap: 6px; }
  .v85f-promo-card { padding: 8px 6px; }
  .v85f-promo-card .v85f-promo-ico { font-size: 16px; }
  .v85f-promo-card strong { font-size: 11px; }
  .v85f-promo-card span { font-size: 9px; }
  .v85f-section-head h2 { font-size: 15px; }
  .v85f-section-link { font-size: 11px; }
  .v85f-chip { padding: 6px 12px; font-size: 11px; }
  .v85f-game-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .v85f-game-name { font-size: 10px; padding: 4px 4px 5px; min-height: 26px; }
  .v85f-grid-2 { gap: 8px; }
  .v85f-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .v85f-feature { padding: 10px 8px; }
  .v85f-feature-icon { font-size: 20px; }
  .v85f-feature strong { font-size: 12px; }
  .v85f-feature span { font-size: 10px; }
  .v85f-stats { gap: 6px; }
  .v85f-stat b { font-size: 16px; }
  .v85f-stat span { font-size: 9px; }
  .v85f-card { padding: 12px; }
  .v85f-card p { font-size: 12px; }
  .v85f-cta { padding: 12px; gap: 10px; }
  .v85f-cta-text strong { font-size: 13px; }
  .v85f-cta-text span { font-size: 11px; }
  .v85f-bnav { height: 58px; }
  .v85f-bnav-item { font-size: 9px; padding: 5px 2px 4px; }
  .v85f-bnav-item svg { width: 20px; height: 20px; }
  .v85f-ext-footer { padding: 12px; }
  .v85f-promo-list { gap: 6px; }
  .v85f-promo-link { font-size: 11px; padding: 7px 8px; }
  .v85f-directory { gap: 5px; }
  .v85f-directory a { font-size: 11px; padding: 5px 7px; }
  .v85f-top { width: 38px; height: 38px; right: 10px; }
}
