/* ============================================================
 * okay-game.click portal styles (prefix: v87c-)
 * Mobile-first casino/gaming portal. Canvas: 320-430px.
 * Palette: #1A1A1A bg / #1E90FF primary / #40E0D0 / #00BFFF
 *          accent / #FFFFFF text / #FF8000 highlight.
 * ============================================================ */

:root {
  --v87c-bg: #1A1A1A;
  --v87c-bg-soft: #232323;
  --v87c-bg-card: #2a2a2a;
  --v87c-bg-elev: #303030;
  --v87c-primary: #1E90FF;
  --v87c-cyan: #40E0D0;
  --v87c-sky: #00BFFF;
  --v87c-text: #FFFFFF;
  --v87c-muted: #b8c0cc;
  --v87c-accent: #FF8000;
  --v87c-border: rgba(255, 255, 255, 0.08);
  --v87c-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  --v87c-radius: 14px;
  --v87c-header-h: 58px;
  --v87c-bnav-h: 64px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #1f3a55 0%, var(--v87c-bg) 55%) , var(--v87c-bg);
  color: var(--v87c-text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

body.v87c-no-scroll {
  overflow: hidden;
}

a {
  color: var(--v87c-sky);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.v87c-wrap {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 0 14px;
}

/* ============= Header ============= */
.v87c-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--v87c-header-h);
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.98) 0%, rgba(15, 15, 18, 0.96) 100%);
  border-bottom: 1px solid var(--v87c-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.v87c-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.v87c-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--v87c-primary), var(--v87c-cyan));
  padding: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.v87c-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.v87c-brand-name {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.2px;
  color: var(--v87c-text);
}

.v87c-brand-tag {
  font-size: 10.5px;
  color: var(--v87c-cyan);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.v87c-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--v87c-bg-card);
  border: 1px solid var(--v87c-border);
  color: var(--v87c-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  transition: background 0.18s ease, transform 0.18s ease;
}

.v87c-icon-btn:hover {
  background: var(--v87c-bg-elev);
}

.v87c-icon-btn:active {
  transform: scale(0.95);
}

.v87c-header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v87c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.18s ease;
  text-decoration: none;
  color: var(--v87c-text);
  white-space: nowrap;
}

.v87c-btn:active {
  transform: scale(0.96);
}

.v87c-btn-login {
  background: var(--v87c-bg-card);
  border-color: var(--v87c-border);
  color: var(--v87c-text);
}

.v87c-btn-register {
  background: linear-gradient(135deg, var(--v87c-accent), #ff9d33);
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(255, 128, 0, 0.32);
}

.v87c-btn-primary {
  background: linear-gradient(135deg, var(--v87c-primary), var(--v87c-sky));
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 144, 255, 0.32);
}

.v87c-btn-ghost {
  background: transparent;
  border-color: var(--v87c-border);
  color: var(--v87c-text);
}

/* ============= Hero carousel ============= */
.v87c-hero {
  position: relative;
  margin-top: 12px;
  border-radius: var(--v87c-radius);
  overflow: hidden;
  box-shadow: var(--v87c-shadow);
  background: var(--v87c-bg-card);
}

.v87c-hero-viewport {
  overflow: hidden;
  border-radius: var(--v87c-radius);
}

.v87c-hero-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.v87c-hero-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  cursor: pointer;
}

.v87c-hero-slide img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--v87c-radius);
}

.v87c-hero-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  padding: 18px 4px 4px;
  border-radius: 0 0 var(--v87c-radius) var(--v87c-radius);
  pointer-events: none;
}

.v87c-hero-caption span {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(30, 144, 255, 0.85);
  padding: 3px 9px;
  border-radius: 20px;
}

.v87c-hero-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.v87c-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}

.v87c-hero-dot.v87c-dot-active {
  background: var(--v87c-accent);
  width: 18px;
  border-radius: 4px;
}

.v87c-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.v87c-hero-arrow.v87c-hero-prev { left: 8px; }
.v87c-hero-arrow.v87c-hero-next { right: 8px; }

/* ============= Quick action strip ============= */
.v87c-quick {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.v87c-quick-item {
  background: var(--v87c-bg-card);
  border: 1px solid var(--v87c-border);
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
  color: var(--v87c-text);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.18s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.v87c-quick-item:hover {
  text-decoration: none;
  background: var(--v87c-bg-elev);
}

.v87c-quick-item:active {
  transform: scale(0.96);
}

.v87c-quick-ico {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v87c-primary), var(--v87c-cyan));
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.v87c-quick-item:nth-child(2) .v87c-quick-ico {
  background: linear-gradient(135deg, var(--v87c-accent), #ffb066);
  color: #1a1a1a;
}

.v87c-quick-item:nth-child(3) .v87c-quick-ico {
  background: linear-gradient(135deg, var(--v87c-sky), var(--v87c-cyan));
}

.v87c-quick-item:nth-child(4) .v87c-quick-ico {
  background: linear-gradient(135deg, #ff4d6d, #ff8a5b);
}

.v87c-quick-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--v87c-muted);
}

/* ============= Category chips ============= */
.v87c-chips {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.v87c-chips::-webkit-scrollbar { display: none; }

.v87c-cat-chip {
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 20px;
  background: var(--v87c-bg-card);
  border: 1px solid var(--v87c-border);
  color: var(--v87c-muted);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.v87c-cat-chip:hover {
  background: var(--v87c-bg-elev);
  color: var(--v87c-text);
  text-decoration: none;
}

.v87c-cat-chip.v87c-chip-active {
  background: linear-gradient(135deg, var(--v87c-primary), var(--v87c-sky));
  color: #fff;
  border-color: transparent;
}

/* ============= Section heading ============= */
.v87c-section {
  margin-top: 22px;
}

.v87c-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.v87c-section-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--v87c-text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.v87c-section-title::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--v87c-accent), var(--v87c-primary));
}

.v87c-section-more {
  font-size: 12px;
  color: var(--v87c-sky);
  font-weight: 600;
}

/* ============= Game grid ============= */
.v87c-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (min-width: 360px) {
  .v87c-grid { gap: 10px; }
}

@media (min-width: 400px) {
  .v87c-grid { grid-template-columns: repeat(5, 1fr); }
}

.v87c-card {
  background: var(--v87c-bg-card);
  border: 1px solid var(--v87c-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: block;
  text-align: left;
  padding: 0;
  color: inherit;
  font: inherit;
}

.v87c-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(30, 144, 255, 0.45);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  color: inherit;
}

.v87c-card:active {
  transform: scale(0.97);
}

.v87c-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0f0f12;
  display: block;
}

.v87c-card-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--v87c-text);
  padding: 6px 6px 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

/* ============= Info / content blocks ============= */
.v87c-info {
  background: var(--v87c-bg-card);
  border: 1px solid var(--v87c-border);
  border-radius: var(--v87c-radius);
  padding: 16px;
  margin-top: 22px;
}

.v87c-info h2 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--v87c-text);
}

.v87c-info h3 {
  margin: 14px 0 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--v87c-cyan);
}

.v87c-info p {
  margin: 0 0 10px;
  color: var(--v87c-muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.v87c-info ul {
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--v87c-muted);
  font-size: 13.5px;
}

.v87c-info li {
  margin-bottom: 5px;
}

.v87c-info a {
  color: var(--v87c-sky);
}

.v87c-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.v87c-feature {
  background: var(--v87c-bg-soft);
  border: 1px solid var(--v87c-border);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}

.v87c-feature-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--v87c-accent);
  display: block;
}

.v87c-feature-label {
  font-size: 11px;
  color: var(--v87c-muted);
  margin-top: 2px;
  display: block;
}

/* ============= FAQ ============= */
.v87c-faq-item {
  background: var(--v87c-bg-soft);
  border: 1px solid var(--v87c-border);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
}

.v87c-faq-q {
  font-weight: 700;
  color: var(--v87c-text);
  font-size: 13.5px;
  margin: 0 0 5px;
}

.v87c-faq-a {
  margin: 0;
  color: var(--v87c-muted);
  font-size: 12.8px;
  line-height: 1.6;
}

/* ============= Extended promo footer ============= */
.v87c-ext {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.12), rgba(64, 224, 208, 0.08));
  border: 1px solid rgba(30, 144, 255, 0.28);
  border-radius: var(--v87c-radius);
  padding: 16px;
}

.v87c-ext-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--v87c-text);
  display: flex;
  align-items: center;
  gap: 7px;
}

.v87c-ext-title::before {
  content: "";
  width: 4px;
  height: 15px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--v87c-accent), var(--v87c-primary));
}

.v87c-ext-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.v87c-ext-link {
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--v87c-border);
  border-radius: 10px;
  padding: 9px 6px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--v87c-text);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.15s ease;
}

.v87c-ext-link:hover {
  text-decoration: none;
  background: rgba(30, 144, 255, 0.2);
  color: #fff;
}

.v87c-ext-link:active {
  transform: scale(0.96);
}

.v87c-ext-link.is-promo {
  background: linear-gradient(135deg, var(--v87c-accent), #ff9d33);
  color: #1a1a1a;
  border-color: transparent;
}

.v87c-ext-brand {
  margin-top: 12px;
  font-size: 12.3px;
  color: var(--v87c-muted);
  line-height: 1.6;
}

.v87c-disclaimer {
  margin-top: 14px;
  font-size: 11px;
  color: #7c8696;
  line-height: 1.55;
  border-top: 1px dashed var(--v87c-border);
  padding-top: 10px;
}

/* ============= Footer ============= */
.v87c-footer {
  margin-top: 26px;
  background: #111114;
  border-top: 1px solid var(--v87c-border);
  padding: 20px 0 calc(var(--v87c-bnav-h) + 16px);
}

.v87c-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.v87c-footer h4 {
  font-size: 13px;
  color: var(--v87c-text);
  margin: 0 0 8px;
  font-weight: 700;
}

.v87c-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v87c-footer li {
  margin-bottom: 5px;
}

.v87c-footer a {
  color: var(--v87c-muted);
  font-size: 12.3px;
}

.v87c-footer a:hover {
  color: var(--v87c-sky);
}

.v87c-footer-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--v87c-border);
  font-size: 11px;
  color: #6f7886;
  text-align: center;
  line-height: 1.6;
}

/* ============= Side menu drawer ============= */
.v87c-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 90;
}

.v87c-menu-backdrop.v87c-menu-visible {
  opacity: 1;
  visibility: visible;
}

.v87c-side-menu {
  position: fixed;
  top: 0;
  right: -82%;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #1c1c20, #141417);
  border-left: 1px solid var(--v87c-border);
  z-index: 100;
  transform: translateX(0);
  transition: right 0.26s ease;
  overflow-y: auto;
  padding: 16px 16px calc(var(--v87c-bnav-h) + 16px);
}

.v87c-side-menu.v87c-menu-open {
  right: 0;
}

.v87c-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.v87c-menu-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--v87c-text);
}

.v87c-menu-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--v87c-bg-card);
  border: 1px solid var(--v87c-border);
  color: var(--v87c-text);
  font-size: 16px;
  cursor: pointer;
}

.v87c-menu-cta {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.v87c-menu-cta .v87c-btn {
  flex: 1;
}

.v87c-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v87c-menu-list li {
  margin-bottom: 4px;
}

.v87c-menu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--v87c-text);
  font-size: 13.5px;
  font-weight: 600;
  background: var(--v87c-bg-card);
  border: 1px solid var(--v87c-border);
}

.v87c-menu-list a:hover {
  background: var(--v87c-bg-elev);
  text-decoration: none;
}

.v87c-menu-list a::before {
  content: "›";
  color: var(--v87c-accent);
  font-size: 16px;
  font-weight: 800;
}

/* ============= Mobile bottom nav ============= */
.v87c-bnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  height: var(--v87c-bnav-h);
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.98), rgba(12, 12, 14, 0.98));
  border-top: 1px solid var(--v87c-border);
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.v87c-bnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--v87c-muted);
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 6px 2px;
  text-decoration: none;
  font: inherit;
  position: relative;
  transition: color 0.18s ease;
}

.v87c-bnav-item:hover {
  text-decoration: none;
}

.v87c-bnav-ico {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v87c-bnav-ico svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.v87c-bnav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.v87c-bnav-item.v87c-bnav-promo {
  color: var(--v87c-accent);
}

.v87c-bnav-item.v87c-bnav-promo-2 {
  color: var(--v87c-cyan);
}

.v87c-bnav-item.v87c-bnav-current {
  color: var(--v87c-sky);
}

.v87c-bnav-item.v87c-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(--v87c-accent), var(--v87c-primary));
}

/* ============= Floating top button ============= */
.v87c-top-btn {
  position: fixed;
  right: 14px;
  bottom: calc(var(--v87c-bnav-h) + 12px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v87c-primary), var(--v87c-sky));
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--v87c-shadow);
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v87c-top-btn:active {
  transform: scale(0.92);
}

/* ============= Editorial page additions ============= */
.v87c-page-title {
  margin: 18px 0 8px;
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(25px, 7vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #fff;
}

.v87c-lede {
  margin: 0 0 14px;
  color: var(--v87c-muted);
  font-size: 14px;
  line-height: 1.7;
}

.v87c-info + .v87c-info { margin-top: 14px; }
.v87c-info strong { color: #fff; }
.v87c-info ol { margin: 0 0 12px; padding-left: 20px; color: var(--v87c-muted); font-size: 13.5px; }
.v87c-info ol li { margin-bottom: 8px; padding-left: 3px; }
.v87c-callout { border-left: 3px solid var(--v87c-accent); padding: 10px 12px; background: rgba(255,128,0,.08); border-radius: 0 10px 10px 0; color: var(--v87c-muted); font-size: 13.2px; }
.v87c-step-list { display: grid; gap: 9px; margin-top: 10px; }
.v87c-step { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: start; padding: 10px; background: var(--v87c-bg-soft); border: 1px solid var(--v87c-border); border-radius: 11px; }
.v87c-step-num { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(135deg,var(--v87c-primary),var(--v87c-cyan)); color: #07131e; font-weight: 900; }
.v87c-step h3 { margin: 0 0 3px; font-size: 14px; color: #fff; }
.v87c-step p { margin: 0; font-size: 12.8px; }
.v87c-action-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.v87c-action-row a { min-height: 44px; }
.v87c-table-wrap { overflow-x: auto; }
.v87c-table { width: 100%; border-collapse: collapse; font-size: 12.5px; color: var(--v87c-muted); }
.v87c-table th, .v87c-table td { padding: 9px 7px; text-align: left; border-bottom: 1px solid var(--v87c-border); vertical-align: top; }
.v87c-table th { color: var(--v87c-cyan); font-weight: 700; }
.v87c-note { color: #9ba7b7; font-size: 12px; }

/* ============= Main padding ============= */
.v87c-main {
  padding-top: 4px;
  padding-bottom: calc(var(--v87c-bnav-h) + 18px);
}

.v87c-hidden { display: none !important; }

/* Keep the mobile canvas centered on wider screens */
.v87c-desktop-frame {
  max-width: 440px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: transparent;
}

@media (min-width: 480px) {
  body { background: #0a0a0c; }
  .v87c-desktop-frame {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  }
}
