/* ============================================================
   vipta.homes - style-9219.css
   All custom classes use the s921- prefix.
   Palette: #FF1493 / #FF91A4 / #80CBC4 / #C9C9FF / #3A3A3A / #EEEEEE
   Mobile-first. Max content width 430px.
   ============================================================ */

:root {
  --s921-primary: #FF1493;
  --s921-pink: #FF91A4;
  --s921-teal: #80CBC4;
  --s921-lavender: #C9C9FF;
  --s921-dark: #3A3A3A;
  --s921-darker: #2a2a2a;
  --s921-light: #EEEEEE;
  --s921-white: #ffffff;
  --s921-bg: #1f1419;
  --s921-card: #2b1f25;
  --s921-radius: 14px;
  --s921-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

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

html {
  font-size: 62.5%; /* 1rem = 10px per project standard */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Roboto, sans-serif;
  background: var(--s921-bg);
  color: var(--s921-light);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Layout containers ---------- */
.s921-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}
.s921-container {
  padding: 0 1.2rem;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.s921-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--s921-primary), #d10e7a);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.s921-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  min-height: 52px;
}
.s921-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--s921-white);
  font-weight: 700;
  font-size: 1.7rem;
}
.s921-brand img { width: 28px; height: 28px; border-radius: 6px; }
.s921-brand span { letter-spacing: 0.5px; }
.s921-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.s921-icon-btn {
  background: rgba(255, 255, 255, 0.16);
  border: none;
  color: var(--s921-white);
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.8rem;
}

/* ---------- Buttons ---------- */
.s921-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 38px;
  line-height: 1;
}
.s921-btn:active { transform: scale(0.96); }
.s921-btn-login {
  background: rgba(255, 255, 255, 0.18);
  color: var(--s921-white);
}
.s921-btn-register {
  background: var(--s921-teal);
  color: #143f3a;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}
.s921-btn-cta {
  background: linear-gradient(135deg, var(--s921-primary), var(--s921-pink));
  color: var(--s921-white);
  padding: 0.9rem 2rem;
  font-size: 1.55rem;
  box-shadow: 0 6px 16px rgba(255, 20, 147, 0.35);
}
.s921-btn-ghost {
  background: transparent;
  color: var(--s921-teal);
  border: 1px solid var(--s921-teal);
}

/* ---------- Mobile menu panel ---------- */
.s921-mobile-menu {
  position: fixed;
  top: 52px; right: 0;
  width: 78%;
  max-width: 320px;
  background: var(--s921-card);
  z-index: 9999;
  padding: 1rem;
  transform: translateX(110%);
  transition: transform 0.25s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.45);
  border-radius: 0 0 0 16px;
}
.s921-menu-open { transform: translateX(0); }
.s921-mobile-menu a {
  display: block;
  padding: 0.85rem 0.6rem;
  color: var(--s921-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 1.45rem;
}
.s921-mobile-menu a:active { background: rgba(255, 20, 147, 0.15); }
.s921-menu-title {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--s921-pink);
  letter-spacing: 1px;
  padding: 0.4rem 0.6rem 0.7rem;
  font-weight: 700;
}

/* ---------- Page spacer (under fixed header) ---------- */
.s921-main { padding-top: 60px; padding-bottom: 90px; }
@media (max-width: 768px) {
  .s921-main { padding-bottom: 90px; }
}

/* ---------- Hero carousel ---------- */
.s921-hero {
  position: relative;
  margin: 1rem 0;
  border-radius: var(--s921-radius);
  overflow: hidden;
  box-shadow: var(--s921-shadow);
}
.s921-slide {
  display: none;
  position: relative;
}
.s921-slide-active { display: block; }
.s921-slide img { width: 100%; height: 180px; object-fit: cover; }
.s921-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--s921-white);
  font-size: 1.4rem;
  font-weight: 600;
}
.s921-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
}
.s921-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none; cursor: pointer;
}
.s921-dot-active { background: var(--s921-primary); }

/* ---------- Sections ---------- */
.s921-section { margin: 1.6rem 0; }
.s921-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}
.s921-section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--s921-white);
  display: flex; align-items: center; gap: 0.5rem;
}
.s921-section-title i { color: var(--s921-pink); }
.s921-section-more { font-size: 1.3rem; color: var(--s921-teal); }

/* ---------- Category label ---------- */
.s921-cat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--s921-primary), var(--s921-pink));
  color: var(--s921-white);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1.2rem 0 0.8rem;
}

/* ---------- Game grid ---------- */
.s921-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.s921-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--s921-card);
  border-radius: 12px;
  padding: 0.5rem 0.3rem 0.6rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}
.s921-game:active {
  transform: scale(0.96);
  box-shadow: 0 4px 14px rgba(255, 20, 147, 0.3);
}
.s921-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.4rem;
}
.s921-game-name {
  font-size: 1.2rem;
  color: var(--s921-light);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

/* ---------- Cards / generic ---------- */
.s921-card {
  background: var(--s921-card);
  border-radius: var(--s921-radius);
  padding: 1.2rem;
  box-shadow: var(--s921-shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.s921-card h3 {
  color: var(--s921-pink);
  font-size: 1.55rem;
  margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.s921-card p { color: var(--s921-light); font-size: 1.4rem; line-height: 1.55; }
.s921-card + .s921-card { margin-top: 1rem; }

/* ---------- Feature / feature list ---------- */
.s921-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.s921-feature {
  background: var(--s921-card);
  border-radius: 12px;
  padding: 1rem 0.8rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.s921-feature i {
  font-size: 2.4rem;
  color: var(--s921-teal);
  margin-bottom: 0.4rem;
  display: inline-block;
}
.s921-feature-title {
  color: var(--s921-white);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}
.s921-feature-desc { font-size: 1.2rem; color: var(--s921-light); line-height: 1.4; }

/* ---------- RTP stat row ---------- */
.s921-rtp-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.s921-rtp {
  background: linear-gradient(135deg, #2b1f25, #3a2530);
  border-radius: 12px;
  padding: 0.9rem 0.4rem;
  text-align: center;
  border: 1px solid rgba(255, 20, 147, 0.18);
}
.s921-rtp-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--s921-pink);
  line-height: 1.1;
}
.s921-rtp-label { font-size: 1.15rem; color: var(--s921-light); margin-top: 0.2rem; }

/* ---------- Testimonial ---------- */
.s921-testi {
  background: var(--s921-card);
  border-left: 4px solid var(--s921-teal);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
}
.s921-testi p { font-size: 1.35rem; color: var(--s921-light); margin-bottom: 0.4rem; }
.s921-testi-meta { font-size: 1.2rem; color: var(--s921-pink); font-weight: 600; }

/* ---------- Winners list ---------- */
.s921-winner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.3rem;
}
.s921-winner:last-child { border-bottom: none; }
.s921-winner-name { color: var(--s921-light); }
.s921-winner-amount { color: var(--s921-teal); font-weight: 700; }

/* ---------- Payment pills ---------- */
.s921-pay {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.s921-pay span {
  background: var(--s921-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 1.25rem;
  color: var(--s921-light);
  display: inline-flex; align-items: center; gap: 0.3rem;
}

/* ---------- App download CTA ---------- */
.s921-app-cta {
  background: linear-gradient(135deg, #3a1d2e, #5a2a44);
  border-radius: var(--s921-radius);
  padding: 1.2rem;
  display: flex; align-items: center; gap: 1rem;
  border: 1px solid rgba(255, 20, 147, 0.25);
}
.s921-app-cta .s921-app-icon {
  font-size: 3rem; color: var(--s921-pink);
}
.s921-app-cta-text { flex: 1; }
.s921-app-cta-text h3 { color: var(--s921-white); font-size: 1.5rem; margin-bottom: 0.2rem; }
.s921-app-cta-text p { font-size: 1.25rem; color: var(--s921-light); }

/* ---------- Inline promo links ---------- */
.s921-promo-link {
  color: var(--s921-pink);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.s921-promo-link:hover { color: var(--s921-teal); }

/* ---------- FAQ ---------- */
.s921-faq { margin-bottom: 0.7rem; }
.s921-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--s921-white);
  padding: 0.7rem 0;
  font-size: 1.4rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.s921-faq summary::-webkit-details-marker { display: none; }
.s921-faq summary::after { content: "+"; color: var(--s921-pink); font-size: 1.6rem; }
.s921-faq[open] summary::after { content: "−"; }
.s921-faq-body {
  padding: 0.4rem 0 0.8rem;
  color: var(--s921-light);
  font-size: 1.35rem;
  line-height: 1.55;
}

/* ---------- Footer ---------- */
.s921-footer {
  background: var(--s921-darker);
  padding: 1.6rem 0 2rem;
  margin-top: 1.5rem;
  border-top: 3px solid var(--s921-primary);
}
.s921-footer-brand {
  color: var(--s921-light);
  font-size: 1.3rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.s921-footer-promos {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1rem;
}
.s921-footer-promos .s921-btn { font-size: 1.3rem; padding: 0.5rem 1rem; }
.s921-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  margin-bottom: 0.8rem;
}
.s921-footer-links a {
  color: var(--s921-teal);
  font-size: 1.25rem;
  text-decoration: underline;
}
.s921-copy {
  color: #9a8a92;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0.6rem;
}

/* ---------- Bottom nav ---------- */
.s921-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: var(--s921-darker);
  border-top: 2px solid var(--s921-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.4);
}
.s921-navbtn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--s921-light);
  font-size: 1.1rem;
  gap: 2px;
  cursor: pointer;
  min-width: 60px;
  min-height: 60px;
  transition: color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
  padding: 4px 2px;
}
.s921-navbtn .material-icons,
.s921-navbtn i,
.s921-navbtn ion-icon,
.s921-navbtn .bi {
  font-size: 24px;
}
.s921-navbtn:active { transform: scale(0.92); }
.s921-navbtn-active { color: var(--s921-pink); }
.s921-navbtn-promo {
  color: var(--s921-pink);
  font-weight: 700;
}
.s921-nav-center {
  position: relative;
  top: -16px;
}
.s921-nav-center .s921-navbtn-inner {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--s921-primary), var(--s921-pink));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.5);
  color: #fff;
  font-size: 2.2rem;
}

/* ---------- Desktop rules ---------- */
@media (min-width: 769px) {
  .s921-bottom-nav { display: none; }
  .s921-main { padding-bottom: 30px; }
  .s921-mobile-menu { display: none; }
}

/* ---------- Utility ---------- */
.s921-text-center { text-align: center; }
.s921-mt-1 { margin-top: 0.6rem; }
.s921-mt-2 { margin-top: 1rem; }
.s921-pink { color: var(--s921-pink); }
.s921-teal { color: var(--s921-teal); }
.s921-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.2rem 0;
  border: none;
}
