/* ============================================================
   kkbb.homes - theme-1441.css
   Mobile-first casino/gaming theme. max container 430px.
   Every custom class uses the "w1441-" prefix.
   Palette: #FFEF94 / #262626 / #B03060 / #CD5C5C
   ============================================================ */

:root {
  --w1441-primary: #B03060;
  --w1441-accent: #CD5C5C;
  --w1441-yellow: #FFEF94;
  --w1441-bg: #262626;
  --w1441-bg2: #1b1b1b;
  --w1441-card: #333333;
  --w1441-card2: #3c3c3c;
  --w1441-text: #f6f6f6;
  --w1441-muted: #b6b6b6;
  --w1441-border: #4a4a4a;
  --w1441-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  --w1441-radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans Bengali', 'Hind Siliguri', system-ui, -apple-system, sans-serif;
  background: var(--w1441-bg);
  color: var(--w1441-text);
  font-size: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--w1441-yellow); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; }

/* Layout */
.w1441-wrapper { max-width: 430px; margin: 0 auto; position: relative; min-height: 100vh; background: var(--w1441-bg); }
.w1441-container { width: 100%; padding: 0 1.2rem; }

/* Header */
.w1441-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, rgba(38, 38, 38, 0.96), rgba(176, 48, 96, 0.9));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 239, 148, 0.18);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.w1441-header-scrolled { background: rgba(24, 24, 24, 0.98); box-shadow: 0 2px 12px rgba(0, 0, 0, 0.55); }
.w1441-header-inner {
  max-width: 430px; margin: 0 auto; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem;
}
.w1441-logo { display: flex; align-items: center; gap: 0.6rem; }
.w1441-logo img { width: 32px; height: 32px; border-radius: 7px; }
.w1441-logo-text { font-size: 2rem; font-weight: 800; letter-spacing: 0.5px; color: var(--w1441-yellow); }
.w1441-header-actions { display: flex; align-items: center; gap: 0.5rem; }

/* Buttons */
.w1441-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 1.4rem; border-radius: 999px; font-size: 1.35rem; font-weight: 700;
  min-height: 38px; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
}
.w1441-btn:active { transform: scale(0.94); }
.w1441-btn-primary { background: linear-gradient(135deg, var(--w1441-primary), var(--w1441-accent)); color: #fff; box-shadow: 0 3px 10px rgba(176, 48, 96, 0.45); }
.w1441-btn-secondary { background: var(--w1441-yellow); color: #2a2a2a; font-weight: 800; }
.w1441-btn-ghost { background: transparent; color: var(--w1441-yellow); border: 1px solid var(--w1441-yellow); }
.w1441-btn-block { width: 100%; padding: 1.1rem; font-size: 1.5rem; }
.w1441-menu-toggle { width: 38px; height: 38px; color: var(--w1441-yellow); font-size: 2rem; display: flex; align-items: center; justify-content: center; }

/* Mobile menu */
.w1441-menu-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.w1441-menu-overlay.w1441-show { opacity: 1; pointer-events: auto; }
.w1441-mobile-menu {
  position: fixed; top: 0; right: -82%; width: 82%; max-width: 320px; height: 100%;
  background: var(--w1441-bg2); z-index: 9999; padding: 5rem 1.5rem 2rem; overflow-y: auto;
  border-left: 1px solid var(--w1441-border); transition: right 0.3s ease;
}
.w1441-mobile-menu.w1441-menu-open { right: 0; }
.w1441-menu-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; color: var(--w1441-yellow); font-size: 2rem; }
.w1441-mobile-menu h4 { color: var(--w1441-yellow); font-size: 1.3rem; margin: 1.4rem 0 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.w1441-mobile-menu a { display: block; padding: 1rem 0.8rem; color: var(--w1441-text); border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-size: 1.5rem; }
.w1441-mobile-menu a:active { background: rgba(176, 48, 96, 0.2); }

/* Main */
.w1441-main { padding-top: 60px; padding-bottom: 84px; }

/* Hero / Carousel */
.w1441-hero { padding: 1rem 0 0.5rem; }
.w1441-carousel { position: relative; overflow: hidden; border-radius: var(--w1441-radius); box-shadow: var(--w1441-shadow); }
.w1441-carousel-track { display: flex; transition: transform 0.45s ease; }
.w1441-slide { min-width: 100%; position: relative; cursor: pointer; }
.w1441-slide img { width: 100%; height: auto; border-radius: var(--w1441-radius); }
.w1441-slide-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.2rem 1rem; background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent); border-radius: 0 0 var(--w1441-radius) var(--w1441-radius); }
.w1441-slide-overlay h2 { color: var(--w1441-yellow); font-size: 1.9rem; font-weight: 800; }
.w1441-slide-overlay p { color: #ededed; font-size: 1.25rem; margin-top: 0.3rem; }
.w1441-carousel-dots { display: flex; justify-content: center; gap: 0.5rem; padding: 0.7rem 0; }
.w1441-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: all 0.2s; padding: 0; }
.w1441-dot-active { background: var(--w1441-yellow); width: 22px; border-radius: 4px; }

/* Hero CTA row */
.w1441-hero-cta { display: flex; gap: 0.6rem; padding: 0.6rem 1.2rem 0; }
.w1441-hero-cta .w1441-btn { flex: 1; }

/* Sections */
.w1441-section { padding: 1.6rem 0; }
.w1441-section-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.w1441-section-head i, .w1441-section-head .material-icons, .w1441-section-head ion-icon { color: var(--w1441-accent); font-size: 2rem; }
.w1441-section-title { font-size: 1.7rem; font-weight: 800; color: var(--w1441-yellow); }
.w1441-section-desc { color: var(--w1441-muted); font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.6; }

/* H1 homepage */
.w1441-h1 { font-size: 2rem; font-weight: 800; color: var(--w1441-yellow); text-align: center; margin: 1.2rem 0 0.6rem; padding: 0 1rem; line-height: 1.35; }
.w1441-h1-sub { text-align: center; color: var(--w1441-muted); font-size: 1.3rem; padding: 0 1.5rem; margin-bottom: 0.8rem; }

/* Category scroll row */
.w1441-cat-row { display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.6rem; margin-bottom: 1rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.w1441-cat-row::-webkit-scrollbar { display: none; }
.w1441-cat-badge { flex: 0 0 auto; padding: 0.6rem 1.2rem; border-radius: 999px; background: var(--w1441-card); color: var(--w1441-text); font-size: 1.25rem; font-weight: 600; white-space: nowrap; border: 1px solid var(--w1441-border); }
.w1441-cat-badge:hover, .w1441-cat-badge:active { background: var(--w1441-primary); color: #fff; }

/* Game grid */
.w1441-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.w1441-game-card { background: var(--w1441-card); border-radius: 10px; overflow: hidden; cursor: pointer; transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s; border: 1px solid var(--w1441-border); }
.w1441-game-card:active { transform: scale(0.95); }
.w1441-game-card:hover { box-shadow: var(--w1441-shadow); border-color: var(--w1441-primary); }
.w1441-game-img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #222; }
.w1441-game-name { padding: 0.5rem 0.4rem; font-size: 1.15rem; text-align: center; color: var(--w1441-text); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Generic card */
.w1441-card { background: var(--w1441-card); border-radius: var(--w1441-radius); padding: 1.3rem; margin-bottom: 1rem; border: 1px solid var(--w1441-border); }
.w1441-card h3 { color: var(--w1441-yellow); font-size: 1.5rem; margin-bottom: 0.5rem; }
.w1441-card p { color: var(--w1441-muted); font-size: 1.3rem; line-height: 1.65; }
.w1441-card p + p { margin-top: 0.6rem; }

/* Feature grid */
.w1441-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.w1441-feature-item { background: var(--w1441-card); border-radius: 10px; padding: 1rem 0.6rem; text-align: center; border: 1px solid var(--w1441-border); }
.w1441-feature-item i, .w1441-feature-item .material-icons, .w1441-feature-item ion-icon { font-size: 2.4rem; color: var(--w1441-yellow); margin-bottom: 0.4rem; display: inline-block; }
.w1441-feature-item h4 { font-size: 1.3rem; color: var(--w1441-text); margin-bottom: 0.2rem; font-weight: 700; }
.w1441-feature-item p { font-size: 1.15rem; color: var(--w1441-muted); line-height: 1.4; }

/* Steps list */
.w1441-step { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 0.9rem; }
.w1441-step-num { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--w1441-primary), var(--w1441-accent)); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.w1441-step p { color: var(--w1441-muted); font-size: 1.3rem; line-height: 1.55; }

/* RTP stat grid */
.w1441-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.w1441-stat { background: var(--w1441-card); border-radius: 10px; padding: 0.9rem; text-align: center; border: 1px solid var(--w1441-border); }
.w1441-stat b { display: block; font-size: 1.9rem; color: var(--w1441-yellow); font-weight: 800; }
.w1441-stat span { font-size: 1.15rem; color: var(--w1441-muted); }

/* Testimonials */
.w1441-testimonial { background: var(--w1441-card); border-radius: 10px; padding: 1rem; margin-bottom: 0.8rem; border-left: 3px solid var(--w1441-primary); }
.w1441-testi-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.w1441-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--w1441-primary), var(--w1441-accent)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; }
.w1441-stars { color: var(--w1441-yellow); font-size: 1.1rem; letter-spacing: 1px; }
.w1441-testi-name { font-weight: 700; color: var(--w1441-text); font-size: 1.3rem; }
.w1441-testimonial p { font-size: 1.25rem; color: var(--w1441-muted); line-height: 1.55; }

/* Winners */
.w1441-winner { display: flex; align-items: center; gap: 0.7rem; background: var(--w1441-card); padding: 0.7rem 0.9rem; border-radius: 8px; margin-bottom: 0.5rem; border: 1px solid var(--w1441-border); }
.w1441-winner-avatar { width: 32px; height: 32px; border-radius: 50%; flex: 0 0 auto; background: var(--w1441-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; }
.w1441-winner-info { flex: 1; min-width: 0; }
.w1441-winner-name { font-size: 1.25rem; color: var(--w1441-text); font-weight: 600; }
.w1441-winner-game { font-size: 1.1rem; color: var(--w1441-muted); }
.w1441-winner-amount { color: var(--w1441-yellow); font-weight: 800; font-size: 1.35rem; }

/* Payment */
.w1441-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.w1441-pay-item { background: var(--w1441-card); border-radius: 8px; padding: 0.8rem 0.3rem; text-align: center; font-size: 1.05rem; color: var(--w1441-text); border: 1px solid var(--w1441-border); font-weight: 600; }
.w1441-pay-item i, .w1441-pay-item .material-icons, .w1441-pay-item ion-icon { font-size: 1.9rem; color: var(--w1441-yellow); display: block; margin-bottom: 0.25rem; }

/* FAQ */
.w1441-faq-item { background: var(--w1441-card); border-radius: 8px; margin-bottom: 0.6rem; border: 1px solid var(--w1441-border); overflow: hidden; }
.w1441-faq-q { width: 100%; text-align: left; padding: 1rem; color: var(--w1441-text); font-size: 1.35rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.w1441-faq-q i { color: var(--w1441-yellow); transition: transform 0.25s; font-size: 1.4rem; }
.w1441-faq-item.open .w1441-faq-q i { transform: rotate(45deg); }
.w1441-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.w1441-faq-item.open .w1441-faq-a { max-height: 500px; }
.w1441-faq-a-inner { padding: 0 1rem 1rem; color: var(--w1441-muted); font-size: 1.25rem; line-height: 1.65; }

/* CTA banner */
.w1441-cta { background: linear-gradient(135deg, var(--w1441-primary), var(--w1441-accent)); border-radius: var(--w1441-radius); padding: 1.5rem 1.2rem; text-align: center; margin: 1.4rem 0; }
.w1441-cta h3 { color: #fff; font-size: 1.7rem; margin-bottom: 0.3rem; font-weight: 800; }
.w1441-cta p { color: rgba(255, 255, 255, 0.92); font-size: 1.25rem; margin-bottom: 1rem; }
.w1441-cta .w1441-btn { background: var(--w1441-yellow); color: #262626; }

/* Inline promo */
.w1441-promo-link { color: var(--w1441-yellow); font-weight: 800; cursor: pointer; }
.w1441-promo-block { display: block; text-align: center; padding: 1.1rem; margin: 0.8rem 0; background: linear-gradient(135deg, rgba(176, 48, 96, 0.22), rgba(205, 92, 92, 0.16)); border: 1px dashed var(--w1441-primary); border-radius: var(--w1441-radius); color: var(--w1441-yellow); font-weight: 700; font-size: 1.4rem; cursor: pointer; }

/* App download box */
.w1441-app-box { display: flex; gap: 1rem; align-items: center; background: var(--w1441-card); border-radius: var(--w1441-radius); padding: 1.1rem; border: 1px solid var(--w1441-border); }
.w1441-app-icon { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, var(--w1441-primary), var(--w1441-accent)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2.6rem; }
.w1441-app-box h4 { font-size: 1.45rem; color: var(--w1441-yellow); margin-bottom: 0.2rem; }
.w1441-app-box p { font-size: 1.2rem; color: var(--w1441-muted); margin-bottom: 0.5rem; }

/* Footer */
.w1441-footer { background: var(--w1441-bg2); padding: 2rem 0 1rem; border-top: 1px solid var(--w1441-border); margin-top: 1rem; }
.w1441-footer-brand { font-size: 1.6rem; font-weight: 800; color: var(--w1441-yellow); margin-bottom: 0.4rem; }
.w1441-footer p { color: var(--w1441-muted); font-size: 1.22rem; line-height: 1.65; margin-bottom: 1rem; }
.w1441-footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.w1441-footer-links a { font-size: 1.18rem; color: var(--w1441-text); padding: 0.4rem 0.8rem; background: var(--w1441-card); border-radius: 999px; border: 1px solid var(--w1441-border); }
.w1441-footer-promo { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.w1441-footer-promo button { padding: 0.55rem 1rem; border-radius: 999px; font-size: 1.2rem; font-weight: 700; background: linear-gradient(135deg, var(--w1441-primary), var(--w1441-accent)); color: #fff; }
.w1441-footer-copy { color: #888; font-size: 1.15rem; padding-top: 1rem; border-top: 1px solid var(--w1441-border); text-align: center; }

/* Bottom nav */
.w1441-bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(180deg, #2a2a2a, #161616); border-top: 1px solid rgba(255, 239, 148, 0.22); display: flex; justify-content: space-around; align-items: stretch; height: 62px; padding-bottom: env(safe-area-inset-bottom, 0); }
.w1441-bottom-btn { flex: 1; min-width: 60px; min-height: 60px; color: var(--w1441-muted); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem; font-size: 1.05rem; font-weight: 600; transition: color 0.2s, transform 0.15s; position: relative; }
.w1441-bottom-btn i, .w1441-bottom-btn .material-icons { font-size: 2.1rem; }
.w1441-bottom-btn ion-icon { font-size: 2.3rem; }
.w1441-bottom-btn:active { transform: scale(0.9); }
.w1441-bottom-btn:hover { color: var(--w1441-yellow); }
.w1441-bottom-btn.w1441-active { color: var(--w1441-yellow); }
.w1441-bottom-btn.w1441-active::before { content: ""; position: absolute; top: 0; left: 28%; right: 28%; height: 3px; background: var(--w1441-yellow); border-radius: 0 0 4px 4px; }
.w1441-bottom-btn.w1441-promo { color: var(--w1441-yellow); }
.w1441-bottom-btn.w1441-promo i { filter: drop-shadow(0 0 6px rgba(255, 239, 148, 0.6)); }
.w1441-badge { position: absolute; top: 6px; right: 18px; background: var(--w1441-accent); color: #fff; font-size: 0.9rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* Back to top */
.w1441-back-top { position: fixed; right: 1.1rem; bottom: 76px; z-index: 999; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--w1441-primary), var(--w1441-accent)); color: #fff; font-size: 1.9rem; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.15s; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4); }
.w1441-back-show { opacity: 1; pointer-events: auto; }
.w1441-back-top:active { transform: scale(0.9); }

/* Utility */
.w1441-text-center { text-align: center; }
.w1441-mt-1 { margin-top: 0.5rem; }
.w1441-mt-2 { margin-top: 1rem; }
.w1441-muted { color: var(--w1441-muted); }
.w1441-hidden { display: none !important; }

/* Responsive behaviour */
@media (min-width: 769px) {
  .w1441-bottom-nav { display: none; }
  .w1441-wrapper { max-width: 720px; }
  .w1441-header-inner { max-width: 720px; }
  .w1441-main { padding-bottom: 2rem; }
  .w1441-game-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 360px) {
  .w1441-game-grid { grid-template-columns: repeat(2, 1fr); }
  .w1441-feature-grid { grid-template-columns: 1fr; }
}
