/* ============================================================
   shbeet.cfd - theme-3db6.css
   Prefixed CSS module (prefix: gb6e-)
   Palette: #CD853F | #6A5ACD | #E6E6FA | #EE82EE | #999999 | #212F3D
   Mobile-first. Dark background, light text. Max content width 430px.
   ============================================================ */

:root {
  --gb6e-primary: #CD853F;
  --gb6e-secondary: #6A5ACD;
  --gb6e-accent: #EE82EE;
  --gb6e-light: #E6E6FA;
  --gb6e-muted: #999999;
  --gb6e-bg: #212F3D;
  --gb6e-bg-deep: #18222c;
  --gb6e-bg-card: #2a3a4a;
  --gb6e-text: #E6E6FA;
  --gb6e-text-soft: #b9c4d0;
  --gb6e-gold: #f0b35a;
  --gb6e-grad: linear-gradient(135deg, #6A5ACD 0%, #CD853F 100%);
  --gb6e-grad-deep: linear-gradient(160deg, #212F3D 0%, #2a3a4a 60%, #34244a 100%);
  --gb6e-radius: 14px;
  --gb6e-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --gb6e-shadow-gold: 0 6px 18px rgba(205, 133, 63, 0.35);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: var(--gb6e-bg-deep);
  background-image: var(--gb6e-grad-deep);
  background-attachment: fixed;
  color: var(--gb6e-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.gb6e-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  background: var(--gb6e-bg-deep);
  box-shadow: 0 0 40px rgba(0,0,0,0.45);
}

.gb6e-container {
  width: 100%;
  padding: 0 14px;
}

/* ---------- Header ---------- */
.gb6e-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  z-index: 1000;
  background: rgba(24, 34, 44, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(205, 133, 63, 0.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.gb6e-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 12px;
}

.gb6e-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gb6e-text);
}

.gb6e-logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(205,133,63,0.4);
}

.gb6e-logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: var(--gb6e-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.gb6e-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  min-height: 36px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  line-height: 1;
}

.gb6e-btn:hover { transform: translateY(-1px); }
.gb6e-btn:active { transform: scale(0.96); }

.gb6e-btn-register {
  background: var(--gb6e-grad);
  color: #fff;
  box-shadow: var(--gb6e-shadow-gold);
}

.gb6e-btn-login {
  background: transparent;
  color: var(--gb6e-light);
  border: 1px solid var(--gb6e-primary);
}

.gb6e-btn-login:hover { background: rgba(205,133,63,0.12); }

.gb6e-burger {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(205,133,63,0.3);
  background: transparent;
  color: var(--gb6e-light);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

/* ---------- Mobile menu ---------- */
.gb6e-mobile-menu {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: var(--gb6e-bg-deep);
  border-bottom: 1px solid rgba(106,90,205,0.4);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 9999;
}

.gb6e-mobile-menu.gb6e-menu-open {
  max-height: 540px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
}

.gb6e-menu-list {
  list-style: none;
  margin: 0;
  padding: 10px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gb6e-menu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--gb6e-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: rgba(106,90,205,0.10);
  border: 1px solid rgba(106,90,205,0.18);
  transition: background 0.2s ease;
}

.gb6e-menu-list a:hover { background: rgba(205,133,63,0.18); }
.gb6e-menu-list a i { color: var(--gb6e-gold); width: 22px; text-align: center; }

/* ---------- Main / sections ---------- */
main.gb6e-main {
  padding-top: 64px;
}

.gb6e-section {
  padding: 22px 0 8px;
}

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

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

.gb6e-section-title i { color: var(--gb6e-gold); font-size: 20px; }

.gb6e-section-link {
  font-size: 12px;
  color: var(--gb6e-accent);
  text-decoration: none;
  font-weight: 600;
}

/* ---------- Hero carousel ---------- */
.gb6e-hero {
  position: relative;
  margin: 14px 0 6px;
  border-radius: var(--gb6e-radius);
  overflow: hidden;
  box-shadow: var(--gb6e-shadow);
}

.gb6e-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.gb6e-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.gb6e-slide.gb6e-active { opacity: 1; }

.gb6e-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gb6e-slide-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  background: rgba(24,34,44,0.72);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--gb6e-light);
  backdrop-filter: blur(4px);
}

.gb6e-slide-caption b { color: var(--gb6e-gold); }

.gb6e-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(24,34,44,0.7);
  border: 1px solid rgba(205,133,63,0.5);
  color: var(--gb6e-light);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}
.gb6e-carousel-arrow.gb6e-prev { left: 8px; }
.gb6e-carousel-arrow.gb6e-next { right: 8px; }

.gb6e-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.gb6e-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(230,230,250,0.5);
  cursor: pointer;
}
.gb6e-dot.gb6e-active { background: var(--gb6e-gold); width: 22px; border-radius: 4px; }

/* ---------- CTA banner ---------- */
.gb6e-cta {
  background: var(--gb6e-grad);
  border-radius: var(--gb6e-radius);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: var(--gb6e-shadow-gold);
  margin: 14px 0;
}
.gb6e-cta-text { color: #fff; font-weight: 700; font-size: 14px; line-height: 1.3; }
.gb6e-cta-text small { display: block; font-weight: 500; opacity: 0.92; font-size: 11px; }
.gb6e-cta .gb6e-btn { background: #fff; color: var(--gb6e-bg); }

/* ---------- Category chips ---------- */
.gb6e-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gb6e-chips::-webkit-scrollbar { display: none; }

.gb6e-chip {
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 20px;
  background: rgba(106,90,205,0.16);
  border: 1px solid rgba(106,90,205,0.35);
  color: var(--gb6e-light);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.gb6e-chip i { font-size: 14px; color: var(--gb6e-gold); }

/* ---------- Game grid ---------- */
.gb6e-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gb6e-game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gb6e-bg-card);
  border: 1px solid rgba(106,90,205,0.25);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.gb6e-game-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gb6e-shadow);
  border-color: rgba(205,133,63,0.55);
}

.gb6e-game-card .gb6e-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.gb6e-game-name {
  font-size: 11px;
  line-height: 1.25;
  padding: 6px 6px 7px;
  color: var(--gb6e-light);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gb6e-game-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: var(--gb6e-gold);
  color: #212F3D;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

/* ---------- Info / feature cards ---------- */
.gb6e-card {
  background: var(--gb6e-bg-card);
  border: 1px solid rgba(106,90,205,0.22);
  border-radius: var(--gb6e-radius);
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: var(--gb6e-shadow);
}

.gb6e-card h2 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--gb6e-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.gb6e-card h3 {
  margin: 12px 0 6px;
  font-size: 14px;
  color: var(--gb6e-accent);
}
.gb6e-card p {
  margin: 0 0 8px;
  font-size: 13.5px;
  color: var(--gb6e-text-soft);
  line-height: 1.7;
}

.gb6e-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gb6e-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--gb6e-text-soft);
}

.gb6e-list li i {
  color: var(--gb6e-gold);
  margin-top: 2px;
  font-size: 16px;
}

/* ---------- Steps ---------- */
.gb6e-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: step;
}

.gb6e-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(106,90,205,0.10);
  border: 1px solid rgba(106,90,205,0.20);
  border-radius: 12px;
  padding: 10px 12px;
}

.gb6e-step-num {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gb6e-grad);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gb6e-step-body { font-size: 13px; color: var(--gb6e-text-soft); }
.gb6e-step-body b { color: var(--gb6e-light); }

/* ---------- Testimonials ---------- */
.gb6e-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.gb6e-testimonial {
  background: rgba(238,130,238,0.08);
  border: 1px solid rgba(238,130,238,0.25);
  border-radius: 12px;
  padding: 12px;
}

.gb6e-testimonial .gb6e-stars { color: var(--gb6e-gold); font-size: 12px; margin-bottom: 4px; }
.gb6e-testimonial p { margin: 0 0 6px; font-size: 13px; color: var(--gb6e-text-soft); }
.gb6e-testimonial .gb6e-author { font-size: 12px; color: var(--gb6e-accent); font-weight: 700; }

/* ---------- Winners ---------- */
.gb6e-winners {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gb6e-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(205,133,63,0.10);
  border: 1px solid rgba(205,133,63,0.28);
  border-radius: 10px;
  padding: 8px 12px;
}

.gb6e-winner .gb6e-winner-name { font-size: 12.5px; color: var(--gb6e-light); font-weight: 600; }
.gb6e-winner .gb6e-winner-amount { font-size: 13px; color: var(--gb6e-gold); font-weight: 800; }

/* ---------- Payment methods ---------- */
.gb6e-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gb6e-pay-item {
  background: rgba(230,230,250,0.06);
  border: 1px solid rgba(230,230,250,0.18);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
  font-size: 10px;
  color: var(--gb6e-text-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.gb6e-pay-item i { font-size: 22px; color: var(--gb6e-accent); }

/* ---------- RTP table ---------- */
.gb6e-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.gb6e-rtp-table th,
.gb6e-rtp-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(106,90,205,0.20);
}

.gb6e-rtp-table th { color: var(--gb6e-gold); font-weight: 700; }
.gb6e-rtp-table td { color: var(--gb6e-text-soft); }
.gb6e-rtp-table .gb6e-rtp-val { color: #6ee7a7; font-weight: 800; }

/* ---------- Promo links (inline text) ---------- */
.gb6e-link {
  color: var(--gb6e-gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(205,133,63,0.55);
}
.gb6e-link:hover { color: var(--gb6e-accent); }

.gb6e-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 4px 0 0;
  padding: 9px 16px;
  border-radius: 10px;
  background: var(--gb6e-grad);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  box-shadow: var(--gb6e-shadow-gold);
  cursor: pointer;
  border: none;
}

/* ---------- Footer ---------- */
.gb6e-footer {
  background: var(--gb6e-bg-deep);
  border-top: 1px solid rgba(205,133,63,0.30);
  padding: 22px 14px 18px;
  margin-top: 20px;
}

.gb6e-footer-brand {
  font-size: 14px;
  color: var(--gb6e-text-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}

.gb6e-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.gb6e-footer-links a {
  font-size: 12px;
  color: var(--gb6e-light);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(106,90,205,0.14);
  border: 1px solid rgba(106,90,205,0.25);
}

.gb6e-footer-links a:hover { background: rgba(205,133,63,0.18); color: var(--gb6e-gold); }

.gb6e-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.gb6e-footer-promo button,
.gb6e-footer-promo a {
  background: var(--gb6e-grad);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.gb6e-footer-copy {
  font-size: 11px;
  color: var(--gb6e-muted);
  text-align: center;
  border-top: 1px solid rgba(153,153,153,0.18);
  padding-top: 12px;
}

/* ---------- Mobile bottom nav ---------- */
.gb6e-bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 60px;
  background: rgba(18,26,34,0.98);
  border-top: 1px solid rgba(205,133,63,0.40);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.5);
}

.gb6e-bottomnav-item {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--gb6e-text-soft);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  transition: color 0.18s ease, transform 0.18s ease;
  position: relative;
}

.gb6e-bottomnav-item i,
.gb6e-bottomnav-item .material-icons-outlined,
.gb6e-bottomnav-item .material-icons-two-tone,
.gb6e-bottomnav-item ion-icon {
  font-size: 24px;
  transition: transform 0.2s ease;
}

.gb6e-bottomnav-item:active { transform: scale(0.92); }

.gb6e-bottomnav-item.gb6e-current {
  color: var(--gb6e-gold);
}

.gb6e-bottomnav-item.gb6e-current i,
.gb6e-bottomnav-item.gb6e-current .material-icons-outlined,
.gb6e-bottomnav-item.gb6e-current ion-icon {
  transform: translateY(-2px) scale(1.12);
}

.gb6e-bottomnav-item .gb6e-nav-badge {
  position: absolute;
  top: 6px;
  right: 16px;
  background: var(--gb6e-accent);
  color: #212F3D;
  font-size: 9px;
  font-weight: 800;
  border-radius: 50%;
  min-width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ---------- Reveal animation ---------- */
.gb6e-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gb6e-reveal.gb6e-inview {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile content bottom padding ---------- */
@media (max-width: 768px) {
  main.gb6e-main { padding-bottom: 80px; }
  .gb6e-footer { padding-bottom: 84px; }
}

/* ---------- Desktop: hide bottom nav, widen wrapper ---------- */
@media (min-width: 769px) {
  .gb6e-bottomnav { display: none; }
  .gb6e-wrapper {
    max-width: 960px;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
  }
  .gb6e-header { max-width: 960px; }
  .gb6e-mobile-menu { max-width: 960px; }
  .gb6e-game-grid { grid-template-columns: repeat(5, 1fr); }
  .gb6e-pay-grid { grid-template-columns: repeat(7, 1fr); }
  .gb6e-testimonials { grid-template-columns: repeat(2, 1fr); }
  .gb6e-footer { padding-bottom: 22px; }
}

/* ---------- Headings inside main ---------- */
.gb6e-h1 {
  font-size: 22px;
  font-weight: 800;
  margin: 14px 0 8px;
  color: var(--gb6e-light);
  line-height: 1.3;
}

.gb6e-h1 b { color: var(--gb6e-gold); }

.gb6e-lead {
  font-size: 13.5px;
  color: var(--gb6e-text-soft);
  margin: 0 0 14px;
  line-height: 1.7;
}

/* ---------- App download CTA ---------- */
.gb6e-app-cta {
  background: linear-gradient(135deg, #6A5ACD 0%, #EE82EE 100%);
  border-radius: var(--gb6e-radius);
  padding: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: var(--gb6e-shadow);
}

.gb6e-app-cta h2 { color: #fff; margin: 0 0 6px; font-size: 18px; justify-content: center; }
.gb6e-app-cta p { color: rgba(255,255,255,0.92); margin: 0 0 12px; font-size: 13px; }
.gb6e-app-cta .gb6e-link-btn { background: #fff; color: var(--gb6e-secondary); box-shadow: none; }
