/* ===========================================================
   bd89.homes - style-330e.css
   All custom classes use the g0e1- prefix.
   Palette: #40E0D0 | #0000FF | #FFE135 | #87CEEB | #212F3D
   Mobile-first, max-width 430px, root font 62.5%.
   =========================================================== */

:root {
  --g0e1-primary: #40E0D0;
  --g0e1-blue: #0000FF;
  --g0e1-yellow: #FFE135;
  --g0e1-sky: #87CEEB;
  --g0e1-bg: #212F3D;
  --g0e1-bg-2: #18242f;
  --g0e1-bg-3: #0f1a22;
  --g0e1-text: #ffffff;
  --g0e1-text-soft: #c7d4dc;
  --g0e1-muted: #8aa0ad;
  --g0e1-border: rgba(64, 224, 208, 0.18);
  --g0e1-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  --g0e1-radius: 12px;
}

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

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

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--g0e1-bg);
  color: var(--g0e1-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
}

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

a { color: var(--g0e1-sky); text-decoration: none; }
a:hover { color: var(--g0e1-yellow); }

h1, h2, h3, h4 { line-height: 1.4rem; font-weight: 700; color: var(--g0e1-text); }

/* ---------- Layout helpers ---------- */
.g0e1-container { width: 100%; padding: 0 1.2rem; }
.g0e1-wrapper { max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.g0e1-section { padding: 2.2rem 1.2rem; }
.g0e1-section-alt { background: var(--g0e1-bg-2); }

.g0e1-grid { display: grid; gap: 1rem; }
.g0e1-grid-2 { grid-template-columns: repeat(2, 1fr); }
.g0e1-grid-3 { grid-template-columns: repeat(3, 1fr); }
.g0e1-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Header / Top Nav ---------- */
.g0e1-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--g0e1-bg-3) 0%, var(--g0e1-bg) 100%);
  border-bottom: 1px solid var(--g0e1-border);
  box-shadow: var(--g0e1-shadow);
}
.g0e1-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  gap: 0.6rem;
}
.g0e1-brand { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }
.g0e1-brand-logo {
  width: 3rem; height: 3rem; border-radius: 8px;
  object-fit: cover; border: 1px solid var(--g0e1-primary);
}
.g0e1-brand-name {
  font-size: 1.8rem; font-weight: 800; color: var(--g0e1-primary);
  letter-spacing: 0.5px;
}
.g0e1-brand-name span { color: var(--g0e1-yellow); }

.g0e1-header-actions { display: flex; align-items: center; gap: 0.5rem; }

.g0e1-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: none; border-radius: 8px; cursor: pointer;
  font-size: 1.3rem; font-weight: 700; padding: 0.7rem 1rem;
  min-height: 3.4rem; transition: transform .15s ease, box-shadow .15s ease;
  font-family: inherit;
}
.g0e1-btn:active { transform: scale(0.95); }
.g0e1-btn-login {
  background: transparent; color: var(--g0e1-text);
  border: 1px solid var(--g0e1-primary);
}
.g0e1-btn-register {
  background: linear-gradient(135deg, var(--g0e1-yellow) 0%, #ffb700 100%);
  color: #212F3D; box-shadow: 0 3px 10px rgba(255, 225, 53, 0.35);
}
.g0e1-btn-cta {
  background: linear-gradient(135deg, var(--g0e1-primary) 0%, var(--g0e1-blue) 100%);
  color: #fff; padding: 1rem 1.6rem; font-size: 1.5rem; width: 100%;
  box-shadow: 0 4px 14px rgba(64, 224, 208, 0.35);
}

.g0e1-menu-btn {
  background: transparent; border: 1px solid var(--g0e1-border);
  color: var(--g0e1-primary); width: 3.4rem; height: 3.4rem;
  border-radius: 8px; font-size: 1.6rem; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Expandable mobile menu */
.g0e1-mobile-menu {
  max-height: 0; overflow: hidden;
  background: var(--g0e1-bg-3);
  transition: max-height .3s ease;
  border-top: 1px solid transparent;
}
.g0e1-mobile-menu.g0e1-menu-open {
  max-height: 460px;
  border-top: 1px solid var(--g0e1-border);
}
.g0e1-mobile-menu-inner {
  max-width: 430px; margin: 0 auto; padding: 0.6rem 1rem 1rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
}
.g0e1-mobile-menu-inner a {
  display: block; padding: 0.8rem 0.9rem;
  background: var(--g0e1-bg-2); border-radius: 8px;
  color: var(--g0e1-text-soft); font-size: 1.3rem;
  border: 1px solid transparent;
}
.g0e1-mobile-menu-inner a:hover {
  color: var(--g0e1-yellow); border-color: var(--g0e1-border);
}

/* ---------- Hero / Carousel ---------- */
.g0e1-hero {
  margin-top: 5.6rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--g0e1-border);
}
.g0e1-slides { position: relative; }
.g0e1-slide {
  display: none; position: relative; cursor: pointer;
}
.g0e1-slide img { width: 100%; height: 200px; object-fit: cover; }
.g0e1-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(15,26,34,0.92));
}
.g0e1-slide-overlay h2 { color: var(--g0e1-yellow); font-size: 1.7rem; margin-bottom: 0.3rem; }
.g0e1-slide-overlay p { color: var(--g0e1-text-soft); font-size: 1.25rem; }
.g0e1-slide-active { display: block; }

.g0e1-dots {
  position: absolute; bottom: 0.6rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.5rem;
  pointer-events: none;
}
.g0e1-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.g0e1-dot-active { background: var(--g0e1-yellow); }

/* ---------- Headings ---------- */
.g0e1-section-title {
  font-size: 1.8rem; color: var(--g0e1-text);
  margin-bottom: 1rem; padding-left: 0.8rem;
  border-left: 4px solid var(--g0e1-primary);
}
.g0e1-section-title em { color: var(--g0e1-yellow); font-style: normal; }
.g0e1-h1 {
  font-size: 2rem; line-height: 1.5rem;
  color: var(--g0e1-text); margin-bottom: 1rem;
}
.g0e1-h1 span { color: var(--g0e1-primary); }

.g0e1-intro {
  color: var(--g0e1-text-soft); font-size: 1.35rem; margin-bottom: 1.2rem;
}

/* ---------- Chips ---------- */
.g0e1-chips {
  display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.5rem 0 1rem;
  -webkit-overflow-scrolling: touch;
}
.g0e1-chip {
  flex: 0 0 auto; padding: 0.55rem 1rem; border-radius: 20px;
  background: var(--g0e1-bg-2); color: var(--g0e1-text-soft);
  font-size: 1.2rem; cursor: pointer; border: 1px solid var(--g0e1-border);
}
.g0e1-chip-active {
  background: var(--g0e1-primary); color: var(--g0e1-bg-3); font-weight: 700;
}

/* ---------- Category section ---------- */
.g0e1-cat-section { margin-bottom: 1.8rem; }
.g0e1-cat-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.8rem;
}
.g0e1-cat-label {
  font-size: 1.5rem; font-weight: 700; color: var(--g0e1-sky);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.g0e1-cat-more { font-size: 1.2rem; color: var(--g0e1-yellow); }

/* ---------- Game grid ---------- */
.g0e1-games {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
}
.g0e1-game {
  display: block; text-align: center; cursor: pointer;
  background: var(--g0e1-bg-2); border-radius: 10px;
  padding: 0.5rem; border: 1px solid transparent;
  transition: transform .15s ease, border-color .15s ease;
}
.g0e1-game:active { transform: scale(0.96); border-color: var(--g0e1-primary); }
.g0e1-game img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 8px; margin-bottom: 0.3rem;
}
.g0e1-game-name {
  font-size: 1.1rem; color: var(--g0e1-text-soft);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ---------- Cards ---------- */
.g0e1-card {
  background: var(--g0e1-bg-2); border-radius: var(--g0e1-radius);
  padding: 1.2rem; border: 1px solid var(--g0e1-border);
  box-shadow: var(--g0e1-shadow);
}
.g0e1-card h3 { color: var(--g0e1-yellow); font-size: 1.5rem; margin-bottom: 0.6rem; }
.g0e1-card p { color: var(--g0e1-text-soft); font-size: 1.3rem; }

.g0e1-feature-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.8rem;
}
.g0e1-feature {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: var(--g0e1-bg-2); padding: 1rem; border-radius: 10px;
  border-left: 3px solid var(--g0e1-primary);
}
.g0e1-feature-icon {
  width: 3.6rem; height: 3.6rem; flex: 0 0 3.6rem;
  border-radius: 8px; background: rgba(64,224,208,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--g0e1-primary); font-size: 1.8rem;
}
.g0e1-feature h4 { font-size: 1.4rem; color: var(--g0e1-text); margin-bottom: 0.2rem; }
.g0e1-feature p { font-size: 1.2rem; color: var(--g0e1-text-soft); }

/* ---------- RTP table ---------- */
.g0e1-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; }
.g0e1-rtp-table th, .g0e1-rtp-table td {
  padding: 0.7rem 0.6rem; text-align: left;
  border-bottom: 1px solid var(--g0e1-border);
}
.g0e1-rtp-table th { color: var(--g0e1-yellow); }
.g0e1-rtp-table td:last-child { color: var(--g0e1-primary); font-weight: 700; text-align: right; }

/* ---------- Testimonials ---------- */
.g0e1-testimonial {
  background: var(--g0e1-bg-2); border-radius: 10px; padding: 1rem;
  margin-bottom: 0.8rem; border-left: 3px solid var(--g0e1-yellow);
}
.g0e1-testimonial p { font-size: 1.25rem; color: var(--g0e1-text-soft); margin-bottom: 0.4rem; }
.g0e1-testimonial-meta { font-size: 1.15rem; color: var(--g0e1-sky); }

/* ---------- Winners ---------- */
.g0e1-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0.8rem; background: var(--g0e1-bg-2);
  border-radius: 8px; margin-bottom: 0.5rem; font-size: 1.2rem;
}
.g0e1-winner-name { color: var(--g0e1-text); }
.g0e1-winner-amount { color: var(--g0e1-yellow); font-weight: 700; }

/* ---------- Payment ---------- */
.g0e1-pay-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem;
}
.g0e1-pay {
  background: var(--g0e1-bg-2); border-radius: 8px; padding: 0.7rem;
  text-align: center; font-size: 1.1rem; color: var(--g0e1-text-soft);
  border: 1px solid var(--g0e1-border);
}
.g0e1-pay span { display: block; font-size: 1.8rem; color: var(--g0e1-primary); margin-bottom: 0.2rem; }

/* ---------- Promo text link ---------- */
.g0e1-link-text {
  color: var(--g0e1-yellow); font-weight: 700; cursor: pointer;
  text-decoration: underline;
}
.g0e1-link-text:hover { color: var(--g0e1-primary); }

/* ---------- FAQ ---------- */
.g0e1-faq-item {
  background: var(--g0e1-bg-2); border-radius: 8px;
  padding: 0.9rem 1rem; margin-bottom: 0.6rem;
  border: 1px solid var(--g0e1-border);
}
.g0e1-faq-item h4 { color: var(--g0e1-sky); font-size: 1.35rem; margin-bottom: 0.4rem; }
.g0e1-faq-item p { font-size: 1.25rem; color: var(--g0e1-text-soft); }

/* ---------- CTA banner ---------- */
.g0e1-cta-banner {
  background: linear-gradient(135deg, var(--g0e1-blue) 0%, var(--g0e1-primary) 100%);
  border-radius: var(--g0e1-radius); padding: 1.4rem; text-align: center;
  margin: 1.2rem 0;
}
.g0e1-cta-banner h3 { color: var(--g0e1-yellow); font-size: 1.7rem; margin-bottom: 0.5rem; }
.g0e1-cta-banner p { color: #fff; font-size: 1.3rem; margin-bottom: 1rem; }

/* ---------- App download ---------- */
.g0e1-app-row {
  display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap;
}
.g0e1-app-btn {
  flex: 1 1 45%; min-width: 14rem;
  background: var(--g0e1-bg-2); border: 1px solid var(--g0e1-primary);
  border-radius: 10px; padding: 0.8rem 1rem; color: var(--g0e1-text);
  display: flex; align-items: center; gap: 0.6rem; cursor: pointer;
}
.g0e1-app-btn span { font-size: 2rem; color: var(--g0e1-primary); }
.g0e1-app-btn b { font-size: 1.25rem; }
.g0e1-app-btn small { display: block; font-size: 1rem; color: var(--g0e1-muted); }

/* ---------- Footer ---------- */
.g0e1-footer {
  background: var(--g0e1-bg-3);
  border-top: 1px solid var(--g0e1-border);
  padding: 2rem 1.2rem 2.5rem;
}
.g0e1-footer-brand {
  color: var(--g0e1-text-soft); font-size: 1.25rem; margin-bottom: 1rem;
}
.g0e1-footer-brand strong { color: var(--g0e1-primary); }
.g0e1-footer-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1rem;
}
.g0e1-footer-links a {
  font-size: 1.2rem; color: var(--g0e1-text-soft);
  padding: 0.4rem 0; border-bottom: 1px dashed var(--g0e1-border);
}
.g0e1-footer-promo {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem;
}
.g0e1-footer-promo button {
  background: var(--g0e1-primary); color: var(--g0e1-bg-3);
  border: none; border-radius: 6px; padding: 0.5rem 0.8rem;
  font-size: 1.15rem; font-weight: 700; cursor: pointer;
}
.g0e1-footer-copy {
  font-size: 1.1rem; color: var(--g0e1-muted); text-align: center;
  padding-top: 0.8rem; border-top: 1px solid var(--g0e1-border);
}

/* ---------- Mobile bottom nav ---------- */
.g0e1-bnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto;
  height: 6rem;
  background: linear-gradient(180deg, var(--g0e1-bg-2) 0%, var(--g0e1-bg-3) 100%);
  border-top: 1px solid var(--g0e1-border);
  box-shadow: 0 -4px 14px rgba(0,0,0,0.4);
  display: flex; justify-content: space-around; align-items: stretch;
}
.g0e1-bnav-btn {
  flex: 1; min-width: 6rem; min-height: 6rem;
  background: transparent; border: none; color: var(--g0e1-text-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; cursor: pointer; font-family: inherit;
  font-size: 1.05rem; padding: 0.3rem;
  border-top: 3px solid transparent;
  transition: transform .15s ease, color .15s ease;
}
.g0e1-bnav-btn:active { transform: scale(0.9); }
.g0e1-bnav-btn .material-icons,
.g0e1-bnav-btn ion-icon,
.g0e1-bnav-btn i { font-size: 2.4rem; }
.g0e1-bnav-btn .g0e1-bnav-label { font-size: 1.05rem; }
.g0e1-bnav-active {
  color: var(--g0e1-yellow);
  border-top: 3px solid var(--g0e1-yellow);
}
.g0e1-bnav-promo { color: var(--g0e1-primary); }

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .g0e1-bnav { display: none; }
  body { max-width: 430px; }
}

/* Mobile bottom padding so content is not hidden behind bottom nav */
@media (max-width: 768px) {
  main, .g0e1-main { padding-bottom: 8rem; }
  .g0e1-footer { padding-bottom: 8rem; }
}
