/* ==========================================================================
   bn800.cyou stylesheet
   Every selector uses the frameb0de0- prefix. Mobile-first, single column
   phone canvas centered on wide screens. Right-angle tool feel, grouped
   cover cards and square-corner high-contrast CTAs.
   ========================================================================== */

:root {
  --frameb0de0-bg: #0E1621;
  --frameb0de0-bg-deep: #0A111C;
  --frameb0de0-bg-soft: #131F31;
  --frameb0de0-card: #18253A;
  --frameb0de0-card-soft: #1F2F48;
  --frameb0de0-line: rgba(255, 255, 255, 0.08);
  --frameb0de0-line-strong: rgba(255, 255, 255, 0.18);
  --frameb0de0-text: #F4F6FB;
  --frameb0de0-text-dim: #9FB0C9;
  --frameb0de0-text-mute: #6E7E97;
  --frameb0de0-coral: #FF8A80;
  --frameb0de0-purple: #9400D3;
  --frameb0de0-yellow: #FFF176;
  --frameb0de0-pink: #E91E63;
  --frameb0de0-topbar-h: 58px;
  --frameb0de0-footnav-h: 66px;
  --frameb0de0-radius: 4px;
  --frameb0de0-radius-lg: 8px;
  --frameb0de0-font: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  background: #05090F;
  color: var(--frameb0de0-text);
  font-family: var(--frameb0de0-font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--frameb0de0-coral); text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--frameb0de0-yellow);
  outline-offset: 2px;
}

/* Centered phone canvas on wide screens. */
.frameb0de0-shell {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  background: var(--frameb0de0-bg);
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* ==========================================================================
   Top bar - edge aligned functional header
   ========================================================================== */
.frameb0de0-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: var(--frameb0de0-topbar-h);
  padding: 0 12px;
  background: linear-gradient(180deg, rgba(14, 22, 33, 0.98) 0%, rgba(14, 22, 33, 0.92) 100%);
  border-bottom: 1px solid var(--frameb0de0-line);
  backdrop-filter: blur(8px);
}

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

.frameb0de0-logo {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: var(--frameb0de0-radius);
  border: 1px solid var(--frameb0de0-line-strong);
  flex-shrink: 0;
}

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

.frameb0de0-brand-name::after {
  content: ".cyou";
  color: var(--frameb0de0-coral);
  font-weight: 700;
  letter-spacing: 0;
}

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

.frameb0de0-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 12px;
  border-radius: var(--frameb0de0-radius);
  min-height: 36px;
  min-width: 44px;
  line-height: 1;
  transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease;
}

.frameb0de0-btn:active { transform: translateY(1px); }

.frameb0de0-btn--login {
  background: transparent;
  color: var(--frameb0de0-text);
  border: 1px solid var(--frameb0de0-line-strong);
}

.frameb0de0-btn--login:hover { background: var(--frameb0de0-card-soft); }

.frameb0de0-btn--register {
  background: var(--frameb0de0-yellow);
  color: #2A1A00;
  font-weight: 800;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.frameb0de0-btn--register:hover { background: #FFE94A; }

.frameb0de0-burger {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--frameb0de0-card);
  border: 1px solid var(--frameb0de0-line);
  border-radius: var(--frameb0de0-radius);
  cursor: pointer;
  color: var(--frameb0de0-text);
  padding: 0;
}

.frameb0de0-burger svg { width: 20px; height: 20px; display: block; }

/* ==========================================================================
   Full-height menu layer
   ========================================================================== */
.frameb0de0-mask {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 15, 0.66);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 70;
}

.frameb0de0-mask--show {
  opacity: 1;
  pointer-events: auto;
}

.frameb0de0-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 84%;
  max-width: 360px;
  background: var(--frameb0de0-bg-deep);
  border-left: 1px solid var(--frameb0de0-line-strong);
  transform: translateX(105%);
  transition: transform 0.26s cubic-bezier(0.22, 0.66, 0.3, 1);
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 20px 18px calc(var(--frameb0de0-footnav-h) + 18px);
  overflow-y: auto;
}

.frameb0de0-menu--open { transform: translateX(0); }

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

.frameb0de0-menu-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--frameb0de0-text);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.frameb0de0-menu-close {
  border: 1px solid var(--frameb0de0-line-strong);
  background: transparent;
  color: var(--frameb0de0-text);
  width: 34px;
  height: 34px;
  border-radius: var(--frameb0de0-radius);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.frameb0de0-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.frameb0de0-menu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  color: var(--frameb0de0-text);
  border-radius: var(--frameb0de0-radius);
  font-size: 15px;
  font-weight: 600;
  border-left: 3px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.frameb0de0-menu-list a span {
  font-size: 11px;
  color: var(--frameb0de0-text-mute);
  font-weight: 500;
  margin-left: auto;
}

.frameb0de0-menu-list a:hover {
  background: var(--frameb0de0-card);
  border-left-color: var(--frameb0de0-coral);
}

.frameb0de0-menu-list a.frameb0de0-menu-link--active {
  background: var(--frameb0de0-card-soft);
  border-left-color: var(--frameb0de0-yellow);
}

.frameb0de0-menu-promo {
  margin-top: 18px;
  padding: 16px;
  background: linear-gradient(135deg, var(--frameb0de0-purple) 0%, var(--frameb0de0-pink) 100%);
  border-radius: var(--frameb0de0-radius-lg);
  color: #fff;
}

.frameb0de0-menu-promo strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.frameb0de0-menu-promo span {
  font-size: 12px;
  opacity: 0.92;
  display: block;
  margin-bottom: 12px;
}

.frameb0de0-menu-promo-btn {
  display: inline-block;
  background: var(--frameb0de0-yellow);
  color: #2A1A00;
  padding: 10px 16px;
  border-radius: var(--frameb0de0-radius);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

/* ==========================================================================
   Main column
   ========================================================================== */
.frameb0de0-main {
  padding: 14px 12px 32px;
}

.frameb0de0-hero {
  position: relative;
  border-radius: var(--frameb0de0-radius-lg);
  overflow: hidden;
  background: var(--frameb0de0-bg-deep);
  border: 1px solid var(--frameb0de0-line);
  margin-bottom: 16px;
}

.frameb0de0-slide {
  position: relative;
  display: none;
  height: 200px;
}

.frameb0de0-slide--active { display: block; }

.frameb0de0-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.08);
}

.frameb0de0-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 22, 33, 0.15) 0%, rgba(14, 22, 33, 0.92) 100%);
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}

.frameb0de0-slide-tag {
  display: inline-block;
  background: var(--frameb0de0-yellow);
  color: #2A1A00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 4px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

.frameb0de0-slide-title {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  max-width: 86%;
}

.frameb0de0-slide-sub {
  color: var(--frameb0de0-text-dim);
  font-size: 13px;
  margin: 0;
  max-width: 88%;
}

.frameb0de0-slide-cta {
  display: inline-block;
  background: var(--frameb0de0-pink);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: var(--frameb0de0-radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

.frameb0de0-slide-cta:hover { background: #FF2F73; }

.frameb0de0-dots {
  position: absolute;
  bottom: 10px;
  right: 14px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.frameb0de0-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
}

.frameb0de0-dot--active {
  background: var(--frameb0de0-yellow);
  width: 18px;
  border-radius: 4px;
}

/* ==========================================================================
   H1 and lead
   ========================================================================== */
.frameb0de0-lead {
  margin: 4px 2px 18px;
}

.frameb0de0-h1 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.28;
  margin: 0 0 8px;
  color: var(--frameb0de0-text);
}

.frameb0de0-h1 em {
  color: var(--frameb0de0-coral);
  font-style: normal;
}

.frameb0de0-lead p {
  margin: 0;
  color: var(--frameb0de0-text-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================================================
   Chips row
   ========================================================================== */
.frameb0de0-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  margin: 0 2px 14px;
  scrollbar-width: none;
}

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

.frameb0de0-chip {
  flex-shrink: 0;
  padding: 8px 12px;
  background: var(--frameb0de0-card);
  border: 1px solid var(--frameb0de0-line);
  color: var(--frameb0de0-text-dim);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--frameb0de0-radius);
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.3px;
}

.frameb0de0-chip--active {
  background: var(--frameb0de0-coral);
  color: #2A0A05;
  border-color: var(--frameb0de0-coral);
}

/* ==========================================================================
   Game section
   ========================================================================== */
.frameb0de0-section {
  margin: 0 2px 22px;
}

.frameb0de0-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--frameb0de0-line-strong);
}

.frameb0de0-section-head-left { min-width: 0; }

.frameb0de0-section-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--frameb0de0-yellow);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.frameb0de0-h2 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  color: var(--frameb0de0-text);
  line-height: 1.32;
}

.frameb0de0-section-count {
  font-size: 11px;
  color: var(--frameb0de0-text-mute);
  white-space: nowrap;
  font-weight: 600;
}

.frameb0de0-section-intro {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--frameb0de0-text-dim);
  line-height: 1.6;
}

.frameb0de0-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.frameb0de0-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--frameb0de0-card);
  border: 1px solid var(--frameb0de0-line);
  border-radius: var(--frameb0de0-radius);
  padding: 4px 4px 6px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.14s ease, border-color 0.18s ease, background 0.18s ease;
  font-family: inherit;
  color: inherit;
  text-align: center;
  width: 100%;
}

.frameb0de0-card:hover {
  transform: translateY(-2px);
  border-color: var(--frameb0de0-coral);
  background: var(--frameb0de0-card-soft);
}

.frameb0de0-card-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 3px;
  background: #0A111C;
}

.frameb0de0-card-name {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--frameb0de0-text);
  text-align: center;
  line-height: 1.25;
  min-height: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.frameb0de0-card-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--frameb0de0-pink);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 2px 5px;
  border-radius: 2px;
  text-transform: uppercase;
}

.frameb0de0-card-tag--hot { background: var(--frameb0de0-coral); color: #2A0A05; }
.frameb0de0-card-tag--new { background: var(--frameb0de0-yellow); color: #2A1A00; }

.frameb0de0-section-foot {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--frameb0de0-text-mute);
  line-height: 1.6;
}

.frameb0de0-section-foot a {
  color: var(--frameb0de0-coral);
  font-weight: 700;
}

.frameb0de0-section-foot a + a { margin-left: 4px; }

/* ==========================================================================
   Prose blocks (content modules)
   ========================================================================== */
.frameb0de0-prose {
  margin: 0 2px 22px;
  background: var(--frameb0de0-bg-soft);
  border: 1px solid var(--frameb0de0-line);
  border-left: 3px solid var(--frameb0de0-purple);
  border-radius: var(--frameb0de0-radius);
  padding: 14px 14px 12px;
}

.frameb0de0-prose--coral { border-left-color: var(--frameb0de0-coral); }
.frameb0de0-prose--yellow { border-left-color: var(--frameb0de0-yellow); }
.frameb0de0-prose--pink { border-left-color: var(--frameb0de0-pink); }

.frameb0de0-prose p {
  margin: 0 0 10px;
  color: var(--frameb0de0-text);
  font-size: 14px;
  line-height: 1.7;
}

.frameb0de0-prose p:last-child { margin-bottom: 0; }

.frameb0de0-prose strong { color: var(--frameb0de0-yellow); font-weight: 700; }

.frameb0de0-prose a { color: var(--frameb0de0-coral); font-weight: 700; border-bottom: 1px dashed currentColor; }

.frameb0de0-prose ul {
  margin: 6px 0 12px;
  padding-left: 18px;
}

.frameb0de0-prose li {
  margin-bottom: 6px;
  font-size: 13.5px;
  color: var(--frameb0de0-text);
  line-height: 1.6;
}

.frameb0de0-prose li strong { color: var(--frameb0de0-coral); }

/* Compact metric-explanation blocks */
.frameb0de0-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 8px 0 4px;
}

.frameb0de0-metric {
  background: var(--frameb0de0-card);
  border: 1px solid var(--frameb0de0-line);
  border-radius: var(--frameb0de0-radius);
  padding: 8px 6px;
  text-align: center;
}

.frameb0de0-metric strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--frameb0de0-yellow);
  line-height: 1.1;
}

.frameb0de0-metric span {
  display: block;
  font-size: 10px;
  color: var(--frameb0de0-text-mute);
  margin-top: 3px;
  letter-spacing: 0.3px;
}

/* Two-column compact directory inside prose */
.frameb0de0-twin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.frameb0de0-twin-item {
  background: var(--frameb0de0-card);
  border: 1px solid var(--frameb0de0-line);
  border-radius: var(--frameb0de0-radius);
  padding: 9px 10px;
}

.frameb0de0-twin-item strong {
  display: block;
  color: var(--frameb0de0-text);
  font-size: 13px;
  margin-bottom: 3px;
}

.frameb0de0-twin-item span {
  color: var(--frameb0de0-text-dim);
  font-size: 12px;
  line-height: 1.5;
}

/* Inline promo row inside modules */
.frameb0de0-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.frameb0de0-inline-cta button,
.frameb0de0-inline-cta a.frameb0de0-link-btn {
  flex: 1 1 auto;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: var(--frameb0de0-radius);
  font-family: inherit;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  border: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.frameb0de0-inline-cta .frameb0de0-cta-primary {
  background: var(--frameb0de0-yellow);
  color: #2A1A00;
}

.frameb0de0-inline-cta .frameb0de0-cta-ghost {
  background: transparent;
  color: var(--frameb0de0-text);
  border: 1px solid var(--frameb0de0-line-strong);
}

/* ==========================================================================
   Extended footer (homepage only)
   ========================================================================== */
.frameb0de0-extend {
  margin: 8px 2px 0;
  padding: 18px 14px 20px;
  background: var(--frameb0de0-bg-deep);
  border-top: 1px solid var(--frameb0de0-line-strong);
  border-radius: var(--frameb0de0-radius-lg) var(--frameb0de0-radius-lg) 0 0;
}

.frameb0de0-extend-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.frameb0de0-extend-brand img {
  width: 44px;
  height: 44px;
  border-radius: var(--frameb0de0-radius);
  border: 1px solid var(--frameb0de0-line-strong);
}

.frameb0de0-extend-brand strong {
  display: block;
  font-size: 15px;
  color: var(--frameb0de0-text);
  font-weight: 800;
}

.frameb0de0-extend-brand span {
  display: block;
  font-size: 12px;
  color: var(--frameb0de0-text-dim);
  line-height: 1.55;
  margin-top: 3px;
}

.frameb0de0-extend-block { margin-bottom: 16px; }

.frameb0de0-extend-block h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--frameb0de0-yellow);
  margin: 0 0 8px;
}

.frameb0de0-dir-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 10px;
}

.frameb0de0-dir-grid a {
  color: var(--frameb0de0-text-dim);
  font-size: 12.5px;
  padding: 4px 0;
  border-bottom: 1px solid var(--frameb0de0-line);
  line-height: 1.4;
}

.frameb0de0-dir-grid a:hover { color: var(--frameb0de0-coral); }

.frameb0de0-promo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.frameb0de0-promo-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  background: var(--frameb0de0-card);
  border: 1px solid var(--frameb0de0-line);
  border-radius: var(--frameb0de0-radius);
  cursor: pointer;
  color: var(--frameb0de0-text);
}

.frameb0de0-promo-list li:hover { background: var(--frameb0de0-card-soft); }

.frameb0de0-promo-list li strong {
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.frameb0de0-promo-list li span {
  font-size: 11px;
  color: var(--frameb0de0-text-mute);
  display: block;
  margin-top: 2px;
}

.frameb0de0-promo-list li em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: #2A1A00;
  background: var(--frameb0de0-yellow);
  padding: 4px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.frameb0de0-disclaimer {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px dashed var(--frameb0de0-line-strong);
  border-radius: var(--frameb0de0-radius);
  font-size: 11.5px;
  color: var(--frameb0de0-text-mute);
  line-height: 1.6;
}

/* ==========================================================================
   Copyright bar
   ========================================================================== */
.frameb0de0-copyright {
  text-align: center;
  padding: 14px 14px calc(var(--frameb0de0-footnav-h) + 18px);
  font-size: 11.5px;
  color: var(--frameb0de0-text-mute);
  background: var(--frameb0de0-bg-deep);
  border-top: 1px solid var(--frameb0de0-line);
}

.frameb0de0-copyright a { color: var(--frameb0de0-text-dim); }

/* ==========================================================================
   Mobile bottom navigation - segmented action bar
   ========================================================================== */
.frameb0de0-footnav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 430px;
  height: var(--frameb0de0-footnav-h);
  background: rgba(10, 17, 28, 0.985);
  border-top: 1px solid var(--frameb0de0-line-strong);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 65;
  backdrop-filter: blur(10px);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.frameb0de0-footnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--frameb0de0-text-mute);
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  padding: 4px 2px;
  transition: transform 0.14s ease, color 0.18s ease;
  min-height: 44px;
}

.frameb0de0-footnav-item svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.frameb0de0-footnav-item--active {
  color: var(--frameb0de0-yellow);
  transform: translateY(-2px);
}

.frameb0de0-footnav-item--active svg {
  fill: var(--frameb0de0-yellow);
  stroke: var(--frameb0de0-yellow);
}

.frameb0de0-footnav-item--promo svg {
  stroke: var(--frameb0de0-coral);
}

.frameb0de0-footnav-item--promo.frameb0de0-footnav-item--active svg {
  fill: var(--frameb0de0-coral);
}

.frameb0de0-footnav-item-label { letter-spacing: 0.2px; }

/* ==========================================================================
   430px breakpoint - widen game grid and tweak hero height
   ========================================================================== */
@media (min-width: 430px) {
  .frameb0de0-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }
  .frameb0de0-slide { height: 230px; }
  .frameb0de0-h1 { font-size: 24px; }
  .frameb0de0-card-name { font-size: 12px; }
  .frameb0de0-main { padding: 16px 16px 36px; }
}

@media (min-width: 380px) {
  .frameb0de0-grid { gap: 8px; }
}

/* Reduced motion friendliness */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
  .frameb0de0-menu { transition: none !important; }
}

/* Help-page layouts keep a distinct editorial rhythm from the homepage. */
.frameb0de0-help-intro { margin: 2px 0 18px; padding: 16px; border: 1px solid var(--frameb0de0-line-strong); background: linear-gradient(135deg, rgba(148,0,211,.25), rgba(233,30,99,.10)); }
.frameb0de0-help-intro h1 { margin: 0 0 9px; font-size: 23px; line-height: 1.25; }
.frameb0de0-help-intro p { margin: 0; color: var(--frameb0de0-text-dim); line-height: 1.7; }
.frameb0de0-help-index { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin: 0 0 20px; }
.frameb0de0-help-index a { display: block; padding: 10px; background: var(--frameb0de0-card); border: 1px solid var(--frameb0de0-line); color: var(--frameb0de0-text); font-size: 12px; font-weight: 700; }
.frameb0de0-help-index a strong { display: block; color: var(--frameb0de0-coral); font-size: 16px; }
.frameb0de0-help-block { margin: 0 0 18px; padding: 0 0 15px; border-bottom: 1px solid var(--frameb0de0-line-strong); }
.frameb0de0-help-block h2 { margin: 0 0 8px; padding-left: 10px; border-left: 4px solid var(--frameb0de0-coral); font-size: 17px; line-height: 1.35; }
.frameb0de0-help-block p { margin: 0 0 9px; color: var(--frameb0de0-text-dim); font-size: 14px; line-height: 1.75; }
.frameb0de0-help-block p:last-child { margin-bottom: 0; }
.frameb0de0-help-block ul, .frameb0de0-help-block ol { margin: 7px 0 10px; padding-left: 22px; }
.frameb0de0-help-block li { margin-bottom: 7px; color: var(--frameb0de0-text-dim); font-size: 13.5px; line-height: 1.65; }
.frameb0de0-help-block li strong { color: var(--frameb0de0-yellow); }
.frameb0de0-callout { margin: 10px 0; padding: 11px 12px; background: var(--frameb0de0-card-soft); border-left: 3px solid var(--frameb0de0-yellow); color: var(--frameb0de0-text); font-size: 13px; line-height: 1.7; }
.frameb0de0-checklist { display: grid; gap: 7px; margin-top: 9px; }
.frameb0de0-check { padding: 9px 10px 9px 32px; position: relative; background: var(--frameb0de0-bg-soft); border: 1px solid var(--frameb0de0-line); color: var(--frameb0de0-text-dim); font-size: 13px; line-height: 1.55; }
.frameb0de0-check::before { content: '✓'; position: absolute; left: 10px; top: 8px; color: var(--frameb0de0-yellow); font-weight: 800; }
.frameb0de0-answer-list { display: grid; gap: 8px; }
.frameb0de0-answer { padding: 11px 12px; background: var(--frameb0de0-card); border: 1px solid var(--frameb0de0-line); }
.frameb0de0-answer h3 { margin: 0 0 5px; color: var(--frameb0de0-text); font-size: 14px; }
.frameb0de0-answer p { margin: 0; font-size: 13px; }
.frameb0de0-help-promo { margin: 15px 0 19px; padding: 14px; background: linear-gradient(135deg, var(--frameb0de0-pink), var(--frameb0de0-purple)); }
.frameb0de0-help-promo strong { display: block; margin-bottom: 5px; font-size: 16px; }
.frameb0de0-help-promo p { margin: 0 0 10px; color: #fff; font-size: 13px; line-height: 1.6; }
.frameb0de0-help-promo button { min-height: 44px; padding: 9px 14px; border: 0; border-radius: var(--frameb0de0-radius); background: var(--frameb0de0-yellow); color: #2A1A00; font-family: inherit; font-weight: 800; cursor: pointer; }
.frameb0de0-review-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 0 0 20px; }
.frameb0de0-review-score { padding: 10px 5px; text-align: center; background: var(--frameb0de0-card); border-top: 3px solid var(--frameb0de0-coral); }
.frameb0de0-review-score strong { display: block; color: var(--frameb0de0-yellow); font-size: 18px; }
.frameb0de0-review-score span { display: block; color: var(--frameb0de0-text-mute); font-size: 10px; }

/* Visually hidden helper for screen-reader only labels */
.frameb0de0-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
