/**
 * 786bdt.click - Core CSS Stylesheet
 * All class names prefixed with "w976b-" to avoid conflicts
 * Color Palette: #0D1117 (bg), #FFB6C1 (accent/pink), #008B8B (teal)
 * Mobile-first design, max-width: 430px
 */

/* === CSS Variables === */
:root {
  --w976b-primary: #008B8B;
  --w976b-bg: #0D1117;
  --w976b-text: #FFB6C1;
  --w976b-bg-card: #161B22;
  --w976b-bg-light: #1C2333;
  --w976b-accent: #FFB6C1;
  --w976b-teal: #008B8B;
  --w976b-teal-dark: #006666;
  --w976b-pink-dark: #D4919E;
  --w976b-white: #F0F6FC;
  --w976b-gray: #8B949E;
  --w976b-border: #21262D;
  --w976b-radius: 12px;
  --w976b-radius-sm: 8px;
  --w976b-shadow: 0 4px 16px rgba(0, 139, 139, 0.15);
  --w976b-font: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  font-size: 62.5%;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--w976b-font);
  background: var(--w976b-bg);
  color: var(--w976b-white);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}
a { color: var(--w976b-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--w976b-teal); }
img { max-width: 100%; height: auto; display: block; }

/* === Header === */
.w976b-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, var(--w976b-bg) 0%, #111820 100%);
  border-bottom: 1px solid var(--w976b-border);
  max-width: 430px; margin: 0 auto;
  padding: 0 1.2rem;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.w976b-logo-area {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.w976b-logo-area img { width: 28px; height: 28px; border-radius: 6px; }
.w976b-logo-text {
  font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(90deg, var(--w976b-accent), var(--w976b-teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.w976b-header-actions { display: flex; align-items: center; gap: 8px; }
.w976b-btn-register, .w976b-btn-login {
  border: none; cursor: pointer; font-weight: 600; border-radius: 6px;
  font-size: 1.2rem; padding: 6px 14px; transition: transform .15s, box-shadow .2s;
}
.w976b-btn-register {
  background: linear-gradient(135deg, var(--w976b-teal), var(--w976b-teal-dark));
  color: #fff;
}
.w976b-btn-login {
  background: transparent; color: var(--w976b-accent);
  border: 1px solid var(--w976b-accent);
}
.w976b-btn-register:hover, .w976b-btn-login:hover { transform: scale(1.05); }
.w976b-menu-toggle {
  background: none; border: none; color: var(--w976b-white);
  font-size: 2.2rem; cursor: pointer; padding: 4px;
  display: flex; align-items: center; justify-content: center;
}

/* === Mobile Menu === */
.w976b-mobile-menu {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 9999;
  background: var(--w976b-bg-card);
  border-bottom: 2px solid var(--w976b-teal);
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  max-width: 430px; margin: 0 auto;
}
.w976b-mobile-menu.w976b-menu-active { max-height: 400px; }
.w976b-mobile-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; color: var(--w976b-white);
  border-bottom: 1px solid var(--w976b-border);
  font-size: 1.4rem; transition: background .2s;
}
.w976b-mobile-menu a:hover { background: var(--w976b-bg-light); color: var(--w976b-accent); }

/* === Main Content === */
.w976b-main { padding-top: 56px; }
@media (max-width: 768px) { .w976b-main { padding-bottom: 80px; } }

/* === Banner Carousel === */
.w976b-carousel { position: relative; width: 100%; overflow: hidden; }
.w976b-carousel-slide {
  display: none; width: 100%; cursor: pointer;
  border-radius: 0;
}
.w976b-carousel-slide img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.w976b-carousel-slide.w976b-slide-active { display: block; }
.w976b-carousel-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 6px;
}
.w976b-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 182, 193, 0.4); cursor: pointer;
  border: none; transition: background .2s;
}
.w976b-carousel-dot.w976b-dot-active { background: var(--w976b-accent); }

/* === Section Title === */
.w976b-section-title {
  font-size: 1.8rem; font-weight: 700;
  margin: 2rem 1.2rem 1rem; padding-left: 10px;
  border-left: 3px solid var(--w976b-teal);
  color: var(--w976b-accent);
}
.w976b-section-title span { color: var(--w976b-teal); }

/* === Game Grid === */
.w976b-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding: 0 1rem 1rem;
}
.w976b-game-card {
  background: var(--w976b-bg-card);
  border-radius: var(--w976b-radius-sm);
  text-align: center; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--w976b-border);
  overflow: hidden;
}
.w976b-game-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--w976b-shadow);
  border-color: var(--w976b-teal);
}
.w976b-game-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--w976b-radius-sm) var(--w976b-radius-sm) 0 0;
}
.w976b-game-card p {
  font-size: 1.1rem; padding: 4px 2px 6px;
  color: var(--w976b-white); line-height: 1.3rem;
  overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap;
}

/* === Content Blocks === */
.w976b-content-block {
  padding: 1.5rem 1.2rem;
  background: var(--w976b-bg-card);
  margin: 1rem 1rem 0;
  border-radius: var(--w976b-radius);
  border: 1px solid var(--w976b-border);
}
.w976b-content-block h2 {
  font-size: 1.7rem; color: var(--w976b-accent);
  margin-bottom: 0.8rem;
}
.w976b-content-block h3 {
  font-size: 1.5rem; color: var(--w976b-teal);
  margin: 1rem 0 0.5rem;
}
.w976b-content-block p {
  font-size: 1.3rem; color: var(--w976b-gray);
  line-height: 1.7rem; margin-bottom: 0.6rem;
}
.w976b-content-block ul {
  padding-left: 1.6rem; margin-bottom: 0.6rem;
}
.w976b-content-block li {
  font-size: 1.3rem; color: var(--w976b-gray);
  line-height: 1.7rem; margin-bottom: 0.3rem;
}

/* === Promo CTA === */
.w976b-cta-btn {
  display: inline-block; width: 100%;
  padding: 12px; text-align: center;
  background: linear-gradient(135deg, var(--w976b-teal), var(--w976b-teal-dark));
  color: #fff; font-size: 1.5rem; font-weight: 700;
  border-radius: var(--w976b-radius-sm);
  border: none; cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(0, 139, 139, 0.3);
}
.w976b-cta-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 139, 139, 0.5);
}
.w976b-promo-text {
  font-size: 1.4rem; color: var(--w976b-accent);
  font-weight: 600; cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--w976b-teal);
  text-underline-offset: 3px;
}
.w976b-promo-text:hover { color: var(--w976b-teal); }

/* === Testimonials === */
.w976b-testimonial {
  background: var(--w976b-bg-light);
  border-radius: var(--w976b-radius-sm);
  padding: 1rem 1.2rem; margin-bottom: 0.8rem;
  border-left: 3px solid var(--w976b-accent);
}
.w976b-testimonial p { font-size: 1.3rem; color: var(--w976b-gray); font-style: italic; }
.w976b-testimonial strong { color: var(--w976b-accent); font-style: normal; }

/* === Payment Methods === */
.w976b-payment-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; padding: 1rem 0;
}
.w976b-payment-item {
  background: var(--w976b-bg-light);
  padding: 8px 16px; border-radius: 20px;
  font-size: 1.2rem; color: var(--w976b-accent);
  border: 1px solid var(--w976b-border);
}

/* === Winners Showcase === */
.w976b-winner-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; margin-bottom: 6px;
  background: var(--w976b-bg-light);
  border-radius: var(--w976b-radius-sm);
}
.w976b-winner-name { color: var(--w976b-accent); font-weight: 600; font-size: 1.3rem; }
.w976b-winner-amount { color: var(--w976b-teal); font-weight: 700; font-size: 1.4rem; }
.w976b-winner-game { color: var(--w976b-gray); font-size: 1.1rem; }

/* === Footer === */
.w976b-footer {
  background: var(--w976b-bg-card);
  border-top: 1px solid var(--w976b-border);
  padding: 2rem 1.2rem 6rem; margin-top: 2rem;
}
.w976b-footer-brand {
  font-size: 1.3rem; color: var(--w976b-gray);
  line-height: 1.6rem; margin-bottom: 1.5rem;
}
.w976b-footer-links {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 1.5rem;
}
.w976b-footer-links a {
  background: var(--w976b-bg-light);
  padding: 6px 12px; border-radius: 6px;
  font-size: 1.2rem; color: var(--w976b-white);
  border: 1px solid var(--w976b-border);
  transition: border-color .2s, color .2s;
}
.w976b-footer-links a:hover { border-color: var(--w976b-teal); color: var(--w976b-teal); }
.w976b-footer-copyright {
  font-size: 1.1rem; color: var(--w976b-gray);
  text-align: center; margin-top: 1rem;
  border-top: 1px solid var(--w976b-border);
  padding-top: 1rem;
}

/* === Bottom Navigation === */
.w976b-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #161B22 0%, var(--w976b-bg) 100%);
  border-top: 1px solid var(--w976b-border);
  max-width: 430px; margin: 0 auto;
  height: 60px;
  display: flex; align-items: center; justify-content: space-around;
  padding: 0 4px;
}
.w976b-bottom-nav-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-width: 60px; min-height: 56px;
  background: none; border: none;
  color: var(--w976b-gray); cursor: pointer;
  font-size: 1rem; gap: 2px;
  transition: color .2s, transform .15s;
  border-radius: 8px; padding: 4px 6px;
}
.w976b-bottom-nav-btn .w976b-nav-icon { font-size: 22px; line-height: 1; }
.w976b-bottom-nav-btn span { font-size: 1rem; }
.w976b-bottom-nav-btn:hover { color: var(--w976b-accent); transform: scale(1.08); }
.w976b-bottom-nav-btn.w976b-nav-active {
  color: var(--w976b-teal);
  background: rgba(0, 139, 139, 0.1);
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) { .w976b-bottom-nav { display: none; } }
@media (min-width: 769px) { .w976b-footer { padding-bottom: 2rem; } }

/* === FAQ Accordion === */
.w976b-faq-item {
  background: var(--w976b-bg-card);
  border: 1px solid var(--w976b-border);
  border-radius: var(--w976b-radius-sm);
  margin-bottom: 8px; overflow: hidden;
}
.w976b-faq-q {
  padding: 12px 16px; font-size: 1.4rem; font-weight: 600;
  color: var(--w976b-accent); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
}
.w976b-faq-a {
  padding: 0 16px; max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 1.3rem; color: var(--w976b-gray);
}
.w976b-faq-item.w976b-faq-open .w976b-faq-a {
  max-height: 200px; padding: 0 16px 12px;
}

/* === Info List === */
.w976b-info-list {
  list-style: none; padding: 0;
}
.w976b-info-list li {
  padding: 8px 0; border-bottom: 1px solid var(--w976b-border);
  font-size: 1.3rem; color: var(--w976b-gray);
  display: flex; align-items: flex-start; gap: 8px;
}
.w976b-info-list li:last-child { border-bottom: none; }

/* === Badge === */
.w976b-badge {
  display: inline-block;
  padding: 2px 8px; border-radius: 4px;
  font-size: 1rem; font-weight: 600;
}
.w976b-badge-hot { background: #FF4444; color: #fff; }
.w976b-badge-new { background: var(--w976b-teal); color: #fff; }

/* === Review Stars === */
.w976b-stars { color: #FFD700; font-size: 1.4rem; letter-spacing: 2px; }

/* === App Download Section === */
.w976b-app-section {
  background: linear-gradient(135deg, var(--w976b-bg-card) 0%, var(--w976b-bg-light) 100%);
  border-radius: var(--w976b-radius);
  padding: 1.5rem 1.2rem; margin: 1rem;
  text-align: center;
  border: 1px solid var(--w976b-border);
}
.w976b-app-section h3 { color: var(--w976b-accent); font-size: 1.6rem; margin-bottom: 0.8rem; }
.w976b-app-section p { color: var(--w976b-gray); font-size: 1.3rem; margin-bottom: 1rem; }

/* === RTP Bar === */
.w976b-rtp-bar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.w976b-rtp-label { font-size: 1.2rem; color: var(--w976b-gray); min-width: 90px; }
.w976b-rtp-track {
  flex: 1; height: 8px; background: var(--w976b-border);
  border-radius: 4px; overflow: hidden;
}
.w976b-rtp-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--w976b-teal), var(--w976b-accent));
}
.w976b-rtp-value { font-size: 1.2rem; color: var(--w976b-teal); font-weight: 600; min-width: 45px; }

/* === Responsive Tweaks === */
@media (max-width: 360px) {
  .w976b-game-grid { grid-template-columns: repeat(3, 1fr); }
  .w976b-section-title { font-size: 1.6rem; }
}
