/* badjelly style.css - all custom classes use s044- prefix */
/* Color palette: #FFE135 | #F0E68C | #BDB76B | #0F0F23 */

:root {
  --s044-primary: #FFE135;
  --s044-secondary: #F0E68C;
  --s044-muted: #BDB76B;
  --s044-bg: #0F0F23;
  --s044-bg-alt: #161634;
  --s044-bg-card: #1d1d42;
  --s044-text-light: #FFFFFF;
  --s044-text-dim: #BDB76B;
  --s044-border: #2a2a55;
  --s044-success: #4CAF50;
  --s044-gradient: linear-gradient(135deg, #FFE135 0%, #F0E68C 100%);
  --s044-shadow: 0 4px 20px rgba(255, 225, 53, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
  background: var(--s044-bg);
  color: var(--s044-text-light);
  line-height: 1.5;
  font-size: 1.6rem;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--s044-primary); text-decoration: none; }
button { font-family: inherit; }

/* ===== Header ===== */
.s044-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(15, 15, 35, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--s044-border);
  z-index: 1000;
  max-width: 430px; margin: 0 auto;
}
.s044-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; gap: 0.6rem;
}
.s044-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.s044-logo-icon {
  width: 3.2rem; height: 3.2rem; border-radius: 0.7rem;
  background: var(--s044-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--s044-bg); font-size: 1.8rem; font-weight: 900;
}
.s044-logo-text {
  font-size: 1.9rem; font-weight: 800; color: var(--s044-primary);
  letter-spacing: -0.02em;
}
.s044-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.s044-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 1.3rem; border-radius: 0.8rem;
  font-size: 1.3rem; font-weight: 700; cursor: pointer; border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 3.6rem; text-align: center;
}
.s044-btn:active { transform: scale(0.95); }
.s044-btn-login {
  background: transparent; color: var(--s044-secondary);
  border: 1px solid var(--s044-muted);
}
.s044-btn-register {
  background: var(--s044-gradient); color: var(--s044-bg);
  box-shadow: var(--s044-shadow);
}
.s044-menu-toggle {
  background: transparent; border: none; color: var(--s044-primary);
  font-size: 2rem; cursor: pointer; padding: 0.3rem 0.5rem;
}

/* ===== Mobile Menu ===== */
.s044-mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: 82%; max-width: 330px; height: 100vh;
  background: var(--s044-bg-alt);
  z-index: 9999; transition: right 0.3s ease;
  padding: 6rem 1.5rem 2rem; overflow-y: auto;
  border-left: 1px solid var(--s044-border);
}
.s044-menu-open { right: 0; }
.s044-mobile-menu h3 {
  color: var(--s044-primary); font-size: 1.3rem;
  margin: 1.5rem 0 0.6rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.s044-mobile-menu a {
  display: block; padding: 1rem 0.5rem;
  color: var(--s044-text-light); font-size: 1.4rem;
  border-bottom: 1px solid var(--s044-border);
  transition: padding 0.2s ease, color 0.2s ease;
}
.s044-mobile-menu a:hover { color: var(--s044-primary); padding-left: 1rem; }
.s044-menu-close {
  position: absolute; top: 1.3rem; right: 1.3rem;
  background: transparent; border: none; color: var(--s044-primary);
  font-size: 2.4rem; cursor: pointer;
}
.s044-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9998; opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
}
.s044-no-scroll { overflow: hidden; }

/* ===== Main ===== */
.s044-main { padding-top: 5.8rem; }
@media (max-width: 768px) { .s044-main { padding-bottom: 8rem; } }

/* ===== Carousel ===== */
.s044-carousel {
  position: relative; margin: 1rem; border-radius: 1.2rem;
  overflow: hidden; aspect-ratio: 16/7;
  border: 1px solid var(--s044-border);
}
.s044-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.6s ease; cursor: pointer;
}
.s044-slide.s044-active { opacity: 1; }
.s044-slide img { width: 100%; height: 100%; object-fit: cover; }
.s044-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,35,0.9) 0%, transparent 62%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem;
}
.s044-slide-title {
  color: var(--s044-primary); font-size: 1.7rem; font-weight: 800;
  margin-bottom: 0.3rem;
}
.s044-slide-sub { color: var(--s044-text-light); font-size: 1.2rem; }
.s044-dots {
  position: absolute; bottom: 0.7rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.s044-dot {
  width: 0.7rem; height: 0.7rem; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; border: none;
  transition: all 0.3s ease;
}
.s044-dot.s044-active { background: var(--s044-primary); width: 1.8rem; border-radius: 0.4rem; }

/* ===== Sections ===== */
.s044-section { padding: 1.5rem 1rem; }
.s044-section-title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.7rem; font-weight: 800; color: var(--s044-text-light);
  margin-bottom: 1rem;
}
.s044-section-title i, .s044-section-title .material-icons {
  color: var(--s044-primary); font-size: 2rem;
}
.s044-cat-badge {
  background: var(--s044-gradient); color: var(--s044-bg);
  padding: 0.3rem 0.9rem; border-radius: 1rem;
  font-size: 1.1rem; font-weight: 700; margin-left: 0.4rem;
}

/* ===== Game grid ===== */
.s044-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
}
.s044-game-card {
  background: var(--s044-bg-card); border-radius: 0.9rem; overflow: hidden;
  cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid var(--s044-border);
}
.s044-game-card:active { transform: scale(0.96); }
.s044-game-card:hover { transform: translateY(-3px); box-shadow: var(--s044-shadow); border-color: var(--s044-primary); }
.s044-game-img-wrap { aspect-ratio: 1; overflow: hidden; position: relative; background: #0a0a1a; }
.s044-game-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.s044-game-name {
  padding: 0.5rem 0.4rem; font-size: 1.1rem; text-align: center;
  color: var(--s044-text-light); white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; font-weight: 600;
}
.s044-game-card:hover .s044-game-name { color: var(--s044-primary); }

/* ===== Intro / H1 ===== */
.s044-intro { padding: 0.5rem 1rem 1rem; }
.s044-intro h1 {
  font-size: 2.2rem; color: var(--s044-text-light); line-height: 1.3;
  margin-bottom: 0.6rem;
}
.s044-intro h1 span { color: var(--s044-primary); }
.s044-intro p { font-size: 1.3rem; color: var(--s044-text-dim); line-height: 1.6; }
.s044-intro p strong { color: var(--s044-secondary); }

/* ===== Info cards ===== */
.s044-info-card {
  background: var(--s044-bg-card); border-radius: 1rem; padding: 1.3rem;
  margin-bottom: 1rem; border: 1px solid var(--s044-border);
}
.s044-info-card h3 {
  color: var(--s044-primary); font-size: 1.6rem; margin-bottom: 0.7rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.s044-info-card h3 .material-icons, .s044-info-card h3 i { font-size: 2rem; }
.s044-info-card p { color: var(--s044-text-light); font-size: 1.3rem; line-height: 1.7; margin-bottom: 0.6rem; }
.s044-info-card .s044-cta-link {
  color: var(--s044-primary); font-weight: 700; font-size: 1.3rem; display: inline-block; margin-top: 0.3rem;
}
.s044-info-card .s044-cta-link:hover { text-decoration: underline; }

/* ===== Steps ===== */
.s044-steps { display: flex; flex-direction: column; gap: 0.8rem; }
.s044-step {
  display: flex; gap: 0.9rem; align-items: center;
  background: var(--s044-bg-card); padding: 1rem; border-radius: 0.8rem;
  border-left: 3px solid var(--s044-primary);
}
.s044-step-num {
  background: var(--s044-gradient); color: var(--s044-bg);
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.4rem; flex-shrink: 0;
}
.s044-step-text { font-size: 1.3rem; color: var(--s044-text-light); line-height: 1.5; }
.s044-step-text strong { color: var(--s044-primary); }

/* ===== Feature grid ===== */
.s044-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.s044-feature {
  background: var(--s044-bg-card); padding: 1.1rem 0.8rem; border-radius: 0.9rem;
  text-align: center; border: 1px solid var(--s044-border);
}
.s044-feature .material-icons, .s044-feature i { font-size: 2.6rem; color: var(--s044-primary); margin-bottom: 0.4rem; }
.s044-feature h4 { color: var(--s044-text-light); font-size: 1.3rem; margin-bottom: 0.3rem; }
.s044-feature p { color: var(--s044-text-dim); font-size: 1.1rem; line-height: 1.4; }

/* ===== Winners ===== */
.s044-winner {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--s044-bg-card); padding: 0.8rem; border-radius: 0.8rem;
  margin-bottom: 0.6rem; border: 1px solid var(--s044-border);
}
.s044-winner-avatar {
  width: 3.6rem; height: 3.6rem; border-radius: 50%;
  background: var(--s044-gradient); display: flex; align-items: center; justify-content: center;
  color: var(--s044-bg); font-weight: 800; font-size: 1.3rem; flex-shrink: 0;
}
.s044-winner-info { flex: 1; min-width: 0; }
.s044-winner-name { color: var(--s044-text-light); font-size: 1.3rem; font-weight: 600; }
.s044-winner-game { color: var(--s044-text-dim); font-size: 1.1rem; }
.s044-winner-amount { color: var(--s044-primary); font-weight: 800; font-size: 1.4rem; white-space: nowrap; }

/* ===== Payment ===== */
.s044-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.s044-pay-item {
  background: var(--s044-bg-card); padding: 0.9rem 0.3rem; border-radius: 0.7rem;
  text-align: center; border: 1px solid var(--s044-border);
  font-size: 1rem; color: var(--s044-secondary); font-weight: 600;
}
.s044-pay-item i, .s044-pay-item .material-icons { font-size: 1.9rem; color: var(--s044-primary); display: block; margin-bottom: 0.3rem; }

/* ===== Testimonials ===== */
.s044-testimonial {
  background: var(--s044-bg-card); padding: 1rem; border-radius: 0.8rem;
  margin-bottom: 0.8rem; border-left: 3px solid var(--s044-primary);
}
.s044-testi-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.s044-testi-avatar {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--s044-muted); color: var(--s044-bg);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem;
}
.s044-testi-name { color: var(--s044-text-light); font-size: 1.3rem; font-weight: 600; }
.s044-testi-stars { color: var(--s044-primary); font-size: 1rem; }
.s044-testi-text { color: var(--s044-text-light); font-size: 1.2rem; line-height: 1.6; }

/* ===== CTA banner ===== */
.s044-cta-banner {
  background: linear-gradient(135deg, #161634 0%, #1d1d42 100%);
  border: 1px solid var(--s044-primary);
  border-radius: 1rem; padding: 1.6rem 1.2rem; text-align: center; margin: 1rem;
}
.s044-cta-banner h3 { color: var(--s044-primary); font-size: 1.9rem; margin-bottom: 0.4rem; }
.s044-cta-banner p { color: var(--s044-text-light); font-size: 1.3rem; margin-bottom: 1.1rem; line-height: 1.5; }
.s044-cta-big {
  display: inline-block; background: var(--s044-gradient); color: var(--s044-bg);
  padding: 1rem 2.4rem; border-radius: 0.9rem; font-weight: 800; font-size: 1.5rem;
  border: none; cursor: pointer; box-shadow: var(--s044-shadow);
}
.s044-cta-big:active { transform: scale(0.96); }

/* ===== Security list ===== */
.s044-sec-list { list-style: none; }
.s044-sec-list li {
  display: flex; gap: 0.7rem; padding: 0.7rem 0;
  font-size: 1.3rem; color: var(--s044-text-light); border-bottom: 1px solid var(--s044-border);
  align-items: flex-start;
}
.s044-sec-list li:last-child { border-bottom: none; }
.s044-sec-list .material-icons { color: var(--s044-success); font-size: 1.8rem; flex-shrink: 0; }

/* ===== Footer ===== */
.s044-footer {
  background: var(--s044-bg-alt); padding: 2rem 1rem 1.2rem;
  border-top: 1px solid var(--s044-border); margin-top: 1.5rem;
}
.s044-footer-brand { color: var(--s044-text-dim); font-size: 1.2rem; line-height: 1.7; margin-bottom: 1rem; }
.s044-footer-brand strong { color: var(--s044-primary); }
.s044-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.s044-footer-links a {
  background: var(--s044-bg-card); color: var(--s044-secondary);
  padding: 0.5rem 0.9rem; border-radius: 0.6rem; font-size: 1.1rem;
  border: 1px solid var(--s044-border); transition: all 0.2s ease;
}
.s044-footer-links a:hover { color: var(--s044-bg); background: var(--s044-primary); }
.s044-footer-copy {
  text-align: center; color: var(--s044-text-dim); font-size: 1.1rem;
  padding-top: 1rem; border-top: 1px solid var(--s044-border);
}

/* ===== Bottom nav ===== */
.s044-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(15,15,35,0.98); backdrop-filter: blur(10px);
  border-top: 1px solid var(--s044-border);
  display: flex; justify-content: space-around; align-items: center;
  padding: 0.3rem 0.2rem; z-index: 1000;
  max-width: 430px; margin: 0 auto; height: 6rem;
}
.s044-nav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; background: transparent; border: none;
  color: var(--s044-text-dim); cursor: pointer;
  min-width: 5.6rem; min-height: 5.2rem; padding: 0.3rem;
  transition: transform 0.2s ease, color 0.2s ease; flex: 1; border-radius: 0.6rem;
}
.s044-nav-btn .material-icons, .s044-nav-btn i { font-size: 2.2rem; }
.s044-nav-btn span { font-size: 1rem; font-weight: 600; }
.s044-nav-btn:active { transform: scale(0.9); }
.s044-nav-active { color: var(--s044-primary); }
.s044-nav-promo {
  background: var(--s044-gradient); color: var(--s044-bg) !important;
  border-radius: 1rem; margin-top: -1.6rem; height: 5.6rem;
  min-width: 5.6rem; box-shadow: var(--s044-shadow);
  border: 2px solid var(--s044-bg);
}
.s044-nav-promo .material-icons, .s044-nav-promo i { font-size: 2.4rem; }
.s044-nav-promo span { font-size: 0.95rem; }

/* ===== Reveal ===== */
.s044-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.s044-reveal.s044-visible { opacity: 1; transform: translateY(0); }

/* ===== Desktop ===== */
@media (min-width: 769px) {
  .s044-bottom-nav { display: none; }
}
