/* 4999be - Core stylesheet (basefiles) */
/* All custom classes use the s67d- prefix. */

:root {
  --s67d-primary: #00BFFF;
  --s67d-silver: #C0C0C0;
  --s67d-turquoise: #40E0D0;
  --s67d-midturq: #48D1CC;
  --s67d-teal: #0097A7;
  --s67d-bg: #273746;
  --s67d-bg-deep: #1b2733;
  --s67d-text: #f3fbff;
  --s67d-muted: #a9c2d2;
  --s67d-accent: #ffd34d;
  --s67d-radius: 1.2rem;
  --s67d-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.35);
}

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

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

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", system-ui, -apple-system, sans-serif;
  background: linear-gradient(160deg, var(--s67d-bg-deep) 0%, var(--s67d-bg) 100%);
  color: var(--s67d-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ===== Header ===== */
.s67d-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: rgba(39,55,70,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 0.1rem solid rgba(64,224,208,0.25);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  height: 5.6rem;
}

.s67d-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--s67d-primary);
}
.s67d-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.6rem; }

.s67d-header-actions { display: flex; align-items: center; gap: 0.5rem; }

.s67d-btn {
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.3rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 3.6rem;
}
.s67d-btn:active { transform: scale(0.94); }
.s67d-btn-register {
  background: linear-gradient(135deg, var(--s67d-primary), var(--s67d-teal));
  color: #06212b;
  box-shadow: 0 0.3rem 0.8rem rgba(0,191,255,0.4);
}
.s67d-btn-login {
  background: transparent;
  color: var(--s67d-turquoise);
  border: 0.15rem solid var(--s67d-turquoise);
}

.s67d-menu-btn {
  background: transparent;
  border: 0.15rem solid var(--s67d-midturq);
  color: var(--s67d-turquoise);
  width: 3.6rem; height: 3.6rem;
  border-radius: 0.8rem;
  cursor: pointer;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
}
.s67d-menu-active { background: var(--s67d-teal); color: #fff; }

/* ===== Mobile menu (expandable) ===== */
.s67d-mobile-menu {
  position: fixed;
  top: 5.6rem; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: var(--s67d-bg-deep);
  border-bottom: 0.2rem solid var(--s67d-teal);
  padding: 1rem 1.2rem 1.4rem;
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  z-index: 9999;
  max-height: 70vh;
  overflow-y: auto;
}
.s67d-menu-open { transform: translateY(0); }
.s67d-mobile-menu a {
  display: block;
  padding: 1rem;
  border-radius: 0.8rem;
  color: var(--s67d-text);
  font-size: 1.3rem;
  border-bottom: 0.1rem solid rgba(72,209,204,0.15);
}
.s67d-mobile-menu a:active { background: rgba(0,191,255,0.15); }

/* ===== Main wrapper ===== */
.s67d-main {
  padding-top: 5.6rem;
  padding-bottom: 7.5rem;
}
.s67d-container { padding: 0 1.2rem; }

/* ===== Carousel ===== */
.s67d-carousel {
  position: relative;
  margin: 1rem 0;
  border-radius: var(--s67d-radius);
  overflow: hidden;
  box-shadow: var(--s67d-shadow);
}
.s67d-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.s67d-slide-active { display: block; }
.s67d-slide img { width: 100%; height: 18rem; object-fit: cover; }
.s67d-slide-cap {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  background: linear-gradient(transparent, rgba(27,39,51,0.9));
  padding: 1.2rem;
  font-size: 1.3rem;
  font-weight: 600;
}
.s67d-dots {
  position: absolute;
  bottom: 0.6rem; right: 1rem;
  display: flex; gap: 0.4rem;
}
.s67d-dot {
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
}
.s67d-dot-active { background: var(--s67d-accent); }

/* ===== Section headings ===== */
.s67d-section {
  margin: 1.6rem 0;
}
.s67d-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--s67d-primary);
  margin-bottom: 0.8rem;
  padding-left: 0.8rem;
  border-left: 0.4rem solid var(--s67d-turquoise);
}
.s67d-h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--s67d-text);
  margin: 1rem 0;
  line-height: 2.2rem;
}

/* ===== Category chips ===== */
.s67d-catchips {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.6rem 0;
  margin-bottom: 0.6rem;
}
.s67d-catchips a {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: rgba(72,209,204,0.15);
  color: var(--s67d-turquoise);
  font-size: 1.2rem;
}

/* ===== Game grid ===== */
.s67d-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.s67d-card {
  background: rgba(39,55,70,0.7);
  border: 0.1rem solid rgba(72,209,204,0.2);
  border-radius: 0.9rem;
  padding: 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.s67d-card:active { transform: scale(0.95); border-color: var(--s67d-primary); }
.s67d-card img {
  width: 100%; height: 6.4rem;
  object-fit: cover;
  border-radius: 0.6rem;
  margin-bottom: 0.4rem;
}
.s67d-card-name {
  font-size: 1rem;
  color: var(--s67d-text);
  line-height: 1.3rem;
  height: 2.6rem;
  overflow: hidden;
}

/* ===== Info blocks ===== */
.s67d-info {
  background: rgba(27,39,51,0.6);
  border-radius: var(--s67d-radius);
  padding: 1.2rem;
  margin: 1rem 0;
}
.s67d-info p { font-size: 1.2rem; color: var(--s67d-muted); margin-bottom: 0.6rem; }
.s67d-info h3 { font-size: 1.35rem; color: var(--s67d-turquoise); margin-bottom: 0.5rem; }

.s67d-promolink {
  color: var(--s67d-accent);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

/* ===== Feature / step list ===== */
.s67d-list { list-style: none; }
.s67d-list li {
  padding: 0.7rem 0 0.7rem 2.2rem;
  position: relative;
  font-size: 1.2rem;
  border-bottom: 0.1rem solid rgba(72,209,204,0.12);
}
.s67d-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0; top: 0.7rem;
  color: var(--s67d-turquoise);
}

/* ===== RTP compact table ===== */
.s67d-rtp {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.4rem;
  font-size: 1.1rem;
}
.s67d-rtp div {
  padding: 0.6rem;
  background: rgba(72,209,204,0.1);
  border-radius: 0.5rem;
}
.s67d-rtp-head { color: var(--s67d-primary); font-weight: 700; }

/* ===== Testimonial ===== */
.s67d-testi {
  background: rgba(27,39,51,0.6);
  border-left: 0.3rem solid var(--s67d-accent);
  padding: 0.9rem 1rem;
  border-radius: 0.6rem;
  margin-bottom: 0.7rem;
}
.s67d-testi p { font-size: 1.15rem; color: var(--s67d-text); }
.s67d-testi span { color: var(--s67d-silver); font-size: 1rem; }

/* ===== Payment row ===== */
.s67d-payrow {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
}
.s67d-payrow span {
  background: rgba(255,255,255,0.08);
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  font-size: 1.1rem;
  color: var(--s67d-silver);
}

/* ===== CTA banner ===== */
.s67d-cta {
  background: linear-gradient(135deg, var(--s67d-teal), var(--s67d-primary));
  color: #06212b;
  border-radius: var(--s67d-radius);
  padding: 1.4rem;
  text-align: center;
  margin: 1.2rem 0;
  cursor: pointer;
}
.s67d-cta h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.s67d-cta p { font-size: 1.15rem; }

/* ===== Footer ===== */
.s67d-footer {
  background: var(--s67d-bg-deep);
  border-top: 0.15rem solid var(--s67d-teal);
  padding: 1.4rem 1.2rem 2rem;
  margin-top: 1.4rem;
}
.s67d-footer-brand { font-size: 1.15rem; color: var(--s67d-muted); margin-bottom: 0.8rem; }
.s67d-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  margin-bottom: 0.8rem;
}
.s67d-footer-links a { font-size: 1.1rem; color: var(--s67d-turquoise); }
.s67d-footer-copy { font-size: 1rem; color: var(--s67d-silver); }

/* ===== Bottom navigation ===== */
.s67d-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 6rem;
  background: rgba(27,39,51,0.98);
  border-top: 0.12rem solid var(--s67d-teal);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -0.3rem 1rem rgba(0,0,0,0.3);
}
.s67d-bottomnav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--s67d-muted);
  font-size: 1rem;
  cursor: pointer;
  gap: 0.2rem;
  transition: color 0.2s ease, transform 0.15s ease;
}
.s67d-bottomnav-btn:active { transform: scale(0.9); }
.s67d-bottomnav-btn .material-icons,
.s67d-bottomnav-btn ion-icon,
.s67d-bottomnav-btn i { font-size: 2.2rem; }
.s67d-bottomnav-active { color: var(--s67d-accent); }
.s67d-bottomnav-active .material-icons,
.s67d-bottomnav-active ion-icon,
.s67d-bottomnav-active i { color: var(--s67d-accent); }

/* ===== Desktop: hide bottom nav, widen layout ===== */
@media (min-width: 769px) {
  .s67d-bottomnav { display: none; }
  body { max-width: 768px; }
}
@media (max-width: 768px) {
  .s67d-main { padding-bottom: 7.5rem; }
}
