/* ============================================================
   scatter-slots.homes - Core Stylesheet
   Prefix: g2b6-
   Palette: #0F0F23 / #4169E1 / #00BFFF / #D8BFD8 / #E9ECEF / #F0F8FF
   Mobile-first (max-width: 430px)
   ============================================================ */

:root {
  --g2b6-bg: #0F0F23;
  --g2b6-bg-2: #15163A;
  --g2b6-bg-3: #1C1E52;
  --g2b6-card: #1A1C44;
  --g2b6-card-2: #232555;
  --g2b6-text: #F0F8FF;
  --g2b6-text-soft: #E9ECEF;
  --g2b6-muted: #9AA0C6;
  --g2b6-purple: #D8BFD8;
  --g2b6-blue: #4169E1;
  --g2b6-cyan: #00BFFF;
  --g2b6-accent-grad: linear-gradient(135deg, #4169E1 0%, #00BFFF 60%, #D8BFD8 100%);
  --g2b6-hot-grad: linear-gradient(135deg, #FF6F61 0%, #D8BFD8 100%);
  --g2b6-border: rgba(216, 191, 216, 0.18);
  --g2b6-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  --g2b6-radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  background: var(--g2b6-bg);
  color: var(--g2b6-text);
  line-height: 1.55;
  font-size: 15px;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a { color: var(--g2b6-cyan); text-decoration: none; }
a:hover { color: var(--g2b6-purple); }

/* ---------- Layout containers ---------- */
.g2b6-wrap {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

.g2b6-section {
  padding: 26px 16px 18px;
}

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

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

.g2b6-section-title::before {
  content: "";
  width: 5px;
  height: 22px;
  background: var(--g2b6-accent-grad);
  border-radius: 3px;
}

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

.g2b6-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g2b6-purple);
  margin-bottom: 8px;
  font-weight: 700;
}

/* ---------- Header ---------- */
.g2b6-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 35, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--g2b6-border);
  width: 100%;
}

.g2b6-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.g2b6-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 17px;
  color: var(--g2b6-text);
}

.g2b6-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--g2b6-accent-grad);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.35);
}

.g2b6-logo-text small {
  display: block;
  font-size: 9.5px;
  letter-spacing: 2.5px;
  color: var(--g2b6-cyan);
  font-weight: 600;
}

.g2b6-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.g2b6-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: center;
  justify-content: center;
}

.g2b6-btn:active { transform: scale(0.94); }

.g2b6-btn-login {
  background: transparent;
  color: var(--g2b6-text);
  border: 1.5px solid var(--g2b6-border);
}

.g2b6-btn-register {
  background: var(--g2b6-accent-grad);
  color: #fff;
  box-shadow: 0 6px 16px rgba(65, 105, 225, 0.4);
}

.g2b6-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--g2b6-border);
  color: var(--g2b6-text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* ---------- Top nav strip ---------- */
.g2b6-topnav {
  background: var(--g2b6-bg-2);
  border-bottom: 1px solid var(--g2b6-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.g2b6-topnav::-webkit-scrollbar { display: none; }

.g2b6-topnav-inner {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  max-width: 430px;
  margin: 0 auto;
  white-space: nowrap;
}

.g2b6-topnav a {
  color: var(--g2b6-text-soft);
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  font-weight: 600;
}

.g2b6-topnav a:hover,
.g2b6-topnav a.active {
  color: #fff;
  background: rgba(65, 105, 225, 0.25);
  border-color: var(--g2b6-border);
}

/* ---------- Hero / Carousel ---------- */
.g2b6-hero {
  position: relative;
  margin: 14px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1C44 0%, #2A1F55 100%);
  border: 1px solid var(--g2b6-border);
  box-shadow: var(--g2b6-shadow);
}

.g2b6-carousel {
  position: relative;
  overflow: hidden;
}

.g2b6-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.g2b6-slide {
  min-width: 100%;
  position: relative;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}

.g2b6-slide::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--g2b6-accent-grad);
  opacity: 0.35;
  filter: blur(20px);
}

.g2b6-slide-tag {
  display: inline-block;
  width: fit-content;
  background: rgba(0, 191, 255, 0.18);
  color: var(--g2b6-cyan);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1.5px;
  z-index: 2;
}

.g2b6-slide-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  z-index: 2;
}

.g2b6-slide-desc {
  font-size: 13px;
  color: var(--g2b6-text-soft);
  z-index: 2;
  max-width: 88%;
}

.g2b6-slide-cta {
  margin-top: 4px;
  z-index: 2;
}

.g2b6-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 12px;
}

.g2b6-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(216, 191, 216, 0.35);
  cursor: pointer;
  transition: all 0.2s;
}

.g2b6-dot.active {
  background: var(--g2b6-cyan);
  width: 22px;
  border-radius: 999px;
}

/* ---------- Quick stats ---------- */
.g2b6-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 14px 14px;
}

.g2b6-stat {
  background: var(--g2b6-card);
  border: 1px solid var(--g2b6-border);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
}

.g2b6-stat-num {
  font-size: 18px;
  font-weight: 800;
  background: var(--g2b6-accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.g2b6-stat-label {
  font-size: 10.5px;
  color: var(--g2b6-muted);
  margin-top: 2px;
}

/* ---------- Category chips ---------- */
.g2b6-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 14px 12px;
  scrollbar-width: none;
}

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

.g2b6-chip {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--g2b6-card);
  border: 1px solid var(--g2b6-border);
  color: var(--g2b6-text-soft);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.g2b6-chip.active,
.g2b6-chip:hover {
  background: var(--g2b6-accent-grad);
  color: #fff;
  border-color: transparent;
}

/* ---------- Game grid & cards ---------- */
.g2b6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 14px;
}

.g2b6-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.g2b6-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.g2b6-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--g2b6-card);
  border: 1px solid var(--g2b6-border);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.g2b6-card:hover,
.g2b6-card:active {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 191, 255, 0.25);
  border-color: var(--g2b6-cyan);
}

.g2b6-card-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: linear-gradient(135deg, #232555, #15163A);
  object-fit: cover;
}

.g2b6-card-body {
  padding: 6px 8px 8px;
}

.g2b6-card-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--g2b6-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.g2b6-card-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(255, 111, 97, 0.92);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.g2b6-card-play {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 35, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.g2b6-card:hover .g2b6-card-play,
.g2b6-card:active .g2b6-card-play { opacity: 1; }

.g2b6-card-play span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--g2b6-accent-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
}

/* ---------- Featured block ---------- */
.g2b6-featured {
  margin: 18px 14px;
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.18), rgba(216, 191, 216, 0.12));
  border: 1px solid var(--g2b6-border);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12px;
  align-items: center;
}

.g2b6-featured-img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--g2b6-shadow);
}

.g2b6-featured-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}

.g2b6-featured-desc {
  font-size: 12px;
  color: var(--g2b6-text-soft);
  margin-bottom: 10px;
}

/* ---------- Promo banner CTA ---------- */
.g2b6-promo {
  margin: 18px 14px;
  border-radius: 16px;
  padding: 18px 16px;
  background: linear-gradient(120deg, #4169E1 0%, #00BFFF 50%, #D8BFD8 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 26px rgba(65, 105, 225, 0.35);
  position: relative;
  overflow: hidden;
}

.g2b6-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.25), transparent 60%);
}

.g2b6-promo h3 {
  font-size: 19px;
  margin-bottom: 6px;
  position: relative;
}

.g2b6-promo p {
  font-size: 12.5px;
  opacity: 0.95;
  margin-bottom: 12px;
  position: relative;
}

.g2b6-promo .g2b6-btn {
  background: #fff;
  color: #4169E1;
  padding: 10px 22px;
  font-size: 14px;
  position: relative;
}

/* ---------- SEO content ---------- */
.g2b6-content {
  padding: 20px 16px;
  background: var(--g2b6-bg-2);
  margin: 18px 14px;
  border-radius: 16px;
  border: 1px solid var(--g2b6-border);
}

.g2b6-content h2 {
  font-size: 18px;
  margin: 14px 0 8px;
  color: var(--g2b6-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.g2b6-content h2::before {
  content: "";
  width: 4px;
  height: 18px;
  background: var(--g2b6-cyan);
  border-radius: 2px;
}

.g2b6-content h3 {
  font-size: 15px;
  margin: 12px 0 6px;
  color: var(--g2b6-purple);
}

.g2b6-content p {
  font-size: 13px;
  color: var(--g2b6-text-soft);
  margin-bottom: 10px;
}

.g2b6-content ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.g2b6-content li {
  font-size: 12.5px;
  color: var(--g2b6-text-soft);
  margin-bottom: 4px;
}

.g2b6-content a.inline-link {
  color: var(--g2b6-cyan);
  font-weight: 600;
  border-bottom: 1px dashed var(--g2b6-cyan);
}

/* ---------- FAQ ---------- */
.g2b6-faq-item {
  border-bottom: 1px solid var(--g2b6-border);
  padding: 12px 0;
}

.g2b6-faq-q {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--g2b6-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.g2b6-faq-a {
  font-size: 12.5px;
  color: var(--g2b6-text-soft);
  margin-top: 8px;
  display: none;
}

.g2b6-faq-item.open .g2b6-faq-a { display: block; }
.g2b6-faq-item.open .g2b6-faq-q .g2b6-faq-icon { transform: rotate(45deg); }
.g2b6-faq-icon { transition: transform 0.2s; color: var(--g2b6-cyan); }

/* ---------- Footer ---------- */
.g2b6-footer {
  background: var(--g2b6-bg-2);
  border-top: 1px solid var(--g2b6-border);
  padding: 24px 16px 30px;
  margin-top: 16px;
}

.g2b6-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

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

.g2b6-footer a {
  display: block;
  font-size: 12px;
  color: var(--g2b6-muted);
  padding: 3px 0;
}

.g2b6-footer a:hover { color: var(--g2b6-cyan); }

.g2b6-footer-bottom {
  border-top: 1px solid var(--g2b6-border);
  padding-top: 14px;
  text-align: center;
  font-size: 11px;
  color: var(--g2b6-muted);
}

.g2b6-footer-warn {
  font-size: 10.5px;
  color: var(--g2b6-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ---------- Mobile bottom nav ---------- */
.g2b6-bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: rgba(15, 15, 35, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--g2b6-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.g2b6-bottomnav-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: stretch;
}

.g2b6-navbtn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: transparent;
  border: none;
  color: var(--g2b6-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 2px;
  min-width: 60px;
  min-height: 60px;
  transition: color 0.2s;
}

.g2b6-navbtn .icon {
  font-size: 22px;
  line-height: 1;
}

.g2b6-navbtn:hover,
.g2b6-navbtn.active {
  color: var(--g2b6-cyan);
}

.g2b6-navbtn.center {
  position: relative;
}

.g2b6-navbtn.center .icon-wrap {
  width: 46px;
  height: 46px;
  margin-top: -18px;
  border-radius: 50%;
  background: var(--g2b6-accent-grad);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 191, 255, 0.4);
  border: 3px solid var(--g2b6-bg);
}

.g2b6-navbtn.center .icon-wrap .icon { font-size: 22px; }
.g2b6-navbtn.center span:last-child { margin-top: 2px; }

/* ---------- Mobile menu overlay ---------- */
.g2b6-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 35, 0.7);
  backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.g2b6-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.g2b6-menu-panel {
  position: fixed;
  top: 0;
  right: -85%;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: var(--g2b6-bg-2);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 18px;
  overflow-y: auto;
}

.g2b6-menu-panel.open { right: 0; }

.g2b6-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--g2b6-border);
}

.g2b6-menu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 10px;
  color: var(--g2b6-text-soft);
  font-size: 13.5px;
  font-weight: 600;
  border-bottom: 1px solid rgba(216, 191, 216, 0.08);
}

.g2b6-menu-list a:hover {
  background: rgba(65, 105, 225, 0.15);
  color: var(--g2b6-cyan);
}

.g2b6-menu-list a .icon { font-size: 18px; color: var(--g2b6-purple); }

/* ---------- Marquee ---------- */
.g2b6-marquee {
  background: linear-gradient(90deg, #1A1C44, #2A1F55);
  border-top: 1px solid var(--g2b6-border);
  border-bottom: 1px solid var(--g2b6-border);
  overflow: hidden;
  padding: 8px 0;
  margin: 0 0 4px;
}

.g2b6-marquee-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: g2b6-marq 22s linear infinite;
  padding-left: 100%;
}

@keyframes g2b6-marq {
  to { transform: translateX(-100%); }
}

.g2b6-marquee-item {
  font-size: 12px;
  color: var(--g2b6-purple);
  font-weight: 600;
}

.g2b6-marquee-item .win {
  color: var(--g2b6-cyan);
  font-weight: 800;
}

/* ---------- Helpers ---------- */
.g2b6-hide-desktop { display: block; }
.g2b6-text-cyan { color: var(--g2b6-cyan); }
.g2b6-text-purple { color: var(--g2b6-purple); }
.g2b6-center { text-align: center; }

/* ---------- Responsive: desktop ---------- */
@media (min-width: 769px) {
  .g2b6-bottomnav { display: none; }
  .g2b6-wrap { max-width: 430px; }
}

@media (min-width: 431px) {
  body { background: linear-gradient(180deg, #0F0F23 0%, #15163A 100%); }
}

/* Mobile bottom padding clearance */
main {
  padding-bottom: 80px;
}
