/* WTKW Design Stylesheet */
/* Class prefix: wb930- */
/* Color palette: #DB7093 | #0F0F23 | #E9967A | #E0E0E0 | #DC143C */

/* === CSS Variables === */
:root {
  --wb930-primary: #DB7093;
  --wb930-bg: #0F0F23;
  --wb930-accent: #E9967A;
  --wb930-text: #E0E0E0;
  --wb930-danger: #DC143C;
  --wb930-card-bg: #1a1a3e;
  --wb930-border: #2a2a5e;
  --wb930-hover: #c45a7e;
  --wb930-gold: #f0c040;
  font-size: 62.5%;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  background: var(--wb930-bg);
  color: var(--wb930-text);
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
}

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

/* === Header === */
.wb930-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, #0F0F23 0%, #1a1a3e 100%);
  border-bottom: 2px solid var(--wb930-primary);
  max-width: 430px; margin: 0 auto;
  padding: 0 1.2rem; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.wb930-logo-area { display: flex; align-items: center; gap: 0.8rem; }
.wb930-logo-area img { width: 32px; height: 32px; border-radius: 6px; }
.wb930-logo-text { font-size: 1.8rem; font-weight: 700; color: var(--wb930-primary); letter-spacing: 0.5px; }
.wb930-header-actions { display: flex; align-items: center; gap: 0.8rem; }
.wb930-btn-reg {
  background: var(--wb930-danger); color: #fff; border: none;
  padding: 0.6rem 1.4rem; border-radius: 20px; font-size: 1.3rem;
  font-weight: 700; cursor: pointer; transition: transform 0.2s, background 0.2s;
}
.wb930-btn-reg:hover { background: #b01030; transform: scale(1.05); }
.wb930-btn-login {
  background: transparent; color: var(--wb930-primary);
  border: 2px solid var(--wb930-primary); padding: 0.5rem 1.2rem;
  border-radius: 20px; font-size: 1.3rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.wb930-btn-login:hover { background: rgba(219,112,147,0.15); }
.wb930-menu-toggle {
  background: none; border: none; color: var(--wb930-text);
  font-size: 2.2rem; cursor: pointer; padding: 0.4rem;
}

/* === Mobile Menu === */
.wb930-menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.6);
}
.wb930-overlay-active { display: block; }
.wb930-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  z-index: 9999; background: #12122e; transition: right 0.3s ease;
  overflow-y: auto; padding: 2rem 1.5rem;
}
.wb930-menu-active { right: 0; }
.wb930-menu-close {
  background: none; border: none; color: var(--wb930-text);
  font-size: 2.4rem; cursor: pointer; position: absolute;
  top: 1rem; right: 1.2rem;
}
.wb930-menu-title {
  font-size: 1.8rem; color: var(--wb930-primary); margin-bottom: 2rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--wb930-border);
}
.wb930-menu-list { list-style: none; }
.wb930-menu-list li { margin-bottom: 0.3rem; }
.wb930-menu-list a {
  display: block; padding: 1rem 1.2rem; color: var(--wb930-text);
  font-size: 1.5rem; border-radius: 8px; transition: background 0.2s;
}
.wb930-menu-list a:hover { background: rgba(219,112,147,0.15); color: var(--wb930-primary); }

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

/* === Slider / Carousel === */
.wb930-slider { position: relative; overflow: hidden; border-radius: 0 0 12px 12px; }
.wb930-slide {
  display: none; width: 100%; cursor: pointer;
}
.wb930-slide img { width: 100%; height: 180px; object-fit: cover; }
.wb930-slide-active { display: block; }
.wb930-slide-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.wb930-slide-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background 0.3s;
}
.wb930-dot-active { background: var(--wb930-primary); }

/* === Section Titles === */
.wb930-section-title {
  font-size: 2rem; font-weight: 700; color: var(--wb930-primary);
  margin: 2rem 1.2rem 1rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--wb930-border);
}
.wb930-section-title i { margin-right: 0.6rem; color: var(--wb930-accent); }

/* === Game Grid === */
.wb930-game-section { padding: 0 1rem; margin-bottom: 2rem; }
.wb930-cat-title {
  font-size: 1.6rem; color: var(--wb930-accent); margin: 1.5rem 0 1rem;
  padding-left: 0.6rem; border-left: 3px solid var(--wb930-primary);
}
.wb930-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem;
}
.wb930-game-item { text-align: center; cursor: pointer; }
.wb930-game-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px;
  border: 2px solid var(--wb930-border); transition: border-color 0.3s, transform 0.2s;
}
.wb930-game-item:hover img { border-color: var(--wb930-primary); transform: scale(1.05); }
.wb930-game-name {
  font-size: 1.1rem; color: var(--wb930-text); margin-top: 0.3rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* === Cards & Content Modules === */
.wb930-card {
  background: var(--wb930-card-bg); border-radius: 12px;
  padding: 1.5rem; margin: 1rem 1.2rem;
  border: 1px solid var(--wb930-border);
}
.wb930-card h3 { color: var(--wb930-primary); font-size: 1.6rem; margin-bottom: 0.8rem; }
.wb930-card p { color: var(--wb930-text); font-size: 1.4rem; line-height: 1.6; margin-bottom: 0.8rem; }

.wb930-promo-text {
  font-weight: 700; color: var(--wb930-accent); cursor: pointer;
  transition: color 0.2s;
}
.wb930-promo-text:hover { color: var(--wb930-primary); }

/* === CTA Button === */
.wb930-cta {
  display: block; width: calc(100% - 2.4rem); margin: 1.5rem auto;
  padding: 1.4rem; background: linear-gradient(135deg, var(--wb930-danger) 0%, var(--wb930-primary) 100%);
  color: #fff; font-size: 1.8rem; font-weight: 700; text-align: center;
  border: none; border-radius: 30px; cursor: pointer;
  box-shadow: 0 4px 15px rgba(220,20,60,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wb930-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,20,60,0.6); }

/* === Info Box === */
.wb930-info-box {
  background: rgba(219,112,147,0.1); border: 1px solid var(--wb930-primary);
  border-radius: 10px; padding: 1.2rem; margin: 1rem 1.2rem;
}
.wb930-info-box h4 { color: var(--wb930-primary); margin-bottom: 0.5rem; }
.wb930-info-box ul { padding-left: 1.8rem; }
.wb930-info-box li { margin-bottom: 0.4rem; font-size: 1.3rem; color: var(--wb930-text); }

/* === FAQ === */
.wb930-faq-item {
  background: var(--wb930-card-bg); border-radius: 10px;
  margin: 0.8rem 1.2rem; padding: 1.2rem; border: 1px solid var(--wb930-border);
}
.wb930-faq-q { font-weight: 700; color: var(--wb930-accent); font-size: 1.4rem; margin-bottom: 0.5rem; }
.wb930-faq-a { color: var(--wb930-text); font-size: 1.3rem; line-height: 1.5; }

/* === Testimonials === */
.wb930-testimonial {
  background: var(--wb930-card-bg); border-radius: 12px; padding: 1.2rem;
  margin: 0.8rem 1.2rem; border-left: 3px solid var(--wb930-gold);
}
.wb930-testimonial-name { font-weight: 700; color: var(--wb930-gold); font-size: 1.3rem; }
.wb930-testimonial-text { color: var(--wb930-text); font-size: 1.3rem; margin-top: 0.4rem; }

/* === Winners Showcase === */
.wb930-winner-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; border-bottom: 1px solid var(--wb930-border);
}
.wb930-winner-name { color: var(--wb930-gold); font-weight: 600; font-size: 1.3rem; }
.wb930-winner-game { color: var(--wb930-text); font-size: 1.2rem; }
.wb930-winner-amount { color: var(--wb930-danger); font-weight: 700; font-size: 1.4rem; }

/* === Payment Methods === */
.wb930-payment-row {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  padding: 1rem 1.2rem;
}
.wb930-pay-icon {
  background: var(--wb930-card-bg); border-radius: 8px;
  padding: 0.8rem 1.2rem; font-size: 1.3rem; color: var(--wb930-text);
  border: 1px solid var(--wb930-border);
}

/* === Footer === */
.wb930-footer {
  background: #0a0a1e; padding: 2rem 1.2rem 3rem;
  border-top: 2px solid var(--wb930-primary);
  margin-top: 2rem;
}
.wb930-footer-brand {
  color: var(--wb930-text); font-size: 1.3rem; line-height: 1.6;
  margin-bottom: 1.5rem; text-align: center;
}
.wb930-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
  margin-bottom: 1.5rem;
}
.wb930-footer-link {
  background: var(--wb930-danger); color: #fff; padding: 0.6rem 1.4rem;
  border-radius: 20px; font-size: 1.2rem; font-weight: 600;
  cursor: pointer; border: none; transition: background 0.2s;
}
.wb930-footer-link:hover { background: var(--wb930-hover); }
.wb930-footer-copy {
  text-align: center; color: #666; font-size: 1.2rem;
  border-top: 1px solid var(--wb930-border); padding-top: 1rem;
}

/* === Bottom Navigation === */
.wb930-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1000; background: linear-gradient(180deg, #1a1a3e 0%, #0F0F23 100%);
  border-top: 1px solid var(--wb930-primary); height: 60px;
  max-width: 430px; margin: 0 auto;
  justify-content: space-around; align-items: center;
}
@media (max-width: 768px) { .wb930-bottom-nav { display: flex; } }
.wb930-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: #888; font-size: 1rem; cursor: pointer; transition: color 0.2s, transform 0.2s;
  padding: 0.2rem;
}
.wb930-bottom-nav-btn i, .wb930-bottom-nav-btn .material-icons {
  font-size: 22px; margin-bottom: 2px;
}
.wb930-bottom-nav-btn span { font-size: 1rem; }
.wb930-bottom-nav-btn:hover, .wb930-bottom-active {
  color: var(--wb930-primary); transform: scale(1.08);
}
.wb930-bottom-active { position: relative; }
.wb930-bottom-active::after {
  content: ''; position: absolute; top: -1px; left: 25%; right: 25%;
  height: 3px; background: var(--wb930-primary); border-radius: 0 0 3px 3px;
}

/* === Desktop hide === */
@media (min-width: 769px) {
  .wb930-bottom-nav { display: none; }
  .wb930-main { padding-bottom: 0; }
}

/* === Help Page Styles === */
.wb930-help-content { padding: 1rem 1.2rem; }
.wb930-help-content h2 { color: var(--wb930-primary); font-size: 1.8rem; margin: 1.5rem 0 0.8rem; }
.wb930-help-content h3 { color: var(--wb930-accent); font-size: 1.5rem; margin: 1.2rem 0 0.6rem; }
.wb930-help-content p { color: var(--wb930-text); font-size: 1.4rem; line-height: 1.6; margin-bottom: 0.8rem; }

/* === Utility === */
.wb930-text-center { text-align: center; }
.wb930-text-accent { color: var(--wb930-accent); }
.wb930-text-primary { color: var(--wb930-primary); }
.wb930-mt-1 { margin-top: 1rem; }
.wb930-mb-1 { margin-bottom: 1rem; }
.wb930-hidden { display: none; }
