/* ============================================
   tk555.homes - Core Stylesheet
   CSS class prefix: gb6a-
   Palette: #FF69B4 | #F8F9FA | #FF1493 | #0E1621
   Mobile-first, max-width 430px
   ============================================ */

:root {
  --gb6a-primary: #FF69B4;
  --gb6a-accent: #FF1493;
  --gb6a-light: #F8F9FA;
  --gb6a-dark: #0E1621;
  --gb6a-dark2: #16203a;
  --gb6a-muted: #9aa6bf;
  --gb6a-gold: #ffd24a;
  --gb6a-radius: 12px;
  --gb6a-shadow: 0 6px 18px rgba(255,20,147,0.25);
}

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

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

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Arial, sans-serif;
  background: var(--gb6a-dark);
  color: var(--gb6a-light);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}

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

/* ===== Header ===== */
.gb6a-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 1000;
  background: linear-gradient(135deg, #0E1621 0%, #1a1230 100%);
  border-bottom: 1px solid rgba(255,105,180,0.35);
  padding: 0.7rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.gb6a-logo { display: flex; align-items: center; gap: 0.6rem; }
.gb6a-logo img { width: 28px; height: 28px; border-radius: 6px; }
.gb6a-logo b { color: var(--gb6a-primary); font-size: 1.6rem; font-weight: 800; letter-spacing: 0.5px; }
.gb6a-logo span { color: var(--gb6a-light); font-size: 1.1rem; opacity: 0.8; }

.gb6a-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.gb6a-btn {
  border: none; border-radius: 20px; cursor: pointer;
  font-weight: 700; font-size: 1.25rem; padding: 0.55rem 1.1rem;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.gb6a-btn:hover { transform: translateY(-1px); }
.gb6a-btn-login {
  background: transparent; color: var(--gb6a-light);
  border: 1px solid var(--gb6a-primary);
}
.gb6a-btn-register {
  background: linear-gradient(90deg, var(--gb6a-primary), var(--gb6a-accent));
  color: #fff; box-shadow: var(--gb6a-shadow);
}
.gb6a-menu-btn {
  background: transparent; border: none; color: var(--gb6a-light);
  font-size: 1.8rem; cursor: pointer; padding: 0.3rem 0.5rem;
}

/* ===== Mobile menu (expandable) ===== */
.gb6a-mobile-menu {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 9999;
  background: var(--gb6a-dark2);
  border-bottom: 1px solid var(--gb6a-primary);
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 52px;
}
.gb6a-mobile-menu.gb6a-menu-open { max-height: 420px; }
.gb6a-mobile-menu ul { list-style: none; padding: 0.5rem 1rem; }
.gb6a-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.gb6a-mobile-menu li:last-child { border-bottom: none; }
.gb6a-mobile-menu a {
  display: block; padding: 1rem 0.5rem; color: var(--gb6a-light);
  font-size: 1.3rem;
}
.gb6a-mobile-menu a:hover { color: var(--gb6a-primary); }
.gb6a-mobile-menu-close {
  display: block; text-align: right; padding: 0.5rem 1rem;
  color: var(--gb6a-muted); font-size: 1.6rem; cursor: pointer;
}

/* ===== Main wrapper ===== */
.gb6a-wrapper {
  padding-top: 58px; /* header clearance */
  padding-bottom: 80px; /* bottom nav clearance */
  min-height: 100vh;
}
.gb6a-container { padding: 0 1rem; }

/* ===== Carousel ===== */
#pro6a9-carousel {
  position: relative; border-radius: var(--gb6a-radius); overflow: hidden;
  margin: 1rem 0; box-shadow: var(--gb6a-shadow);
}
.pro6a9-slide {
  display: none; position: relative; cursor: pointer;
}
.pro6a9-slide.pro6a9-active { display: block; }
.pro6a9-slide img { width: 100%; height: 180px; object-fit: cover; }
.pro6a9-slide-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,22,33,0.85));
  padding: 1.5rem 1rem 1rem; color: #fff; font-weight: 700; font-size: 1.5rem;
}
.pro6a9-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.pro6a9-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
}
.pro6a9-dot.pro6a9-dot-active { background: var(--gb6a-primary); }

/* ===== Section / Headings ===== */
.gb6a-section { margin: 1.5rem 0; }
.gb6a-section h2 {
  font-size: 1.7rem; color: var(--gb6a-primary); margin-bottom: 0.8rem;
  border-left: 4px solid var(--gb6a-accent); padding-left: 0.6rem;
  font-weight: 800;
}
.gb6a-section h3 {
  font-size: 1.4rem; color: var(--gb6a-light); margin: 0.8rem 0 0.4rem;
  font-weight: 700;
}
.gb6a-section p { margin-bottom: 0.6rem; color: #d6dcea; font-size: 1.3rem; }
.gb6a-h1 {
  font-size: 1.9rem; font-weight: 800; color: #fff;
  text-align: center; padding: 1rem; margin: 0.5rem 0;
  background: linear-gradient(90deg, rgba(255,105,180,0.15), rgba(255,20,147,0.15));
  border-radius: var(--gb6a-radius);
}

/* ===== Category tabs (static, not switch) ===== */
.gb6a-cat-title {
  font-size: 1.5rem; color: var(--gb6a-gold); font-weight: 800;
  margin: 1.2rem 0 0.6rem; display: flex; align-items: center; gap: 0.5rem;
}
.gb6a-cat-title i { font-size: 1.8rem; color: var(--gb6a-primary); }

/* ===== Game grid ===== */
.gb6a-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.gb6a-game {
  background: var(--gb6a-dark2); border-radius: 10px; overflow: hidden;
  cursor: pointer; border: 1px solid rgba(255,105,180,0.15);
  transition: transform 0.15s, border-color 0.15s;
  text-align: center;
}
.gb6a-game:hover { transform: translateY(-2px); border-color: var(--gb6a-primary); }
.gb6a-game img { width: 100%; height: 80px; object-fit: cover; }
.gb6a-game-name {
  font-size: 1.05rem; padding: 0.35rem 0.2rem; color: var(--gb6a-light);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ===== Cards ===== */
.gb6a-card {
  background: var(--gb6a-dark2); border-radius: var(--gb6a-radius);
  padding: 1rem; margin-bottom: 0.8rem; border: 1px solid rgba(255,105,180,0.12);
}
.gb6a-card-title { font-size: 1.35rem; color: var(--gb6a-primary); font-weight: 700; margin-bottom: 0.4rem; }

/* ===== CTA / Promo links ===== */
.gb6a-cta {
  display: inline-block; background: linear-gradient(90deg, var(--gb6a-primary), var(--gb6a-accent));
  color: #fff; font-weight: 700; padding: 0.7rem 1.4rem; border-radius: 24px;
  cursor: pointer; box-shadow: var(--gb6a-shadow); font-size: 1.3rem;
  text-align: center; margin: 0.4rem 0;
}
.gb6a-link-text { color: var(--gb6a-primary); font-weight: 700; }
.gb6a-link-text:hover { color: var(--gb6a-accent); text-decoration: underline; }

/* ===== RTP / data list ===== */
.gb6a-rtp-list { list-style: none; }
.gb6a-rtp-list li {
  display: flex; justify-content: space-between; padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08); font-size: 1.2rem;
}
.gb6a-rtp-list li b { color: var(--gb6a-gold); }

/* ===== Testimonials ===== */
.gb6a-testi {
  background: var(--gb6a-dark2); border-radius: 10px; padding: 0.8rem;
  margin-bottom: 0.6rem; border-left: 3px solid var(--gb6a-primary);
}
.gb6a-testi b { color: var(--gb6a-primary); }
.gb6a-testi .gb6a-stars { color: var(--gb6a-gold); font-size: 1.1rem; }

/* ===== Payment grid ===== */
.gb6a-pay {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin: 0.5rem 0;
}
.gb6a-pay-item {
  background: var(--gb6a-dark2); border-radius: 8px; padding: 0.7rem;
  text-align: center; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.06);
}
.gb6a-pay-item i { color: var(--gb6a-primary); font-size: 1.6rem; }

/* ===== Winner showcase ===== */
.gb6a-winner {
  display: flex; justify-content: space-between; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1.15rem;
}
.gb6a-winner b { color: var(--gb6a-gold); }

/* ===== FAQ ===== */
.gb6a-faq { margin-bottom: 0.6rem; }
.gb6a-faq h3 { color: var(--gb6a-primary); cursor: pointer; font-size: 1.25rem; }
.gb6a-faq p { color: #cfd8ea; font-size: 1.2rem; padding-top: 0.3rem; }

/* ===== Footer ===== */
.gb6a-footer {
  background: var(--gb6a-dark2); padding: 1.5rem 1rem 2rem;
  margin-top: 1.5rem; border-top: 2px solid var(--gb6a-primary);
}
.gb6a-footer p { color: #b8c2d6; font-size: 1.15rem; margin-bottom: 0.6rem; }
.gb6a-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.8rem 0;
}
.gb6a-footer-links a {
  background: var(--gb6a-dark); color: var(--gb6a-light);
  padding: 0.4rem 0.7rem; border-radius: 14px; font-size: 1.05rem;
  border: 1px solid rgba(255,105,180,0.2);
}
.gb6a-footer-links a:hover { color: var(--gb6a-primary); border-color: var(--gb6a-primary); }
.gb6a-footer-promo { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0; }
.gb6a-copyright { color: #7c869c; font-size: 1rem; text-align: center; margin-top: 1rem; }

/* ===== Mobile bottom nav (fixed) ===== */
.gb6a-bottomnav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 1000; height: 60px;
  background: linear-gradient(180deg, #16203a, #0E1621);
  border-top: 1px solid rgba(255,105,180,0.4);
  display: flex; justify-content: space-around; align-items: center;
}
.pro6a9-navbtn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 56px; background: transparent; border: none;
  color: var(--gb6a-muted); cursor: pointer; font-family: inherit;
  font-size: 1rem; gap: 2px; transition: color 0.15s, transform 0.15s;
}
.pro6a9-navbtn i { font-size: 22px; }
.pro6a9-navbtn .material-icons-outlined { font-size: 22px; }
.pro6a9-navbtn:hover, .pro6a9-navbtn-active { color: var(--gb6a-primary); transform: scale(1.05); }

/* ===== Desktop: hide bottom nav ===== */
@media (min-width: 769px) {
  .gb6a-bottomnav { display: none; }
  body { max-width: 768px; }
}

/* Desktop nav (visible on desktop) */
.gb6a-desktop-nav { display: none; }
@media (min-width: 769px) {
  .gb6a-desktop-nav {
    display: flex; gap: 1rem; margin: 1rem 0; flex-wrap: wrap; justify-content: center;
  }
  .gb6a-desktop-nav a {
    background: var(--gb6a-dark2); padding: 0.5rem 1rem; border-radius: 16px;
    font-size: 1.2rem; color: var(--gb6a-light);
  }
}
