/* jali.homes core stylesheet - all classes use prefix s067- */
/* English comments only */

:root {
  --s067-primary: #FF1493;
  --s067-bg: #2C3E50;
  --s067-bg2: #3C3C3C;
  --s067-accent: #A0522D;
  --s067-soft: #FFCCCB;
  --s067-text: #FFFFFF;
  --s067-text-dim: #d8dde2;
  --s067-gold: #FFD700;
  --s067-card: rgba(255,255,255,0.06);
}

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

html { font-size: 62.5%; }

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", Arial, sans-serif;
  background: linear-gradient(160deg, #2C3E50 0%, #3C3C3C 60%, #2C3E50 100%);
  color: var(--s067-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--s067-soft); text-decoration: none; }

/* ---------- Header ---------- */
.s067-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(44,62,80,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--s067-primary);
  max-width: 430px; margin: 0 auto;
}
.s067-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem; gap: 0.6rem;
}
.s067-logo { display: flex; align-items: center; gap: 0.5rem; }
.s067-logo img { width: 28px; height: 28px; border-radius: 6px; }
.s067-logo span { font-size: 1.5rem; font-weight: 700; color: var(--s067-soft); }
.s067-header-btns { display: flex; gap: 0.4rem; }
.s067-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 1rem; border-radius: 20px; font-size: 1.2rem;
  font-weight: 700; border: none; cursor: pointer;
  min-height: 36px; transition: transform .15s, box-shadow .15s;
}
.s067-btn:active { transform: scale(0.95); }
.s067-btn-register { background: linear-gradient(135deg, #FF1493, #ff5fa2); color: #fff; box-shadow: 0 2px 8px rgba(255,20,147,.4); }
.s067-btn-login { background: transparent; color: var(--s067-soft); border: 1px solid var(--s067-soft); }
.s067-menu-btn {
  background: transparent; border: none; color: var(--s067-soft);
  font-size: 1.8rem; cursor: pointer; padding: 0.4rem 0.6rem;
}

/* ---------- Mobile menu ---------- */
.s067-mobile-menu {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  background: #243443; border-top: 1px solid rgba(255,255,255,0.08);
}
.s067-mobile-menu.s067-menu-open { max-height: 480px; }
.s067-mobile-menu ul { list-style: none; padding: 0.4rem 1rem; }
.s067-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.s067-mobile-menu li:last-child { border-bottom: none; }
.s067-mobile-menu a {
  display: block; padding: 0.9rem 0.4rem; color: var(--s067-text-dim); font-size: 1.3rem;
}
.s067-mobile-menu a:hover { color: var(--s067-primary); }

/* ---------- Layout ---------- */
.s067-wrapper { padding: 0 1rem; }
main { padding-top: 64px; }
@media (max-width: 768px) { main { padding-bottom: 80px; } }

.s067-section { padding: 1.6rem 0; }
.s067-section-title {
  font-size: 1.8rem; font-weight: 700; margin-bottom: 0.8rem;
  color: var(--s067-soft); border-left: 4px solid var(--s067-primary);
  padding-left: 0.8rem;
}
.s067-section-title h1, .s067-section-title h2 { font-size: inherit; color: inherit; }

/* ---------- Carousel ---------- */
.s067-carousel { position: relative; margin: 1rem 0; border-radius: 12px; overflow: hidden; }
.s067-slide { position: relative; display: none; cursor: pointer; }
.s067-slide img { width: 100%; height: 180px; object-fit: cover; }
.s067-slide-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 1.2rem 1rem 0.8rem; color: #fff; font-weight: 700; font-size: 1.4rem;
}
.s067-dots { text-align: center; margin-top: 0.5rem; }
.s067-dot {
  display: inline-block; width: 8px; height: 8px; margin: 0 3px;
  background: rgba(255,255,255,0.4); border-radius: 50%; cursor: pointer;
}
.s067-dot.s067-dot-active { background: var(--s067-primary); }

/* ---------- Category tabs ---------- */
.s067-cat-tabs {
  display: flex; gap: 0.4rem; overflow-x: auto; padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
}
.s067-cat-tab {
  flex: 0 0 auto; padding: 0.4rem 1rem; border-radius: 16px;
  background: var(--s067-card); color: var(--s067-text-dim); font-size: 1.2rem;
  border: 1px solid rgba(255,255,255,0.1); cursor: pointer; white-space: nowrap;
}
.s067-cat-tab.s067-cat-active { background: var(--s067-primary); color: #fff; }

/* ---------- Game grid ---------- */
.s067-game-group { margin: 1.2rem 0; }
.s067-game-group-title { font-size: 1.5rem; color: var(--s067-soft); margin: 1rem 0 0.6rem; font-weight: 700; }
.s067-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem;
}
.s067-game-card { text-align: center; cursor: pointer; transition: transform .15s; }
.s067-game-card:active { transform: scale(0.94); }
.s067-game-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px;
  border: 1px solid rgba(255,20,147,0.3);
}
.s067-game-card .s067-game-name {
  font-size: 1.1rem; color: var(--s067-text-dim); margin-top: 0.3rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ---------- Cards / modules ---------- */
.s067-card {
  background: var(--s067-card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 1.2rem; margin: 1rem 0;
}
.s067-card h3 { color: var(--s067-soft); font-size: 1.5rem; margin-bottom: 0.6rem; }
.s067-card p { color: var(--s067-text-dim); font-size: 1.25rem; line-height: 1.7rem; }
.s067-card p a { color: var(--s067-primary); font-weight: 700; }

.s067-promo-text { color: var(--s067-primary); font-weight: 700; cursor: pointer; }
.s067-promo-link { color: var(--s067-primary); font-weight: 700; text-decoration: underline; }

/* ---------- Feature list ---------- */
.s067-feature-list { list-style: none; }
.s067-feature-list li {
  display: flex; gap: 0.6rem; padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08); color: var(--s067-text-dim);
}
.s067-feature-list li i { color: var(--s067-primary); font-size: 1.6rem; margin-top: 0.2rem; }

/* ---------- RTP table ---------- */
.s067-rtp-row {
  display: flex; justify-content: space-between; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1.25rem;
}
.s067-rtp-row .s067-rtp-val { color: var(--s067-gold); font-weight: 700; }

/* ---------- Testimonials ---------- */
.s067-testimonial {
  background: var(--s067-card); border-radius: 10px; padding: 1rem;
  margin: 0.6rem 0; border-left: 3px solid var(--s067-primary);
}
.s067-testimonial .s067-t-author { color: var(--s067-soft); font-weight: 700; font-size: 1.2rem; }
.s067-testimonial p { color: var(--s067-text-dim); font-size: 1.2rem; margin-top: 0.3rem; }

/* ---------- Payment chips ---------- */
.s067-pay-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.s067-pay-chip {
  background: var(--s067-card); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.5rem 0.9rem; font-size: 1.2rem; color: var(--s067-text-dim);
  display: flex; align-items: center; gap: 0.4rem;
}

/* ---------- CTA button big ---------- */
.s067-cta {
  display: block; text-align: center; padding: 1rem; margin: 1.2rem 0;
  background: linear-gradient(135deg, #FF1493, #A0522D); color: #fff;
  border-radius: 12px; font-size: 1.5rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 14px rgba(255,20,147,.4); transition: transform .15s;
}
.s067-cta:active { transform: scale(0.97); }

/* ---------- Footer ---------- */
.s067-footer {
  background: #1c2733; padding: 1.4rem 1rem 1.2rem; margin-top: 1.5rem;
  border-top: 2px solid var(--s067-primary);
}
.s067-footer-brand { color: var(--s067-text-dim); font-size: 1.2rem; margin-bottom: 0.8rem; line-height: 1.7rem; }
.s067-footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin: 0.6rem 0; }
.s067-footer-links a { color: var(--s067-soft); font-size: 1.2rem; }
.s067-footer-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0; }
.s067-footer-btns .s067-btn { flex: 0 0 auto; }
.s067-footer-copy { color: rgba(255,255,255,0.4); font-size: 1.1rem; margin-top: 0.6rem; }

/* ---------- Bottom nav ---------- */
.s067-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto; height: 60px;
  background: rgba(28,39,51,0.98); border-top: 2px solid var(--s067-primary);
  display: flex; justify-content: space-around; align-items: center;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
}
.s067-bottomnav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 60px; background: transparent; border: none;
  color: var(--s067-text-dim); font-size: 1rem; cursor: pointer;
  gap: 0.2rem; transition: color .15s, transform .15s;
}
.s067-bottomnav-btn i, .s067-bottomnav-btn span.material-symbols-outlined,
.s067-bottomnav-btn ion-icon { font-size: 22px; }
.s067-bottomnav-btn:active { transform: scale(0.9); }
.s067-bottomnav-btn.s067-nav-active { color: var(--s067-primary); }
.s067-bottomnav-btn.s067-nav-active i { color: var(--s067-primary); }

@media (min-width: 769px) { .s067-bottomnav { display: none; } }

/* ---------- Utility ---------- */
.s067-center { text-align: center; }
.s067-mt1 { margin-top: 1rem; }
.s067-mb1 { margin-bottom: 1rem; }
.s067-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1rem 0; }
