/* ===========================================================
   jilispin.homes - style-7ed9.css
   Mobile-first (max 430px) PH casino UI.
   All custom classes use the gd92- prefix.
   Palette: #7B68EE | #8A2BE2 | #1A1A2E | #40E0D0 | #F0FDFF
   =========================================================== */

:root {
  --gd92-primary: #7B68EE;
  --gd92-accent: #8A2BE2;
  --gd92-bg: #1A1A2E;
  --gd92-bg2: #16162a;
  --gd92-card: #20203c;
  --gd92-cyan: #40E0D0;
  --gd92-text: #F0FDFF;
  --gd92-muted: #a9b0d8;
  --gd92-border: rgba(123,104,238,0.25);
  --gd92-gold: #ffd27a;
  --gd92-radius: 1.4rem;
  --gd92-shadow: 0 0.6rem 1.8rem rgba(0,0,0,0.45);
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #2a2150 0%, var(--gd92-bg) 60%);
  color: var(--gd92-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.gd92-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

main.gd92-main {
  padding-bottom: 9rem; /* clear bottom nav */
}

/* ---------- Header ---------- */
.gd92-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(26,26,46,0.96), rgba(26,26,46,0.86));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gd92-border);
}

.gd92-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  gap: 0.8rem;
}

.gd92-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.gd92-logo img { width: 3rem; height: 3rem; border-radius: 0.7rem; }
.gd92-logo b {
  font-size: 1.9rem;
  background: linear-gradient(90deg, var(--gd92-cyan), var(--gd92-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
}

.gd92-head-actions { display: flex; align-items: center; gap: 0.5rem; }

.gd92-btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 1.2rem;
  padding: 0.85rem 1.3rem;
  font-size: 1.35rem;
  min-height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
}
.gd92-btn:active { transform: scale(0.96); }

.gd92-btn-login {
  background: transparent;
  color: var(--gd92-text);
  border: 1px solid var(--gd92-border);
}
.gd92-btn-register {
  background: linear-gradient(90deg, var(--gd92-primary), var(--gd92-accent));
  color: #fff;
  box-shadow: 0 0.5rem 1.4rem rgba(138,43,226,0.45);
}
.gd92-btn-cyan {
  background: linear-gradient(90deg, var(--gd92-cyan), #18b6a3);
  color: #06241f;
  font-weight: 800;
}
.gd92-btn-ghost {
  background: rgba(64,224,208,0.12);
  color: var(--gd92-cyan);
  border: 1px solid rgba(64,224,208,0.35);
}

.gd92-menu-btn {
  background: transparent;
  border: 1px solid var(--gd92-border);
  color: var(--gd92-text);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Expandable navigation menu */
.gd92-mobile-menu {
  display: none;
  background: var(--gd92-bg2);
  border-bottom: 1px solid var(--gd92-border);
  padding: 0.6rem 1rem 1rem;
}
.gd92-mobile-menu.gd92-menu-open { display: block; }
.gd92-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 0.8rem;
  color: var(--gd92-text);
  border-bottom: 1px dashed rgba(123,104,238,0.18);
  font-size: 1.35rem;
}
.gd92-mobile-menu a:last-child { border-bottom: none; }
.gd92-mobile-menu a i.material-icons,
.gd92-mobile-menu a i.fas { color: var(--gd92-cyan); font-size: 1.8rem; }

/* ---------- Sections ---------- */
.gd92-section {
  padding: 1.8rem 1.2rem;
}
.gd92-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.gd92-section-head h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gd92-text);
}
.gd92-section-head .gd92-more { color: var(--gd92-cyan); font-size: 1.25rem; }

/* ---------- Carousel ---------- */
.gd92-carousel {
  position: relative;
  border-radius: var(--gd92-radius);
  overflow: hidden;
  margin: 1rem 1.2rem 0;
  box-shadow: var(--gd92-shadow);
  height: 17rem;
}
.gd92-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  cursor: pointer;
}
.gd92-slide img { width: 100%; height: 100%; object-fit: cover; }
.gd92-slide-active { opacity: 1; }
.gd92-slide-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: linear-gradient(90deg, rgba(123,104,238,0.92), rgba(138,43,226,0.7));
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.gd92-dots {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.4rem;
}
.gd92-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none; cursor: pointer;
}
.gd92-dot-active { background: var(--gd92-cyan); }

/* ---------- Promo strip ---------- */
.gd92-promo-strip {
  margin: 1rem 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  background: linear-gradient(90deg, rgba(64,224,208,0.18), rgba(123,104,238,0.18));
  border: 1px solid var(--gd92-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.gd92-promo-strip p { font-size: 1.25rem; color: var(--gd92-text); }
.gd92-promo-strip p b { color: var(--gd92-gold); }

/* ---------- Game grids ---------- */
.gd92-cat-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.8rem 0 1rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gd92-text);
}
.gd92-cat-title i { color: var(--gd92-cyan); font-size: 1.9rem; }
.gd92-cat-title span.gd92-tag {
  font-size: 1rem;
  background: rgba(64,224,208,0.18);
  color: var(--gd92-cyan);
  padding: 0.15rem 0.6rem;
  border-radius: 0.8rem;
  margin-left: 0.4rem;
}

.gd92-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.gd92-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  background: var(--gd92-card);
  border: 1px solid var(--gd92-border);
  border-radius: 1.1rem;
  padding: 0.6rem 0.4rem 0.7rem;
  transition: transform .15s ease, border-color .15s;
}
.gd92-game:active { transform: scale(0.96); border-color: var(--gd92-cyan); }
.gd92-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.8rem;
}
.gd92-game span {
  margin-top: 0.45rem;
  font-size: 1.05rem;
  color: var(--gd92-text);
  line-height: 1.2;
  min-height: 2.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Cards / content blocks ---------- */
.gd92-card {
  background: var(--gd92-card);
  border: 1px solid var(--gd92-border);
  border-radius: 1.3rem;
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.gd92-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--gd92-cyan);
}
.gd92-card p { color: var(--gd92-muted); margin-bottom: 0.7rem; font-size: 1.25rem; }
.gd92-card p b { color: var(--gd92-text); }

.gd92-step-list { list-style: none; counter-reset: step; }
.gd92-step-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 3rem;
  border-bottom: 1px dashed rgba(123,104,238,0.18);
  font-size: 1.2rem;
  color: var(--gd92-muted);
}
.gd92-step-list li:last-child { border-bottom: none; }
.gd92-step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0.5rem;
  width: 2.2rem; height: 2.2rem;
  background: linear-gradient(135deg, var(--gd92-primary), var(--gd92-accent));
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 2.2rem;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Inline promo link */
.gd92-link {
  color: var(--gd92-gold);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.gd92-link-block {
  display: block;
  text-align: center;
  padding: 1rem;
  margin-top: 0.6rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, var(--gd92-primary), var(--gd92-accent));
  color: #fff;
  font-weight: 800;
}

/* Feature pills */
.gd92-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.gd92-pill {
  background: var(--gd92-card);
  border: 1px solid var(--gd92-border);
  border-radius: 1rem;
  padding: 0.9rem;
  text-align: center;
}
.gd92-pill i { font-size: 2rem; color: var(--gd92-cyan); }
.gd92-pill b { display: block; margin-top: 0.3rem; font-size: 1.2rem; }
.gd92-pill small { color: var(--gd92-muted); font-size: 1.05rem; }

/* RTP bars */
.gd92-rtp-row { margin-bottom: 0.8rem; }
.gd92-rtp-row .gd92-rtp-top {
  display: flex; justify-content: space-between;
  font-size: 1.2rem; margin-bottom: 0.3rem;
}
.gd92-rtp-bar {
  height: 0.7rem;
  background: rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}
.gd92-rtp-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gd92-cyan), var(--gd92-primary));
}

/* Winners / testimonials */
.gd92-winners {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0.6rem;
}
.gd92-winner {
  background: var(--gd92-card);
  border: 1px solid var(--gd92-border);
  border-radius: 1rem;
  padding: 0.7rem;
  font-size: 1.15rem;
}
.gd92-winner b { color: var(--gd92-gold); display: block; font-size: 1.3rem; }
.gd92-winner small { color: var(--gd92-muted); }

/* Payment logos */
.gd92-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.gd92-pay span {
  background: rgba(64,224,208,0.12);
  color: var(--gd92-cyan);
  padding: 0.5rem 0.9rem;
  border-radius: 0.8rem;
  font-size: 1.15rem;
  font-weight: 600;
  border: 1px solid rgba(64,224,208,0.25);
}

/* FAQ */
.gd92-faq-item {
  background: var(--gd92-card);
  border: 1px solid var(--gd92-border);
  border-radius: 1rem;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.gd92-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--gd92-text);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.gd92-faq-q i { color: var(--gd92-cyan); transition: transform .2s; }
.gd92-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 1rem;
  color: var(--gd92-muted);
  font-size: 1.2rem;
}
.gd92-faq-open .gd92-faq-a { max-height: 40rem; padding: 0 1rem 1rem; }
.gd92-faq-open .gd92-faq-q i { transform: rotate(45deg); }

/* App download CTA */
.gd92-app-cta {
  background: linear-gradient(120deg, rgba(123,104,238,0.25), rgba(64,224,208,0.18));
  border: 1px solid var(--gd92-border);
  border-radius: 1.4rem;
  padding: 1.3rem;
  text-align: center;
}
.gd92-app-cta h3 { color: var(--gd92-cyan); margin-bottom: 0.4rem; font-size: 1.6rem; }
.gd92-app-cta p { color: var(--gd92-muted); margin-bottom: 0.9rem; font-size: 1.2rem; }
.gd92-app-cta .gd92-btn { margin: 0 auto; }

/* ---------- Footer ---------- */
.gd92-footer {
  background: var(--gd92-bg2);
  border-top: 1px solid var(--gd92-border);
  padding: 1.8rem 1.2rem 7rem;
  font-size: 1.2rem;
  color: var(--gd92-muted);
}
.gd92-footer h4 { color: var(--gd92-cyan); margin-bottom: 0.6rem; font-size: 1.3rem; }
.gd92-footer p { margin-bottom: 0.8rem; }
.gd92-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0.6rem 0 1rem;
}
.gd92-footer-links a {
  color: var(--gd92-muted);
  font-size: 1.15rem;
}
.gd92-footer-links a:hover { color: var(--gd92-cyan); }
.gd92-footer-promos {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.6rem 0 1rem;
}
.gd92-footer-promos button {
  flex: 1 1 40%;
  padding: 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid var(--gd92-border);
  background: rgba(123,104,238,0.15);
  color: var(--gd92-text);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}
.gd92-footer-copy {
  text-align: center;
  border-top: 1px dashed var(--gd92-border);
  padding-top: 1rem;
  font-size: 1.1rem;
}

/* ---------- Mobile bottom navigation ---------- */
.gd92-bottomnav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  height: 6.2rem;
  background: linear-gradient(180deg, rgba(26,26,46,0.98), #11111f);
  border-top: 1px solid var(--gd92-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 0.3rem 0.2rem;
  box-shadow: 0 -0.4rem 1.4rem rgba(0,0,0,0.5);
}
.gd92-navbtn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--gd92-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  cursor: pointer;
  min-width: 6rem;
  min-height: 5.6rem;
  border-radius: 1rem;
  position: relative;
  transition: color .15s ease, transform .15s ease;
}
.gd92-navbtn i { font-size: 2.2rem; line-height: 1; }
.gd92-navbtn .material-icons { font-size: 2.4rem; }
.gd92-navbtn span { font-size: 1rem; font-weight: 600; }
.gd92-navbtn:active { transform: scale(0.92); }
.gd92-navbtn-current { color: var(--gd92-cyan); }
.gd92-navbtn-current::after {
  content: "";
  position: absolute;
  top: 0.1rem;
  width: 2.4rem; height: 0.25rem;
  background: var(--gd92-cyan);
  border-radius: 0.2rem;
}
.gd92-navbtn-promo {
  color: var(--gd92-gold);
}
.gd92-nav-badge {
  position: absolute;
  top: 0.4rem; right: 1.2rem;
  background: #ff4d6d;
  color: #fff;
  font-size: 0.85rem;
  min-width: 1.4rem; height: 1.4rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  padding: 0 0.3rem;
}

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .gd92-bottomnav { display: none; }
  main.gd92-main { padding-bottom: 2rem; }
  .gd92-wrapper { max-width: 760px; }
  .gd92-grid { grid-template-columns: repeat(6, 1fr); }
}

/* Helpers */
.gd92-center { text-align: center; }
.gd92-mt { margin-top: 1.2rem; }
.gd92-kw { color: var(--gd92-cyan); font-weight: 700; }
