/*!
 * shbeta1.click - core basefile styles
 * All custom classes use the v6e0- prefix for namespace isolation.
 * Palette: #00FA9A (mint) | #3A3A3A (graphite) | #7FFF00 (chartreuse)
 * Mobile-first; max viewport 430px primary target.
 */

:root {
  --v6e0-mint: #00FA9A;
  --v6e0-graphite: #3A3A3A;
  --v6e0-chartreuse: #7FFF00;
  --v6e0-bg: #0c1411;
  --v6e0-bg-2: #111c18;
  --v6e0-bg-3: #18261f;
  --v6e0-card: #15211c;
  --v6e0-card-2: #1c2c25;
  --v6e0-border: rgba(0, 250, 154, 0.18);
  --v6e0-border-2: rgba(127, 255, 0, 0.22);
  --v6e0-text: #e8f5ee;
  --v6e0-muted: #93ada1;
  --v6e0-dark: #07100c;
  --v6e0-grad: linear-gradient(135deg, #00FA9A 0%, #7FFF00 100%);
  --v6e0-grad-2: linear-gradient(135deg, #00d98a 0%, #59cc00 100%);
  --v6e0-shadow: 0 10px 30px rgba(0, 250, 154, 0.12);
  --v6e0-radius: 14px;
  --v6e0-radius-lg: 20px;
  --v6e0-header-h: 64px;
  --v6e0-bottom-h: 62px;
  --v6e0-max: 430px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Be Vietnam Pro", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: var(--v6e0-bg);
  color: var(--v6e0-text);
  line-height: 1.55;
  font-size: 1.6rem;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--v6e0-mint); text-decoration: none; }
a:hover { color: var(--v6e0-chartreuse); }
button { font-family: inherit; cursor: pointer; }

.v6e0-no-scroll { overflow: hidden; }

/* ---------- Layout ---------- */
.v6e0-wrap {
  width: 100%;
  max-width: var(--v6e0-max);
  margin: 0 auto;
  padding: 0 14px;
}

main { padding-bottom: 90px; }

section { padding: 28px 0; }

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

.v6e0-section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 14px;
}
.v6e0-section-title::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 22px;
  border-radius: 4px;
  background: var(--v6e0-grad);
}

.v6e0-section-link {
  font-size: 1.25rem;
  color: var(--v6e0-chartreuse);
  font-weight: 600;
}

/* ---------- Header ---------- */
.v6e0-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 20, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--v6e0-border);
  transition: box-shadow .25s ease, background .25s ease;
}
.v6e0-header-scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  background: rgba(7, 16, 12, 0.97);
}

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

.v6e0-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 1.85rem;
  color: var(--v6e0-text);
  letter-spacing: -0.02em;
}
.v6e0-logo-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--v6e0-grad);
  display: grid; place-items: center;
  color: #07100c;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0, 250, 154, 0.35);
}
.v6e0-logo b { color: var(--v6e0-mint); }

.v6e0-header-spacer { flex: 1; }

.v6e0-burger {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--v6e0-border);
  background: var(--v6e0-card);
  color: var(--v6e0-text);
  display: grid; place-items: center;
  font-size: 2rem;
}

.v6e0-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: none; border-radius: 10px;
  padding: 10px 16px;
  font-size: 1.35rem;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
}
.v6e0-btn:active { transform: translateY(1px) scale(.98); }
.v6e0-btn-primary {
  background: var(--v6e0-grad);
  color: #07100c;
  box-shadow: 0 6px 16px rgba(0, 250, 154, 0.35);
}
.v6e0-btn-ghost {
  background: transparent;
  color: var(--v6e0-mint);
  border: 1.5px solid var(--v6e0-mint);
}
.v6e0-btn-block { width: 100%; justify-content: center; padding: 14px; font-size: 1.5rem; }

.v6e0-header-cta { display: flex; gap: 8px; }
.v6e0-header-cta .v6e0-btn { padding: 9px 12px; font-size: 1.25rem; }

/* ---------- Top nav (mobile primary, desktop horizontal) ---------- */
.v6e0-topnav {
  border-bottom: 1px solid var(--v6e0-border);
  background: var(--v6e0-bg-2);
}
.v6e0-topnav-row {
  display: flex; gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 14px;
}
.v6e0-topnav-row::-webkit-scrollbar { display: none; }
.v6e0-topnav a {
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 1.3rem;
  color: var(--v6e0-muted);
  font-weight: 600;
}
.v6e0-topnav a:hover,
.v6e0-topnav a.v6e0-nav-active { color: #07100c; background: var(--v6e0-grad); }

/* ---------- Mobile slide-in menu ---------- */
#v6e0-mobile-menu {
  position: fixed;
  top: 0; right: -86%;
  width: 82%; max-width: 340px;
  height: 100%;
  background: var(--v6e0-bg-2);
  border-left: 1px solid var(--v6e0-border);
  z-index: 9999;
  transform: translateX(0);
  transition: right .3s ease;
  padding: 20px 18px;
  overflow-y: auto;
}
#v6e0-mobile-menu.v6e0-menu-open { right: 0; }
.v6e0-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.v6e0-menu-close {
  width: 38px; height: 38px;
  border-radius: 10px; border: 1px solid var(--v6e0-border);
  background: var(--v6e0-card);
  color: var(--v6e0-text); font-size: 1.7rem;
}
.v6e0-menu-links { display: flex; flex-direction: column; gap: 6px; }
.v6e0-menu-links a {
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--v6e0-text);
  font-weight: 600;
  background: var(--v6e0-card);
  border: 1px solid transparent;
}
.v6e0-menu-links a:hover { border-color: var(--v6e0-border); color: var(--v6e0-mint); }
.v6e0-menu-cta { display: flex; gap: 8px; margin-top: 18px; }
.v6e0-menu-cta .v6e0-btn { flex: 1; justify-content: center; }

#v6e0-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9990;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
#v6e0-menu-backdrop.v6e0-backdrop-show { opacity: 1; pointer-events: auto; }

/* ---------- Hero carousel ---------- */
.v6e0-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--v6e0-radius-lg);
  margin-top: 16px;
}
.v6e0-hero-viewport { overflow: hidden; border-radius: var(--v6e0-radius-lg); }
.v6e0-hero-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,.0,.2,1);
}
.v6e0-hero-slide {
  min-width: 100%;
  position: relative;
  padding: 26px 22px 24px;
  min-height: 220px;
  background: linear-gradient(135deg, #0f2a20 0%, #1a3a2a 60%, #2a4a1a 100%);
  border: 1px solid var(--v6e0-border);
  border-radius: var(--v6e0-radius-lg);
}
.v6e0-hero-slide::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(127,255,0,.25), transparent 70%);
  pointer-events: none;
}
.v6e0-hero-eyebrow {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 30px;
  background: rgba(127,255,0,.15);
  color: var(--v6e0-chartreuse);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.v6e0-hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 8px;
  color: #fff;
}
.v6e0-hero-title b { color: var(--v6e0-mint); }
.v6e0-hero-sub {
  color: var(--v6e0-muted);
  margin: 0 0 16px;
  font-size: 1.35rem;
}
.v6e0-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.v6e0-hero-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(7, 16, 12, .7);
  border: 1px solid var(--v6e0-border);
  color: var(--v6e0-mint);
  display: grid; place-items: center;
  z-index: 4;
}
.v6e0-hero-prev { left: 8px; }
.v6e0-hero-next { right: 8px; }
.v6e0-hero-dots {
  position: absolute; bottom: 10px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
  z-index: 4;
}
.v6e0-hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; padding: 0;
}
.v6e0-hero-dot.v6e0-dot-active { background: var(--v6e0-mint); width: 18px; border-radius: 4px; }

/* ---------- Quick stat strip ---------- */
.v6e0-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.v6e0-stat {
  background: var(--v6e0-card);
  border: 1px solid var(--v6e0-border);
  border-radius: var(--v6e0-radius);
  padding: 12px 8px;
  text-align: center;
}
.v6e0-stat b {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--v6e0-chartreuse);
}
.v6e0-stat span { font-size: 1.1rem; color: var(--v6e0-muted); }

/* ---------- Chip rail (category filter) ---------- */
.v6e0-chip-rail {
  display: flex; gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0 10px;
}
.v6e0-chip-rail::-webkit-scrollbar { display: none; }
.v6e0-chip {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 30px;
  background: var(--v6e0-card);
  border: 1px solid var(--v6e0-border);
  color: var(--v6e0-text);
  font-size: 1.25rem;
  font-weight: 700;
}
.v6e0-chip.v6e0-chip-active {
  background: var(--v6e0-grad);
  color: #07100c;
  border-color: transparent;
}

/* ---------- Game grid ---------- */
.v6e0-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.v6e0-card {
  background: var(--v6e0-card);
  border: 1px solid var(--v6e0-border);
  border-radius: var(--v6e0-radius);
  overflow: hidden;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.v6e0-card:hover {
  transform: translateY(-3px);
  border-color: var(--v6e0-border-2);
  box-shadow: var(--v6e0-shadow);
}
.v6e0-card-img {
  aspect-ratio: 1/1;
  background: var(--v6e0-card-2);
  position: relative;
  overflow: hidden;
}
.v6e0-card-img img { width: 100%; height: 100%; object-fit: cover; }
.v6e0-card-badge {
  position: absolute; top: 6px; left: 6px;
  background: rgba(127,255,0,.92);
  color: #07100c;
  font-size: 1rem; font-weight: 800;
  padding: 2px 7px;
  border-radius: 8px;
}
.v6e0-card-play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(7,16,12,.55);
  opacity: 0; transition: opacity .2s;
  color: #07100c;
}
.v6e0-card:hover .v6e0-card-play { opacity: 1; }
.v6e0-card-play span {
  background: var(--v6e0-grad);
  border-radius: 24px;
  padding: 6px 14px;
  font-weight: 800; font-size: 1.2rem;
}
.v6e0-card-name {
  padding: 8px 10px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: var(--v6e0-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---------- Featured banner ---------- */
.v6e0-feature {
  background: linear-gradient(135deg, #14322a 0%, #1d4a2a 100%);
  border: 1px solid var(--v6e0-border);
  border-radius: var(--v6e0-radius-lg);
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.v6e0-feature h3 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}
.v6e0-feature p { margin: 0; color: var(--v6e0-muted); font-size: 1.3rem; }

/* ---------- Promo banner CTA ---------- */
.v6e0-promo-banner {
  background: var(--v6e0-grad);
  color: #07100c;
  border-radius: var(--v6e0-radius-lg);
  padding: 22px 18px;
  text-align: center;
  margin: 8px 0;
}
.v6e0-promo-banner h3 { margin: 0 0 6px; font-size: 2rem; font-weight: 900; }
.v6e0-promo-banner p { margin: 0 0 14px; font-size: 1.3rem; font-weight: 600; }
.v6e0-promo-banner .v6e0-btn {
  background: #07100c; color: var(--v6e0-mint);
  padding: 12px 22px; font-size: 1.4rem;
}

/* ---------- SEO article ---------- */
.v6e0-article {
  background: var(--v6e0-bg-2);
  border: 1px solid var(--v6e0-border);
  border-radius: var(--v6e0-radius-lg);
  padding: 22px 18px;
  color: var(--v6e0-text);
  font-size: 1.45rem;
}
.v6e0-article h2 { font-size: 2rem; margin: 0 0 12px; color: var(--v6e0-mint); }
.v6e0-article h3 { font-size: 1.6rem; margin: 18px 0 8px; color: var(--v6e0-chartreuse); }
.v6e0-article p { margin: 0 0 12px; color: #cddfd4; }
.v6e0-article ul { padding-left: 20px; margin: 0 0 12px; }
.v6e0-article li { margin-bottom: 6px; color: #cddfd4; }
.v6e0-article strong { color: var(--v6e0-mint); }
.v6e0-article a { font-weight: 600; }

/* ---------- FAQ ---------- */
.v6e0-faq { display: flex; flex-direction: column; gap: 10px; }
.v6e0-faq-item {
  background: var(--v6e0-card);
  border: 1px solid var(--v6e0-border);
  border-radius: var(--v6e0-radius);
  overflow: hidden;
}
.v6e0-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--v6e0-text);
  padding: 14px 16px;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; justify-content: space-between; gap: 10px; align-items: center;
}
.v6e0-faq-q i { color: var(--v6e0-mint); transition: transform .25s; }
.v6e0-faq-item.v6e0-faq-open .v6e0-faq-q i { transform: rotate(45deg); }
.v6e0-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 16px;
  color: var(--v6e0-muted);
  font-size: 1.3rem;
}
.v6e0-faq-item.v6e0-faq-open .v6e0-faq-a { padding-bottom: 14px; }

/* ---------- Footer ---------- */
.v6e0-footer {
  background: var(--v6e0-dark);
  border-top: 1px solid var(--v6e0-border);
  padding: 28px 0 24px;
  margin-top: 16px;
}
.v6e0-footer h4 {
  font-size: 1.45rem;
  margin: 16px 0 8px;
  color: var(--v6e0-mint);
  font-weight: 800;
}
.v6e0-footer ul { list-style: none; padding: 0; margin: 0; }
.v6e0-footer li { margin-bottom: 6px; }
.v6e0-footer a { color: var(--v6e0-muted); font-size: 1.25rem; }
.v6e0-footer a:hover { color: var(--v6e0-chartreuse); }
.v6e0-footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--v6e0-border);
  font-size: 1.15rem;
  color: var(--v6e0-muted);
  text-align: center;
}

/* ---------- Bottom nav (mobile) ---------- */
.v6e0-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--v6e0-bottom-h);
  background: rgba(7, 16, 12, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--v6e0-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.v6e0-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--v6e0-muted);
  font-size: 1rem;
  font-weight: 600;
  min-width: 60px;
  min-height: 60px;
  position: relative;
  transition: color .2s;
}
.v6e0-bottom-nav a:hover,
.v6e0-bottom-nav a.v6e0-nav-active { color: var(--v6e0-mint); }
.v6e0-bottom-nav a .material-icons,
.v6e0-bottom-nav a i { font-size: 22px; }
.v6e0-bottom-nav a.v6e0-bottom-promo {
  color: #07100c;
}
.v6e0-bottom-nav .v6e0-bottom-promo-bg {
  background: var(--v6e0-grad);
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(0, 250, 154, .35);
  margin-bottom: 2px;
}
.v6e0-bottom-nav .v6e0-bottom-promo-bg i { color: #07100c; font-size: 22px; }

/* ---------- Back to top ---------- */
#v6e0-to-top {
  position: fixed;
  bottom: calc(var(--v6e0-bottom-h) + 14px);
  right: 14px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--v6e0-grad);
  color: #07100c;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 900;
  border: none;
  box-shadow: 0 6px 16px rgba(0,250,154,.4);
}
#v6e0-to-top.v6e0-show { opacity: 1; pointer-events: auto; }

/* ---------- Desktop ---------- */
@media (min-width: 768px) {
  .v6e0-bottom-nav { display: none; }
  main { padding-bottom: 40px; }
  .v6e0-wrap { max-width: 960px; padding: 0 24px; }
  .v6e0-grid { grid-template-columns: repeat(5, 1fr); }
  .v6e0-header-cta .v6e0-btn { padding: 10px 18px; font-size: 1.35rem; }
  .v6e0-burger { display: none; }
  .v6e0-hero-title { font-size: 3.4rem; }
  #v6e0-to-top { bottom: 24px; }
}

@media (min-width: 1024px) {
  .v6e0-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ---------- Page head (inner pages) ---------- */
.v6e0-page-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 18px 0 10px;
  padding-left: 14px;
  position: relative;
  letter-spacing: -0.02em;
}
.v6e0-page-title::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 64%;
  border-radius: 4px;
  background: var(--v6e0-grad);
}
.v6e0-page-title b { color: var(--v6e0-mint); }
.v6e0-page-sub {
  color: var(--v6e0-muted);
  font-size: 1.4rem;
  margin: 0 0 14px;
}

/* ---------- Promotional text link ---------- */
.v6e0-promo-link {
  color: var(--v6e0-chartreuse);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.v6e0-promo-link:hover { color: var(--v6e0-mint); }

/* ---------- Hero banner image (clickable promo) ---------- */
.v6e0-hero-banner {
  display: block;
  margin: 0 0 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--v6e0-border-2);
  box-shadow: var(--v6e0-shadow);
}
.v6e0-hero-banner img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  display: block;
}

/* ---------- Numbered step list ---------- */
.v6e0-step-list {
  counter-reset: v6e0step;
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.v6e0-step-list li {
  position: relative;
  padding: 0 0 14px 42px;
  color: #cddfd4;
}
.v6e0-step-list li::before {
  counter-increment: v6e0step;
  content: counter(v6e0step);
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--v6e0-grad);
  color: #07100c;
  font-weight: 800;
  display: grid; place-items: center;
  font-size: 1.3rem;
}

/* ---------- Footer promo button grid ---------- */
.v6e0-footer-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}
.v6e0-footer-cta .v6e0-btn {
  justify-content: center;
  font-size: 1.25rem;
  padding: 11px 8px;
}

/* ---------- Utilities ---------- */
.v6e0-hidden { display: none !important; }
.v6e0-center { text-align: center; }
.v6e0-mt-12 { margin-top: 12px; }
.v6e0-mt-16 { margin-top: 16px; }
