/* ppvi theme CSS - prefix: wbc06- */
:root {
  --wbc06-primary: #4682B4;
  --wbc06-bg: #0A0A0A;
  --wbc06-text: #FFEBCD;
  --wbc06-white: #FFFFFF;
  --wbc06-gold: #FAFAD2;
  --wbc06-cta: #FF8C00;
  --wbc06-dark: #0A0A0A;
  --wbc06-card-bg: #141414;
  --wbc06-border: #2a2a2a;
  --wbc06-muted: #8a8a8a;
  --wbc06-radius: 0.8rem;
  --wbc06-radius-sm: 0.4rem;
  --wbc06-header-h: 5.6rem;
  --wbc06-bottom-h: 6.0rem;
}

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

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

body {
  font-family: 'Hind Siliguri', sans-serif;
  background: var(--wbc06-bg);
  color: var(--wbc06-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--wbc06-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--wbc06-cta); }
img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
.wbc06-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--wbc06-header-h);
  background: rgba(10,10,10,0.97);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  border-bottom: 1px solid var(--wbc06-border);
  backdrop-filter: blur(10px);
}
.wbc06-header-scrolled { box-shadow: 0 2px 12px rgba(70,130,180,0.15); }

.wbc06-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.wbc06-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.4rem; }
.wbc06-logo span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wbc06-gold);
  letter-spacing: 0.5px;
}

.wbc06-header-actions { display: flex; align-items: center; gap: 0.6rem; }

.wbc06-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: var(--wbc06-radius-sm);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
  min-height: 3.6rem;
}
.wbc06-btn-register {
  background: var(--wbc06-cta);
  color: var(--wbc06-bg);
}
.wbc06-btn-register:hover { background: #e07b00; transform: scale(1.03); }
.wbc06-btn-login {
  background: transparent;
  color: var(--wbc06-gold);
  border: 1px solid var(--wbc06-gold);
}
.wbc06-btn-login:hover { background: rgba(250,250,210,0.1); }

.wbc06-btn-promo {
  background: linear-gradient(135deg, var(--wbc06-cta), #e07b00);
  color: var(--wbc06-bg);
  padding: 1.0rem 2.0rem;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--wbc06-radius);
  display: block;
  text-align: center;
  width: 100%;
  max-width: 280px;
  margin: 1.2rem auto;
}
.wbc06-btn-promo:hover { transform: scale(1.04); box-shadow: 0 4px 16px rgba(255,140,0,0.3); }

/* Menu toggle */
.wbc06-menu-toggle {
  background: none; border: none; color: var(--wbc06-gold);
  font-size: 2.2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile menu */
.wbc06-mobile-menu {
  position: fixed;
  top: var(--wbc06-header-h);
  left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: rgba(10,10,10,0.98);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  z-index: 9999;
  border-bottom: 1px solid var(--wbc06-border);
}
.wbc06-mobile-menu ul { list-style: none; padding: 0.8rem 1.2rem; }
.wbc06-mobile-menu li { border-bottom: 1px solid var(--wbc06-border); }
.wbc06-mobile-menu li:last-child { border-bottom: none; }
.wbc06-mobile-menu a {
  display: block;
  padding: 1.2rem 0.8rem;
  color: var(--wbc06-text);
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}
.wbc06-mobile-menu a:hover { color: var(--wbc06-cta); padding-left: 1.4rem; }

/* ===== MAIN ===== */
.wbc06-main {
  padding-top: var(--wbc06-header-h);
  min-height: 100vh;
}
@media (max-width: 768px) {
  .wbc06-main { padding-bottom: calc(var(--wbc06-bottom-h) + 2rem); }
}

/* ===== CAROUSEL ===== */
.wbc06-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.wbc06-slide {
  display: none;
  width: 100%;
}
.wbc06-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 430/200;
  object-fit: cover;
}
.wbc06-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.wbc06-dot {
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}
.wbc06-dot-active { background: var(--wbc06-cta); }

/* ===== SECTIONS ===== */
.wbc06-section {
  padding: 2.0rem 1.2rem;
}
.wbc06-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wbc06-gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--wbc06-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.wbc06-section-title .material-icons,
.wbc06-section-title .fas,
.wbc06-section-title .far {
  font-size: 2.0rem;
  color: var(--wbc06-primary);
}

/* ===== GAME GRID ===== */
.wbc06-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.wbc06-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: var(--wbc06-radius-sm);
  overflow: hidden;
}
.wbc06-game-item:hover { transform: scale(1.05); }
.wbc06-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--wbc06-radius-sm);
  border: 1px solid var(--wbc06-border);
}
.wbc06-game-name {
  font-size: 1.1rem;
  color: var(--wbc06-text);
  margin-top: 0.3rem;
  line-height: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wbc06-cat-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--wbc06-primary);
  margin: 1.6rem 0 0.8rem;
  padding-left: 0.4rem;
  border-left: 3px solid var(--wbc06-cta);
}

/* ===== CARD ===== */
.wbc06-card {
  background: var(--wbc06-card-bg);
  border-radius: var(--wbc06-radius);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--wbc06-border);
}
.wbc06-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wbc06-gold);
  margin-bottom: 0.8rem;
}
.wbc06-card p {
  color: var(--wbc06-text);
  line-height: 1.6rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

/* ===== FAQ ===== */
.wbc06-faq-item { border-bottom: 1px solid var(--wbc06-border); }
.wbc06-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--wbc06-text);
}
.wbc06-faq-icon { font-size: 1.6rem; color: var(--wbc06-cta); font-weight: 700; }
.wbc06-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 1.3rem;
  color: var(--wbc06-muted);
  line-height: 1.6rem;
}
.wbc06-faq-a-inner { padding-bottom: 1.0rem; }

/* ===== TABS ===== */
.wbc06-tab-btns { display: flex; gap: 0.4rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.wbc06-tab-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--wbc06-border);
  border-radius: var(--wbc06-radius-sm);
  background: transparent;
  color: var(--wbc06-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
}
.wbc06-tab-active {
  background: var(--wbc06-primary);
  color: var(--wbc06-white);
  border-color: var(--wbc06-primary);
}

/* ===== FEATURES GRID ===== */
.wbc06-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.0rem;
}
.wbc06-feature-card {
  background: var(--wbc06-card-bg);
  border-radius: var(--wbc06-radius);
  padding: 1.4rem 1.0rem;
  text-align: center;
  border: 1px solid var(--wbc06-border);
  transition: border-color 0.2s;
}
.wbc06-feature-card:hover { border-color: var(--wbc06-primary); }
.wbc06-feature-card .material-icons,
.wbc06-feature-card .fas {
  font-size: 2.4rem;
  color: var(--wbc06-primary);
  margin-bottom: 0.6rem;
}
.wbc06-feature-card h3 {
  font-size: 1.3rem;
  color: var(--wbc06-gold);
  margin-bottom: 0.4rem;
}
.wbc06-feature-card p { font-size: 1.1rem; color: var(--wbc06-muted); line-height: 1.4rem; }

/* ===== WINNER LIST ===== */
.wbc06-winner-list { list-style: none; }
.wbc06-winner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--wbc06-border);
  font-size: 1.2rem;
}
.wbc06-winner-name { color: var(--wbc06-gold); font-weight: 600; }
.wbc06-winner-amount { color: var(--wbc06-cta); font-weight: 700; }

/* ===== PAYMENT ===== */
.wbc06-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.0rem;
  justify-content: center;
}
.wbc06-payment-item {
  background: var(--wbc06-card-bg);
  border: 1px solid var(--wbc06-border);
  border-radius: var(--wbc06-radius-sm);
  padding: 1.0rem 1.4rem;
  font-size: 1.3rem;
  color: var(--wbc06-text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== FOOTER ===== */
.wbc06-footer {
  background: var(--wbc06-card-bg);
  padding: 2.4rem 1.2rem;
  border-top: 1px solid var(--wbc06-border);
}
.wbc06-footer-brand { font-size: 1.3rem; color: var(--wbc06-muted); line-height: 1.6rem; margin-bottom: 1.6rem; }
.wbc06-footer-promo-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
  justify-content: center;
}
.wbc06-footer-promo-btns .wbc06-btn {
  font-size: 1.2rem;
  padding: 0.5rem 1.0rem;
  min-height: 3.2rem;
}
.wbc06-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-bottom: 1.4rem;
  justify-content: center;
}
.wbc06-footer-links a { font-size: 1.2rem; color: var(--wbc06-muted); }
.wbc06-footer-links a:hover { color: var(--wbc06-gold); }
.wbc06-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.wbc06-partners span {
  font-size: 1.1rem;
  color: var(--wbc06-muted);
  background: rgba(70,130,180,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 0.3rem;
}
.wbc06-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: var(--wbc06-muted);
}

/* ===== BOTTOM NAV ===== */
.wbc06-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--wbc06-bottom-h);
  background: linear-gradient(180deg, #141414, #0a0a0a);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 1px solid var(--wbc06-border);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.5);
}
.wbc06-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 6.0rem;
  min-height: 5.0rem;
  background: none;
  border: none;
  color: var(--wbc06-muted);
  cursor: pointer;
  transition: all 0.25s;
  gap: 0.2rem;
  -webkit-tap-highlight-color: transparent;
}
.wbc06-bottom-btn:hover,
.wbc06-bottom-btn:focus { color: var(--wbc06-cta); transform: scale(1.08); }
.wbc06-bottom-btn .material-icons { font-size: 2.4rem; }
.wbc06-bottom-btn .fas,
.wbc06-bottom-btn .far,
.wbc06-bottom-btn .fad { font-size: 2.2rem; }
.wbc06-bottom-btn span:not(.material-icons):not(.fas):not(.far):not(.fad) {
  font-size: 1.0rem;
  font-weight: 500;
}
.wbc06-bottom-btn-active { color: var(--wbc06-cta); }
.wbc06-bottom-btn-active::after {
  content: '';
  display: block;
  width: 2.0rem;
  height: 0.2rem;
  background: var(--wbc06-cta);
  border-radius: 0.1rem;
  margin-top: 0.1rem;
}

@media (min-width: 769px) {
  .wbc06-bottom-nav { display: none; }
}

/* ===== SCROLL TOP ===== */
.wbc06-scroll-top {
  position: fixed;
  bottom: calc(var(--wbc06-bottom-h) + 1.2rem);
  right: 1.2rem;
  width: 4.0rem;
  height: 4.0rem;
  background: var(--wbc06-primary);
  color: var(--wbc06-white);
  border: none;
  border-radius: 50%;
  font-size: 2.0rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(70,130,180,0.3);
  transition: transform 0.2s;
}
.wbc06-scroll-top:hover { transform: scale(1.1); }

/* ===== TESTIMONIALS ===== */
.wbc06-testimonial {
  background: var(--wbc06-card-bg);
  border-radius: var(--wbc06-radius);
  padding: 1.4rem;
  margin-bottom: 1.0rem;
  border-left: 3px solid var(--wbc06-primary);
}
.wbc06-testimonial-text { font-size: 1.3rem; color: var(--wbc06-text); line-height: 1.6rem; font-style: italic; }
.wbc06-testimonial-author { font-size: 1.1rem; color: var(--wbc06-cta); margin-top: 0.6rem; font-weight: 600; }

/* ===== TEXT CONTENT ===== */
.wbc06-text-content p {
  margin-bottom: 1.0rem;
  line-height: 1.6rem;
  font-size: 1.3rem;
  color: var(--wbc06-text);
}
.wbc06-text-content h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--wbc06-gold);
  margin: 2.0rem 0 1.0rem;
}
.wbc06-text-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wbc06-primary);
  margin: 1.6rem 0 0.8rem;
}
.wbc06-text-content ul {
  padding-left: 1.6rem;
  margin-bottom: 1.0rem;
}
.wbc06-text-content li {
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
  line-height: 1.5rem;
}

/* ===== PROMO TEXT LINK ===== */
.wbc06-promo-link {
  color: var(--wbc06-cta);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.wbc06-promo-link:hover { color: #e07b00; }

/* ===== H1 ===== */
.wbc06-h1 {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--wbc06-gold);
  text-align: center;
  padding: 1.6rem 1.2rem 0.8rem;
  line-height: 2.6rem;
}

/* ===== HELP PAGE ===== */
.wbc06-help-section { padding: 1.6rem 1.2rem; }
.wbc06-step-list { counter-reset: step; list-style: none; padding: 0; }
.wbc06-step-item {
  counter-increment: step;
  display: flex;
  gap: 1.0rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.wbc06-step-item::before {
  content: counter(step);
  flex-shrink: 0;
  width: 2.8rem; height: 2.8rem;
  background: var(--wbc06-primary);
  color: var(--wbc06-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
  .wbc06-main { padding-bottom: 0; }
  .wbc06-game-grid { grid-template-columns: repeat(5, 1fr); }
}
