/* ============================================================
 * 66b nss - design-c7c1.css
 * Mobile-first casino/gaming stylesheet.
 * All custom classes use the `v129-` prefix.
 * Palette: #FF91A4 (rose) | #9AFF9A (mint) | #ADFF2F (lime)
 *          #FFFACD (cream) | #0E1621 (deep ink)
 * Comments in English.
 * ============================================================ */

:root {
  --v129-primary: #FF91A4;
  --v129-secondary: #9AFF9A;
  --v129-accent: #ADFF2F;
  --v129-cream: #FFFACD;
  --v129-bg: #0E1621;
  --v129-bg-2: #152238;
  --v129-bg-3: #1d2c47;
  --v129-text: #f3f6ff;
  --v129-muted: #9fb0cf;
  --v129-danger: #ff5d73;
  --v129-gold: #ffd76b;
  --v129-radius: 14px;
  --v129-shadow: 0 6px 22px rgba(0,0,0,.35);
  --v129-header-h: 60px;
  --v129-bnav-h: 62px;
  --v129-gradient: linear-gradient(135deg, #FF91A4 0%, #ADFF2F 100%);
  --v129-gradient-2: linear-gradient(135deg, #9AFF9A 0%, #FFFACD 100%);
}

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

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Be Vietnam Pro", Roboto, system-ui, -apple-system, sans-serif;
  background: var(--v129-bg);
  color: var(--v129-text);
  font-size: 1.5rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--v129-secondary); text-decoration: none; }
ul { list-style: none; }

.v129-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
}

.v129-wrapper { padding: 14px 12px; }

/* Generic grid utility (info tiles, promo blocks) */
.v129-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.v129-grid.v129-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (min-width: 769px) {
  .v129-grid { grid-template-columns: repeat(4, 1fr); }
  .v129-grid.v129-grid-3 { grid-template-columns: repeat(6, 1fr); }
}

/* ============== Header ============== */
.v129-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--v129-header-h);
  background: linear-gradient(90deg, rgba(14,22,33,.96), rgba(29,44,71,.96));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(173,255,47,.18);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.v129-header-inner {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.v129-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--v129-text);
  letter-spacing: .3px;
}
.v129-logo img { width: 30px; height: 30px; border-radius: 8px; }
.v129-logo span { background: var(--v129-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

.v129-spacer { flex: 1; }

.v129-icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(173,255,47,.2);
  border-radius: 10px;
  color: var(--v129-text);
  cursor: pointer;
  font-size: 18px;
}
.v129-icon-btn:active { transform: scale(.92); }

.v129-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.35rem;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}
.v129-btn:active { transform: scale(.94); }
.v129-btn-login {
  background: rgba(255,255,255,.08);
  color: var(--v129-text);
  border: 1px solid rgba(154,255,154,.5);
}
.v129-btn-register {
  background: var(--v129-gradient);
  color: #0E1621;
  box-shadow: 0 4px 14px rgba(255,145,164,.35);
}

/* ============== Mobile Menu ============== */
.v129-mobile-menu {
  position: fixed;
  top: var(--v129-header-h);
  left: 0; right: 0;
  background: rgba(14,22,33,.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(173,255,47,.18);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  z-index: 9999;
}
.v129-mobile-menu.v129-menu-open { max-height: 80vh; overflow-y: auto; }
.v129-mobile-menu ul { padding: 8px 14px 16px; }
.v129-mobile-menu li { padding: 12px 6px; border-bottom: 1px solid rgba(255,255,255,.06); }
.v129-mobile-menu a {
  display: flex; align-items: center; gap: 10px;
  color: var(--v129-text); font-size: 1.45rem; font-weight: 600;
}
.v129-mobile-menu a i { color: var(--v129-primary); width: 22px; text-align: center; }

/* ============== Main ============== */
main { padding-top: var(--v129-header-h); }
@media (max-width: 768px) {
  main { padding-bottom: calc(var(--v129-bnav-h) + 18px); }
}

.v129-section { padding: 22px 0; }
.v129-section-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.v129-section-head h2 {
  font-size: 1.85rem; font-weight: 800; color: var(--v129-text);
  flex: 1;
}
.v129-section-head h2 em {
  font-style: normal; color: var(--v129-primary);
}
.v129-section-head .material-icons,
.v129-section-head .bi { color: var(--v129-accent); font-size: 22px; }

/* ============== Hero / Carousel ============== */
.v129-hero { padding: 14px 0 6px; }
.v129-carousel {
  position: relative;
  border-radius: var(--v129-radius);
  overflow: hidden;
  box-shadow: var(--v129-shadow);
}
.v129-carousel-track { position: relative; height: 190px; }
.v129-carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  cursor: pointer;
}
.v129-carousel-slide.v129-active { opacity: 1; }
.v129-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.v129-carousel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,22,33,.05) 30%, rgba(14,22,33,.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px;
}
.v129-carousel-overlay h3 {
  font-size: 1.7rem; font-weight: 800; color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.v129-carousel-overlay p { color: var(--v129-cream); font-size: 1.25rem; }
.v129-carousel-dots {
  position: absolute; bottom: 8px; right: 12px;
  display: flex; gap: 6px;
}
.v129-carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
}
.v129-carousel-dot.v129-active { background: var(--v129-accent); width: 18px; border-radius: 4px; }

/* ============== CTA strip ============== */
.v129-cta-strip {
  display: flex; gap: 8px; padding: 12px 0;
}
.v129-cta-strip .v129-btn { flex: 1; justify-content: center; padding: 11px 10px; font-size: 1.4rem; }

/* ============== Game grid ============== */
.v129-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (min-width: 430px) {
  .v129-game-grid { grid-template-columns: repeat(4, 1fr); }
}
.v129-game-card {
  background: var(--v129-bg-2);
  border: 1px solid rgba(173,255,47,.12);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s ease, border-color .2s ease;
  display: block;
}
.v129-game-card:active { transform: scale(.95); border-color: var(--v129-primary); }
.v129-game-thumb {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, #1d2c47, #152238);
  position: relative;
}
.v129-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.v129-game-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4) 100%);
}
.v129-game-name {
  padding: 6px 6px 8px;
  font-size: 1.15rem; font-weight: 600;
  color: var(--v129-text);
  text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v129-game-tag {
  position: absolute; top: 6px; left: 6px;
  background: var(--v129-gradient);
  color: #0E1621; font-size: 1rem; font-weight: 700;
  padding: 2px 6px; border-radius: 6px;
  z-index: 2;
}

/* ============== Category section variants ============== */
.v129-cat-section { margin-top: 4px; }
.v129-cat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(173,255,47,.12);
  color: var(--v129-accent);
  font-size: 1.2rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 10px;
}

/* ============== Info / feature blocks ============== */
.v129-card {
  background: var(--v129-bg-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--v129-radius);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--v129-shadow);
}
.v129-card h3 { font-size: 1.55rem; color: var(--v129-primary); margin-bottom: 8px; font-weight: 800; }
.v129-card p { color: var(--v129-muted); font-size: 1.35rem; margin-bottom: 8px; }
.v129-card a { color: var(--v129-secondary); font-weight: 700; }

.v129-feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.v129-feature-item {
  background: var(--v129-bg-2);
  border: 1px solid rgba(173,255,47,.12);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.v129-feature-item .icon-wrap {
  width: 42px; height: 42px; margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--v129-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #0E1621;
}
.v129-feature-item h4 { font-size: 1.35rem; color: var(--v129-text); margin-bottom: 4px; font-weight: 700; }
.v129-feature-item p { font-size: 1.2rem; color: var(--v129-muted); }

/* ============== RTP / stats ============== */
.v129-rtp-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.v129-rtp-item {
  background: var(--v129-bg-2);
  border-radius: 12px;
  padding: 12px;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.06);
}
.v129-rtp-bar {
  flex: 1;
}
.v129-rtp-bar .label { font-size: 1.2rem; color: var(--v129-muted); display: flex; justify-content: space-between; }
.v129-rtp-bar .value { color: var(--v129-accent); font-weight: 800; }
.v129-rtp-track {
  margin-top: 5px; height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 3px; overflow: hidden;
}
.v129-rip-fill {
  height: 100%;
  background: var(--v129-gradient);
}

/* ============== Testimonials ============== */
.v129-testimonial {
  background: var(--v129-bg-2);
  border-left: 3px solid var(--v129-primary);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.v129-testimonial p { font-size: 1.3rem; color: var(--v129-text); font-style: italic; margin-bottom: 6px; }
.v129-testimonial .who { font-size: 1.15rem; color: var(--v129-secondary); font-weight: 700; }
.v129-stars { color: var(--v129-gold); font-size: 1.2rem; }

/* ============== Winners ============== */
.v129-winner-list { display: flex; flex-direction: column; gap: 8px; }
.v129-winner-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--v129-bg-2); border-radius: 10px; padding: 8px 12px;
  font-size: 1.25rem;
}
.v129-winner-row .avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--v129-gradient-2); color: #0E1621;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.v129-winner-row .amt { margin-left: auto; color: var(--v129-gold); font-weight: 800; }

/* ============== Payment ============== */
.v129-pay-row { display: flex; flex-wrap: wrap; gap: 8px; }
.v129-pay-chip {
  background: var(--v129-bg-2); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 8px 12px;
  font-size: 1.2rem; font-weight: 700; color: var(--v129-text);
  display: inline-flex; align-items: center; gap: 6px;
}
.v129-pay-chip i { color: var(--v129-accent); }

/* ============== FAQ ============== */
.v129-faq-item {
  background: var(--v129-bg-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.v129-faq-q {
  padding: 12px 14px;
  font-weight: 700; font-size: 1.35rem; color: var(--v129-text);
  cursor: pointer; display: flex; gap: 8px; align-items: center;
}
.v129-faq-q::before { content: "Q"; color: var(--v129-primary); font-weight: 900; }
.v129-faq-a { padding: 0 14px 12px; color: var(--v129-muted); font-size: 1.28rem; }
.v129-faq-a::before { content: "A "; color: var(--v129-accent); font-weight: 900; }

/* ============== Footer ============== */
.v129-footer {
  background: var(--v129-bg-2);
  border-top: 1px solid rgba(173,255,47,.18);
  padding: 22px 12px 18px;
  margin-top: 16px;
}
.v129-footer-brand {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.v129-footer-brand img { width: 28px; height: 28px; border-radius: 6px; }
.v129-footer-brand strong { font-size: 1.5rem; color: var(--v129-text); }
.v129-footer p { color: var(--v129-muted); font-size: 1.2rem; margin-bottom: 12px; }
.v129-footer-links {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px;
}
.v129-footer-links a {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--v129-text);
  padding: 5px 10px; border-radius: 8px; font-size: 1.15rem;
}
.v129-footer-links a:hover { border-color: var(--v129-primary); color: var(--v129-primary); }
.v129-footer-copy {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 10px; margin-top: 8px;
  font-size: 1.1rem; color: var(--v129-muted); text-align: center;
}

/* ============== Bottom nav ============== */
.v129-bnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--v129-bnav-h);
  background: linear-gradient(90deg, rgba(14,22,33,.98), rgba(29,44,71,.98));
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(173,255,47,.2);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000;
}
.v129-bnav-btn {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  color: var(--v129-muted);
  background: transparent; border: none; cursor: pointer;
  text-decoration: none;
  font-size: 1rem; font-weight: 600;
  padding: 4px 2px;
  position: relative;
  transition: color .2s ease, transform .15s ease;
}
.v129-bnav-btn .icon { font-size: 20px; line-height: 1; }
.v129-bnav-btn .label { font-size: 1rem; line-height: 1; }
.v129-bnav-btn:active { transform: scale(.9); }
.v129-bnav-btn.v129-bnav-promo {
  color: var(--v129-primary);
}
.v129-bnav-btn.v129-bnav-promo .icon { color: var(--v129-gold); }
.v129-bnav-btn.v129-bnav-active { color: var(--v129-accent); }
.v129-bnav-btn.v129-bnav-active::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 3px; border-radius: 0 0 4px 4px;
  background: var(--v129-accent);
}
.v129-bnav-badge {
  position: absolute; top: 4px; right: 18px;
  background: var(--v129-danger); color: #fff;
  font-size: .9rem; font-weight: 800;
  min-width: 14px; height: 14px; padding: 0 3px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}

/* ============== Scroll-to-top ============== */
#v129TopBtn {
  position: fixed; right: 14px; bottom: calc(var(--v129-bnav-h) + 14px);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--v129-gradient); color: #0E1621;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .15s ease;
  z-index: 999;
}
#v129TopBtn.v129-show { opacity: 1; pointer-events: auto; }
#v129TopBtn:active { transform: scale(.9); }

/* ============== Promo inline text link ============== */
.v129-promo-link {
  color: var(--v129-primary);
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--v129-accent);
}
.v129-promo-btn-lg {
  display: block; width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--v129-gradient);
  color: #0E1621;
  font-size: 1.55rem; font-weight: 800;
  border-radius: 12px; border: none; cursor: pointer;
  margin: 14px 0;
  box-shadow: 0 6px 18px rgba(255,145,164,.4);
}
.v129-promo-btn-lg:active { transform: scale(.97); }

/* ============== Steps ============== */
.v129-step {
  display: flex; gap: 12px; margin-bottom: 14px;
}
.v129-step .num {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--v129-gradient); color: #0E1621;
  font-weight: 900; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.v129-step .txt { flex: 1; }
.v129-step .txt h4 { font-size: 1.4rem; color: var(--v129-text); margin-bottom: 3px; }
.v129-step .txt p { font-size: 1.25rem; color: var(--v129-muted); }

/* ============== Trust badges ============== */
.v129-trust-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.v129-trust-chip {
  background: rgba(154,255,154,.1);
  border: 1px solid rgba(154,255,154,.3);
  color: var(--v129-secondary);
  padding: 5px 10px; border-radius: 999px;
  font-size: 1.15rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
}

/* ============== Desktop ============== */
@media (min-width: 769px) {
  .v129-bnav { display: none; }
  .v129-container { max-width: 760px; }
  .v129-game-grid { grid-template-columns: repeat(6, 1fr); }
  .v129-feature-row { grid-template-columns: repeat(4, 1fr); }
  .v129-rtp-row { grid-template-columns: repeat(4, 1fr); }
  #v129TopBtn { display: none; }
}
