/* bdg33.css - Core Stylesheet for bdg33.click */
/* All classes prefixed with w0492- */

:root {
  --w0492-primary: #7B68EE;
  --w0492-bg: #2E4057;
  --w0492-bg-light: #3a5068;
  --w0492-text: #BAE1FF;
  --w0492-accent: #DDA0DD;
  --w0492-highlight: #FFCCCB;
  --w0492-white: #ffffff;
  --w0492-dark: #1a2a3a;
  --w0492-font: 'Hind Siliguri', sans-serif;
  --w0492-radius: 10px;
  --w0492-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--w0492-font);
  background: var(--w0492-bg);
  color: var(--w0492-text);
  line-height: 1.6rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

/* ====== HEADER ====== */
.w0492-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 52px;
  background: var(--w0492-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(123,104,238,0.3);
}

.w0492-header-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.w0492-header-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.w0492-header-brand {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--w0492-primary), var(--w0492-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.w0492-header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.w0492-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  font-family: var(--w0492-font);
}

.w0492-btn-register {
  background: linear-gradient(135deg, var(--w0492-primary), #9B8BFF);
  color: var(--w0492-white);
}

.w0492-btn-login {
  background: transparent;
  color: var(--w0492-accent);
  border: 1px solid var(--w0492-accent);
}

.w0492-btn-register:hover, .w0492-btn-login:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(123,104,238,0.5);
}

.w0492-hamburger {
  background: none;
  border: none;
  color: var(--w0492-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* ====== MOBILE MENU ====== */
.w0492-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}

.w0492-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background: var(--w0492-dark);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 2rem 1.5rem;
}

.w0492-menu-panel h3 {
  font-size: 1.6rem;
  color: var(--w0492-accent);
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(221,160,221,0.3);
  padding-bottom: 0.6rem;
}

.w0492-menu-panel a {
  display: block;
  padding: 0.9rem 1rem;
  color: var(--w0492-text);
  font-size: 1.3rem;
  border-radius: 6px;
  margin-bottom: 0.3rem;
  transition: background 0.2s;
}

.w0492-menu-panel a:hover {
  background: rgba(123,104,238,0.2);
  color: var(--w0492-accent);
}

.w0492-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--w0492-text);
  font-size: 2.2rem;
  cursor: pointer;
}

/* ====== MAIN CONTENT ====== */
.w0492-main {
  padding-top: 52px;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .w0492-main { padding-bottom: 80px; }
}

/* ====== CAROUSEL ====== */
.w0492-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.w0492-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}

.w0492-slide-active { display: block; }

.w0492-slide img {
  width: 100%;
  height: auto;
  min-height: 160px;
  object-fit: cover;
}

.w0492-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.w0492-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.w0492-dot-active { background: var(--w0492-primary); }

.w0492-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 0.6rem;
  cursor: pointer;
  font-size: 1.4rem;
  border-radius: 50%;
}

.w0492-carousel-prev { left: 8px; }
.w0492-carousel-next { right: 8px; }

/* ====== SECTION TITLES ====== */
.w0492-section {
  padding: 1.5rem 1.2rem;
}

.w0492-section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--w0492-white);
  margin-bottom: 1rem;
  padding-left: 0.8rem;
  border-left: 3px solid var(--w0492-primary);
}

.w0492-section-title span {
  color: var(--w0492-accent);
}

/* ====== GAME GRID ====== */
.w0492-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.w0492-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.w0492-game-item:hover { transform: translateY(-3px); }

.w0492-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  border: 2px solid rgba(123,104,238,0.3);
  object-fit: cover;
  transition: border-color 0.2s;
}

.w0492-game-item:hover img {
  border-color: var(--w0492-primary);
}

.w0492-game-item p {
  font-size: 1.05rem;
  color: var(--w0492-text);
  margin-top: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ====== CONTENT CARDS ====== */
.w0492-card {
  background: var(--w0492-bg-light);
  border-radius: var(--w0492-radius);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--w0492-shadow);
}

.w0492-card h2 {
  font-size: 1.6rem;
  color: var(--w0492-white);
  margin-bottom: 0.8rem;
}

.w0492-card h3 {
  font-size: 1.4rem;
  color: var(--w0492-accent);
  margin-bottom: 0.6rem;
}

.w0492-card p {
  font-size: 1.25rem;
  color: var(--w0492-text);
  line-height: 1.8rem;
  margin-bottom: 0.6rem;
}

.w0492-card ul, .w0492-card ol {
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
}

.w0492-card li {
  font-size: 1.2rem;
  color: var(--w0492-text);
  line-height: 1.8rem;
  margin-bottom: 0.3rem;
}

/* ====== PROMO BUTTONS ====== */
.w0492-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--w0492-primary), #9B8BFF);
  color: var(--w0492-white);
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  font-family: var(--w0492-font);
  text-decoration: none;
}

.w0492-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(123,104,238,0.5);
  color: var(--w0492-white);
}

.w0492-promo-btn-alt {
  background: linear-gradient(135deg, #e91e8c, var(--w0492-accent));
}

.w0492-promo-link {
  color: var(--w0492-accent);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.w0492-promo-link:hover { color: var(--w0492-highlight); }

/* ====== TESTIMONIALS ====== */
.w0492-testimonial {
  background: var(--w0492-bg-light);
  border-radius: var(--w0492-radius);
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--w0492-accent);
}

.w0492-testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--w0492-text);
}

.w0492-testimonial strong {
  color: var(--w0492-accent);
  font-size: 1.1rem;
}

/* ====== PAYMENT GRID ====== */
.w0492-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.w0492-payment-item {
  background: var(--w0492-bg-light);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--w0492-text);
  border: 1px solid rgba(123,104,238,0.3);
}

/* ====== FAQ ====== */
.w0492-faq-item {
  background: var(--w0492-bg-light);
  border-radius: var(--w0492-radius);
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.w0492-faq-q {
  padding: 1rem 1.2rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--w0492-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.w0492-faq-icon {
  font-size: 1.4rem;
  color: var(--w0492-accent);
  font-weight: 700;
  min-width: 2rem;
  text-align: center;
}

.w0492-faq-a {
  display: none;
  padding: 0 1.2rem 1rem;
  font-size: 1.2rem;
  color: var(--w0492-text);
  line-height: 1.7rem;
}

/* ====== FEATURES GRID ====== */
.w0492-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.w0492-feature-item {
  background: var(--w0492-bg-light);
  border-radius: var(--w0492-radius);
  padding: 1rem;
  text-align: center;
}

.w0492-feature-item i {
  font-size: 2.4rem;
  color: var(--w0492-primary);
  margin-bottom: 0.5rem;
}

.w0492-feature-item h4 {
  font-size: 1.2rem;
  color: var(--w0492-white);
  margin-bottom: 0.3rem;
}

.w0492-feature-item p {
  font-size: 1.05rem;
  color: var(--w0492-text);
}

/* ====== WINNER LIST ====== */
.w0492-winner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--w0492-bg-light);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-bottom: 0.4rem;
}

.w0492-winner-name {
  font-size: 1.15rem;
  color: var(--w0492-text);
  flex: 1;
}

.w0492-winner-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--w0492-highlight);
}

/* ====== APP CTA ====== */
.w0492-app-cta {
  background: linear-gradient(135deg, var(--w0492-primary), #5a4fcf);
  border-radius: var(--w0492-radius);
  padding: 1.5rem;
  text-align: center;
}

.w0492-app-cta h3 {
  font-size: 1.6rem;
  color: var(--w0492-white);
  margin-bottom: 0.5rem;
}

.w0492-app-cta p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

/* ====== H1 TITLE ====== */
.w0492-h1-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--w0492-white);
  text-align: center;
  padding: 1.2rem;
  line-height: 2.4rem;
}

.w0492-h1-title span {
  color: var(--w0492-primary);
}

/* ====== FOOTER ====== */
.w0492-footer {
  background: var(--w0492-dark);
  padding: 2rem 1.2rem 1rem;
  border-top: 1px solid rgba(123,104,238,0.3);
}

.w0492-footer-brand {
  font-size: 1.2rem;
  color: var(--w0492-text);
  line-height: 1.7rem;
  margin-bottom: 1rem;
  text-align: center;
}

.w0492-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.w0492-footer-promos .w0492-promo-btn {
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
}

.w0492-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.w0492-footer-links a {
  font-size: 1.1rem;
  color: var(--w0492-text);
}

.w0492-footer-links a:hover { color: var(--w0492-accent); }

.w0492-footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.w0492-footer-partners span {
  font-size: 1rem;
  color: rgba(186,225,255,0.6);
  background: rgba(255,255,255,0.05);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}

.w0492-footer-copy {
  text-align: center;
  font-size: 1rem;
  color: rgba(186,225,255,0.5);
}

/* ====== BOTTOM NAV ====== */
.w0492-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 60px;
  background: var(--w0492-dark);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 1px solid rgba(123,104,238,0.3);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.w0492-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 50px;
  background: none;
  border: none;
  color: var(--w0492-text);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0.3rem;
  text-decoration: none;
}

.w0492-bottom-btn i, .w0492-bottom-btn .material-symbols-outlined {
  font-size: 22px;
  margin-bottom: 2px;
  transition: color 0.2s, transform 0.2s;
}

.w0492-bottom-btn span {
  font-size: 1rem;
  font-weight: 500;
}

.w0492-bottom-btn:hover, .w0492-bottom-btn:focus {
  color: var(--w0492-accent);
}

.w0492-bottom-btn:hover i, .w0492-bottom-btn:hover .material-symbols-outlined {
  transform: scale(1.15);
  color: var(--w0492-accent);
}

.w0492-bottom-btn-active {
  color: var(--w0492-primary);
}

.w0492-bottom-btn-active i {
  color: var(--w0492-primary) !important;
}

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

/* ====== BACK TO TOP ====== */
.w0492-back-top {
  position: fixed;
  bottom: 75px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--w0492-primary);
  color: var(--w0492-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(123,104,238,0.4);
}

.w0492-back-top:hover { transform: scale(1.1); }

/* ====== INTERNAL LINKS ====== */
.w0492-internal-link {
  color: var(--w0492-accent);
  text-decoration: underline;
  font-weight: 500;
}

.w0492-internal-link:hover { color: var(--w0492-highlight); }

/* ====== RESPONSIVE HELPERS ====== */
.w0492-text-center { text-align: center; }
.w0492-mt-1 { margin-top: 0.8rem; }
.w0492-mt-2 { margin-top: 1.2rem; }
.w0492-mb-1 { margin-bottom: 0.8rem; }
.w0492-mb-2 { margin-bottom: 1.2rem; }

/* ====== SAFETY PAGE ====== */
.w0492-safety-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--w0492-bg-light);
  border-radius: var(--w0492-radius);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
}

.w0492-safety-item i {
  font-size: 2.4rem;
  color: var(--w0492-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.w0492-safety-item h4 {
  font-size: 1.3rem;
  color: var(--w0492-white);
  margin-bottom: 0.3rem;
}

.w0492-safety-item p {
  font-size: 1.15rem;
  color: var(--w0492-text);
  line-height: 1.7rem;
}
