/* 33bet core stylesheet - all classes use the w79b8- prefix */
/* Palette: #BAE1FF | #1A1A1A | #00BFFF | #4682B4 | #FF69B4 */

:root {
  --w79b8-primary: #00BFFF;
  --w79b8-secondary: #4682B4;
  --w79b8-accent: #FF69B4;
  --w79b8-bg: #1A1A1A;
  --w79b8-bg2: #232323;
  --w79b8-bg3: #2e2e2e;
  --w79b8-text: #BAE1FF;
  --w79b8-text-light: #ffffff;
  --w79b8-muted: #9fb3c8;
  --w79b8-border: #3a3a3a;
  --w79b8-radius: 10px;
}

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

html { font-size: 62.5%; }

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", system-ui, sans-serif;
  background: var(--w79b8-bg);
  color: var(--w79b8-text-light);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--w79b8-primary); text-decoration: none; }

/* Layout */
.w79b8-wrapper { max-width: 430px; margin: 0 auto; position: relative; }
.w79b8-container { padding: 0 1.2rem; }
.w79b8-main { padding-bottom: 90px; }

/* Header */
.w79b8-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, #141414, #2a2a2a);
  border-bottom: 2px solid var(--w79b8-primary);
  max-width: 430px; margin: 0 auto;
}
.w79b8-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem; gap: 0.6rem;
}
.w79b8-logo { display: flex; align-items: center; gap: 0.5rem; }
.w79b8-logo img { width: 28px; height: 28px; border-radius: 6px; }
.w79b8-logo-text { font-size: 1.6rem; font-weight: 800; color: var(--w79b8-primary); letter-spacing: 0.5px; }
.w79b8-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.w79b8-menu-btn {
  background: transparent; border: 1px solid var(--w79b8-secondary);
  color: var(--w79b8-text); width: 36px; height: 36px;
  border-radius: 8px; font-size: 1.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.w79b8-btn {
  border: none; border-radius: 8px; padding: 0.6rem 1rem;
  font-size: 1.3rem; font-weight: 700; cursor: pointer;
  min-height: 36px; transition: transform 0.15s ease, opacity 0.15s ease;
}
.w79b8-btn:active { transform: scale(0.96); }
.w79b8-btn-register { background: linear-gradient(135deg, var(--w79b8-accent), #c43d8a); color: #fff; }
.w79b8-btn-login { background: linear-gradient(135deg, var(--w79b8-primary), var(--w79b8-secondary)); color: #fff; }

/* Mobile menu (expandable nav, also used on desktop) */
.w79b8-nav-menu {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 9999;
  background: #161616; border-bottom: 2px solid var(--w79b8-secondary);
  max-width: 430px; margin: 0 auto; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.w79b8-nav-menu.w79b8-nav-open { max-height: 520px; }
.w79b8-nav-menu a {
  display: block; padding: 1rem 1.4rem; color: var(--w79b8-text-light);
  border-bottom: 1px solid var(--w79b8-border); font-size: 1.35rem;
}
.w79b8-nav-menu a:active { background: var(--w79b8-bg3); }
.w79b8-nav-menu a i { width: 22px; text-align: center; margin-right: 0.4rem; color: var(--w79b8-primary); }

/* Carousel */
.w79b8-carousel { position: relative; margin-top: 60px; overflow: hidden; }
.w79b8-slide {
  display: none; position: relative; cursor: pointer;
}
.w79b8-slide.w79b8-slide-active { display: block; }
.w79b8-slide img { width: 100%; height: 200px; object-fit: cover; border-radius: 0 0 14px 14px; }
.w79b8-slide-overlay {
  position: absolute; left: 1rem; bottom: 1.2rem; right: 1rem;
}
.w79b8-slide-overlay h2 { font-size: 1.6rem; color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,0.8); }
.w79b8-slide-overlay p { font-size: 1.2rem; color: var(--w79b8-text); text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.w79b8-dots { display: flex; justify-content: center; gap: 0.5rem; padding: 0.6rem 0; }
.w79b8-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--w79b8-border); border: none; cursor: pointer; }
.w79b8-dot.w79b8-dot-active { background: var(--w79b8-primary); }

/* Section headings */
.w79b8-section { padding: 1.4rem 1.2rem; }
.w79b8-section-title {
  font-size: 1.5rem; font-weight: 800; color: var(--w79b8-primary);
  margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem;
  border-left: 4px solid var(--w79b8-accent); padding-left: 0.7rem;
}
.w79b8-section-text { font-size: 1.3rem; color: var(--w79b8-text); line-height: 1.7rem; margin-bottom: 0.8rem; }
.w79b8-section-text strong { color: var(--w79b8-primary); }

/* H1 hero */
.w79b8-hero { padding: 1.2rem; text-align: center; background: linear-gradient(135deg, #1a1a1a, #1f3a55); }
.w79b8-hero h1 { font-size: 1.9rem; color: #fff; font-weight: 800; margin-bottom: 0.4rem; }
.w79b8-hero p { font-size: 1.25rem; color: var(--w79b8-text); }

/* Game grid */
.w79b8-game-cat { margin-top: 0.5rem; }
.w79b8-cat-title {
  font-size: 1.35rem; font-weight: 700; color: var(--w79b8-accent);
  margin: 1rem 0 0.6rem; padding: 0.4rem 0.8rem;
  background: rgba(0,191,255,0.08); border-radius: 6px; display: inline-block;
}
.w79b8-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
}
.w79b8-game-card {
  background: var(--w79b8-bg2); border: 1px solid var(--w79b8-border);
  border-radius: var(--w79b8-radius); padding: 0.5rem; text-align: center;
  cursor: pointer; transition: transform 0.15s ease, border-color 0.15s ease;
}
.w79b8-game-card:active { transform: scale(0.95); border-color: var(--w79b8-primary); }
.w79b8-game-card img { width: 100%; height: 70px; object-fit: cover; border-radius: 6px; margin-bottom: 0.3rem; }
.w79b8-game-name { font-size: 1.05rem; color: var(--w79b8-text-light); line-height: 1.3rem; min-height: 2.6rem; display: flex; align-items: center; justify-content: center; }

/* Feature cards */
.w79b8-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.w79b8-feature-card {
  background: var(--w79b8-bg2); border-radius: var(--w79b8-radius);
  padding: 1rem; border: 1px solid var(--w79b8-border);
}
.w79b8-feature-card .w79b8-ficon { font-size: 2rem; color: var(--w79b8-primary); margin-bottom: 0.4rem; }
.w79b8-feature-card h3 { font-size: 1.25rem; color: #fff; margin-bottom: 0.3rem; }
.w79b8-feature-card p { font-size: 1.15rem; color: var(--w79b8-muted); line-height: 1.5rem; }

/* Promo CTA */
.w79b8-cta {
  background: linear-gradient(135deg, var(--w79b8-secondary), #1a3a55);
  border-radius: 12px; padding: 1.2rem; text-align: center; margin: 1rem 0;
}
.w79b8-cta h2 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; }
.w79b8-cta p { color: var(--w79b8-text); font-size: 1.2rem; margin-bottom: 0.8rem; }
.w79b8-cta-btn {
  display: inline-block; background: linear-gradient(135deg, var(--w79b8-accent), #c43d8a);
  color: #fff; padding: 0.8rem 2rem; border-radius: 30px; font-weight: 800; font-size: 1.3rem;
}

/* Testimonials */
.w79b8-testimonial {
  background: var(--w79b8-bg2); border-left: 3px solid var(--w79b8-accent);
  padding: 0.9rem; border-radius: 8px; margin-bottom: 0.7rem;
}
.w79b8-testimonial p { font-size: 1.2rem; color: var(--w79b8-text); font-style: italic; }
.w79b8-testimonial span { font-size: 1.1rem; color: var(--w79b8-primary); font-weight: 700; }

/* Winners */
.w79b8-winners { background: var(--w79b8-bg2); border-radius: 10px; padding: 0.6rem; }
.w79b8-winner-row { display: flex; justify-content: space-between; padding: 0.5rem 0.2rem; border-bottom: 1px solid var(--w79b8-border); font-size: 1.2rem; }
.w79b8-winner-row:last-child { border-bottom: none; }
.w79b8-winner-name { color: var(--w79b8-text); }
.w79b8-winner-amount { color: var(--w79b8-accent); font-weight: 700; }

/* Payment */
.w79b8-payments { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.w79b8-pay-item {
  background: var(--w79b8-bg2); border: 1px solid var(--w79b8-border);
  border-radius: 8px; padding: 0.6rem 0.9rem; font-size: 1.15rem; color: var(--w79b8-text);
  display: flex; align-items: center; gap: 0.4rem;
}

/* RTP table */
.w79b8-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.15rem; }
.w79b8-rtp-table th, .w79b8-rtp-table td { padding: 0.5rem; border-bottom: 1px solid var(--w79b8-border); text-align: left; }
.w79b8-rtp-table th { color: var(--w79b8-primary); }
.w79b8-rtp-table td { color: var(--w79b8-text-light); }
.w79b8-rtp-table td.w79b8-rtp-val { color: var(--w79b8-accent); font-weight: 700; }
.w79b8-rpt-table { width: 100%; border-collapse: collapse; font-size: 1.15rem; }
.w79b8-rpt-table th, .w79b8-rpt-table td { padding: 0.5rem; border-bottom: 1px solid var(--w79b8-border); text-align: left; }
.w79b8-rpt-table th { color: var(--w79b8-primary); }
.w79b8-rpt-table td { color: var(--w79b8-text-light); }
.w79b8-rpt-table td.w79b8-rpt-val { color: var(--w79b8-accent); font-weight: 700; }

/* FAQ */
.w79b8-faq-item { background: var(--w79b8-bg2); border-radius: 8px; padding: 0.8rem; margin-bottom: 0.6rem; }
.w79b8-faq-item h3 { font-size: 1.25rem; color: var(--w79b8-primary); margin-bottom: 0.3rem; }
.w79b8-faq-item p { font-size: 1.2rem; color: var(--w79b8-text); }

/* Inline link list */
.w79b8-link-list { display: flex; flex-direction: column; gap: 0.4rem; }
.w79b8-link-list a { color: var(--w79b8-primary); font-size: 1.2rem; text-decoration: underline; }

/* Footer */
.w79b8-footer { background: #101010; padding: 1.4rem 1.2rem 2rem; border-top: 2px solid var(--w79b8-secondary); }
.w79b8-footer-brand { font-size: 1.2rem; color: var(--w79b8-muted); line-height: 1.6rem; margin-bottom: 1rem; }
.w79b8-footer-promos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.w79b8-footer-promos button {
  background: linear-gradient(135deg, var(--w79b8-primary), var(--w79b8-secondary));
  color: #fff; border: none; border-radius: 20px; padding: 0.5rem 1rem; font-size: 1.15rem; font-weight: 700;
}
.w79b8-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; margin-bottom: 0.8rem; }
.w79b8-footer-links a { color: var(--w79b8-text); font-size: 1.15rem; }
.w79b8-footer-copy { font-size: 1.1rem; color: var(--w79b8-muted); border-top: 1px solid var(--w79b8-border); padding-top: 0.8rem; }

/* Bottom nav */
.w79b8-bnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  border-top: 2px solid var(--w79b8-primary);
  height: 60px; display: flex; justify-content: space-around; align-items: center;
  max-width: 430px; margin: 0 auto;
}
.w79b8-bnav-btn {
  background: transparent; border: none; color: var(--w79b8-muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 56px; cursor: pointer; gap: 2px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.w79b8-bnav-btn:active { transform: scale(0.92); }
.w79b8-bnav-btn .w79b8-bnav-icon { font-size: 22px; }
.w79b8-bnav-btn .w79b8-bnav-label { font-size: 10px; }
.w79b8-bnav-active { color: var(--w79b8-primary); }
.w79b8-bnav-active .w79b8-bnav-icon { color: var(--w79b8-accent); }

/* Desktop: hide bottom nav, show desktop nav */
@media (min-width: 769px) {
  .w79b8-bnav { display: none; }
  .w79b8-wrapper { max-width: 960px; }
  .w79b8-header, .w79b8-nav-menu { max-width: 960px; }
}
@media (max-width: 768px) {
  .w79b8-main { padding-bottom: 80px; }
}

/* Back-to-top floating button */
.w79b8-totop {
  position: fixed; right: 1rem; bottom: 72px; z-index: 1001;
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--w79b8-primary), var(--w79b8-secondary));
  color: #fff; border: none; font-size: 1.8rem; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}
.w79b8-totop.w79b8-totop-show { display: flex; }

/* SEO text paragraph spacing */
.w79b8-seo-text { font-size: 1.25rem; color: var(--w79b8-text); line-height: 1.8rem; margin-bottom: 0.8rem; }
.w79b8-seo-text a { color: var(--w79b8-accent); font-weight: 700; text-decoration: underline; }
