/* ============================================================
 * vc666 (vc666.sbs) - style.css
 * All custom classes use the g956- prefix.
 * Mobile-first, max-width 430px container, dark palette.
 * Palette: #0000FF | #FF4500 | #48D1CC | #0F0F23 | #FFAA00
 * ============================================================ */

:root {
  --g956-primary: #0000FF;
  --g956-accent: #FF4500;
  --g956-teal: #48D1CC;
  --g956-bg: #0F0F23;
  --g956-gold: #FFAA00;
  --g956-text: #F5F7FF;
  --g956-muted: #9AA0C7;
  --g956-card: #181A38;
  --g956-card2: #20234A;
  --g956-border: rgba(72, 209, 204, 0.18);
  --g956-radius: 14px;
  --g956-header-h: 58px;
  --g956-bnav-h: 62px;
}

* { box-sizing: border-box; }

html { font-size: 62.5%; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--g956-bg);
  color: var(--g956-text);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; display: block; }
a { color: var(--g956-teal); text-decoration: none; }

.g956-wrapper {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: radial-gradient(120% 60% at 50% -10%, #1B1E4A 0%, var(--g956-bg) 60%);
  position: relative;
  overflow-x: hidden;
}

/* ---------- Header ---------- */
.g956-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: var(--g956-header-h);
  padding: 0 12px;
  background: linear-gradient(90deg, #0A0B1F 0%, #16194A 100%);
  border-bottom: 1px solid var(--g956-border);
}

.g956-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.g956-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--g956-primary), var(--g956-teal));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(0,0,255,0.35);
}
.g956-brand-text {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--g956-gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.g956-brand-text small {
  display: block;
  font-size: 1rem;
  color: var(--g956-muted);
  font-weight: 400;
}

.g956-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.g956-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.g956-btn:active { transform: scale(0.95); }
.g956-btn-login {
  background: transparent;
  color: var(--g956-teal);
  border: 1px solid var(--g956-teal);
}
.g956-btn-register {
  background: linear-gradient(90deg, var(--g956-accent), var(--g956-gold));
  color: #1A0F00;
  box-shadow: 0 3px 10px rgba(255,69,0,0.35);
}

.g956-menu-toggle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(72,209,204,0.12);
  color: var(--g956-teal);
  border: 1px solid var(--g956-border);
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* ---------- Mobile expandable menu ---------- */
.g956-mobile-menu {
  position: fixed;
  top: var(--g956-header-h);
  left: 50%;
  transform: translate(-50%, -12px);
  width: 100%;
  max-width: 430px;
  background: #14163A;
  border-bottom: 1px solid var(--g956-border);
  padding: 8px 12px 14px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.g956-mobile-menu.g956-menu-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.g956-mobile-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--g956-text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1.35rem;
}
.g956-mobile-menu a:last-child { border-bottom: none; }
.g956-mobile-menu a i { color: var(--g956-gold); margin-right: 8px; }

/* ---------- Main / sections ---------- */
.g956-main { padding: 12px 12px 24px; }

.g956-section {
  background: var(--g956-card);
  border: 1px solid var(--g956-border);
  border-radius: var(--g956-radius);
  padding: 14px;
  margin: 14px 0;
}
.g956-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--g956-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.g956-section-title i { color: var(--g956-teal); }
.g956-section p {
  font-size: 1.3rem;
  color: var(--g956-muted);
  line-height: 2.1rem;
  margin: 0 0 8px;
}

.g956-h1 {
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 800;
  margin: 8px 0 4px;
  color: #fff;
  text-align: center;
}
.g956-h1 span { color: var(--g956-gold); }
.g956-subtitle {
  text-align: center;
  color: var(--g956-muted);
  font-size: 1.25rem;
  margin: 0 0 10px;
}

/* ---------- Hero carousel ---------- */
.g956-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 10px 0;
  border: 1px solid var(--g956-border);
}
.g956-slides { position: relative; }
.g956-slide {
  position: relative;
  display: none;
  cursor: pointer;
}
.g956-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.g956-slide-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.35));
  padding: 8px 12px;
  border-radius: 10px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}
.g956-slide-caption b { color: var(--g956-gold); }
.g956-slide-active { display: block; }
.g956-dots {
  position: absolute;
  bottom: 8px;
  right: 10px;
  display: flex;
  gap: 5px;
}
.g956-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.g956-dot-active { background: var(--g956-gold); }

/* ---------- CTA buttons ---------- */
.g956-cta {
  display: block;
  text-align: center;
  padding: 12px;
  margin: 10px 0;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.4rem;
  color: #1A0F00;
  background: linear-gradient(90deg, var(--g956-accent), var(--g956-gold));
  box-shadow: 0 4px 14px rgba(255,69,0,0.35);
  cursor: pointer;
  border: none;
}
.g956-cta-secondary {
  background: linear-gradient(90deg, var(--g956-primary), var(--g956-teal));
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,255,0.35);
}
.g956-inline-link {
  color: var(--g956-gold);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

/* ---------- Category & games grid ---------- */
.g956-cat-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 8px;
  padding-left: 6px;
  border-left: 4px solid var(--g956-gold);
}
.g956-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.g956-game-card {
  background: var(--g956-card2);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, border-color 0.15s ease;
  text-align: center;
}
.g956-game-card:active {
  transform: scale(0.96);
  border-color: var(--g956-teal);
}
.g956-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0a0b1f;
}
.g956-game-name {
  font-size: 1.1rem;
  color: var(--g956-text);
  padding: 6px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4rem;
}

/* ---------- Two-column info ---------- */
.g956-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.g956-stat {
  background: var(--g956-card2);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}
.g956-stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--g956-gold);
}
.g956-stat-label {
  font-size: 1.1rem;
  color: var(--g956-muted);
}

.g956-list { margin: 0; padding-left: 18px; color: var(--g956-muted); font-size: 1.25rem; }
.g956-list li { margin-bottom: 6px; line-height: 2rem; }

/* ---------- Testimonials ---------- */
.g956-quote {
  background: var(--g956-card2);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-left: 3px solid var(--g956-teal);
}
.g956-quote p { margin: 0 0 4px; color: var(--g956-text); font-size: 1.25rem; line-height: 1.9rem; }
.g956-quote cite { color: var(--g956-gold); font-style: normal; font-size: 1.1rem; }

/* ---------- Payment chips ---------- */
.g956-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.g956-chip {
  background: var(--g956-card2);
  border: 1px solid var(--g956-border);
  color: var(--g956-teal);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 1.15rem;
}

/* ---------- Footer ---------- */
.g956-footer {
  background: #0A0B1F;
  border-top: 1px solid var(--g956-border);
  padding: 18px 14px 90px;
  margin-top: 16px;
}
.g956-footer p { color: var(--g956-muted); font-size: 1.2rem; line-height: 1.9rem; }
.g956-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}
.g956-footer-links a {
  background: var(--g956-card2);
  border: 1px solid var(--g956-border);
  color: var(--g956-teal);
  padding: 6px 10px;
  border-radius: 18px;
  font-size: 1.15rem;
}
.g956-footer-copy {
  color: var(--g956-muted);
  font-size: 1.1rem;
  margin-top: 10px;
  text-align: center;
}

/* ---------- Bottom nav ---------- */
.g956-bnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--g956-bnav-h);
  background: linear-gradient(180deg, #16194A 0%, #0A0B1F 100%);
  border-top: 1px solid var(--g956-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
}
.g956-bnav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--g956-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 2px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.g956-bnav-btn:active { transform: scale(0.92); }
.g956-bnav-btn .g956-bnav-icon { font-size: 22px; }
.g956-bnav-btn .material-icons,
.g956-bnav-btn .bi { font-size: 22px; }
.g956-bnav-btn.g956-bnav-active { color: var(--g956-gold); }
.g956-bnav-btn.g956-bnav-promo { color: var(--g956-teal); }
.g956-bnav-btn.g956-bnav-promo .g956-bnav-icon { color: var(--g956-accent); }

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .g956-bnav { display: none; }
  .g956-wrapper { box-shadow: 0 0 40px rgba(0,0,0,0.5); }
  .g956-footer { padding-bottom: 24px; }
}

/* ---------- Mobile bottom clearance ---------- */
@media (max-width: 768px) {
  .g956-main { padding-bottom: calc(var(--g956-bnav-h) + 16px); }
}
