/* ===========================================================
   Bingo Plus GCash - style.css
   All custom classes use "v196-" prefix.
   Palette: #1B263B (bg) | #FFC0CB | #FFDFBA | #FF8A80 | #CD853F
   Mobile-first, max-width 430px.
   =========================================================== */

:root {
  --v196-bg: #1B263B;
  --v196-bg-alt: #223049;
  --v196-primary: #FF8A80;
  --v196-secondary: #CD853F;
  --v196-pink: #FFC0CB;
  --v196-cream: #FFDFBA;
  --v196-text: #FFF6F0;
  --v196-text-dim: #C8BFA8;
  --v196-accent: #FFB199;
  --v196-radius: 14px;
  --v196-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

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

html { font-size: 62.5%; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--v196-bg);
  color: var(--v196-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Layout ---------- */
.v196-container { width: 100%; padding: 0 1.4rem; }
.v196-wrapper { padding: 1rem 1.4rem; }
.v196-section { padding: 2.4rem 1.4rem; }
.v196-grid { display: grid; gap: 1.2rem; }
.v196-center { text-align: center; }

/* ---------- Header ---------- */
.v196-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, #1B263B 0%, #2a3a55 100%);
  border-bottom: 1px solid rgba(255, 192, 203, 0.25);
  max-width: 430px; margin: 0 auto;
}
.v196-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem; min-height: 54px;
}
.v196-logo { display: flex; align-items: center; gap: 0.6rem; }
.v196-logo img { width: 28px; height: 28px; border-radius: 6px; }
.v196-logo-name {
  font-size: 1.5rem; font-weight: 800; color: var(--v196-pink);
  letter-spacing: 0.3px;
}
.v196-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.v196-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-weight: 700; border-radius: 999px; cursor: pointer; border: none;
  font-size: 1.3rem; padding: 0.7rem 1.2rem; min-height: 38px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.v196-btn:active { transform: scale(0.96); }
.v196-btn-register {
  background: linear-gradient(135deg, var(--v196-primary), var(--v196-secondary));
  color: #1B263B;
}
.v196-btn-login {
  background: transparent; color: var(--v196-text);
  border: 1px solid var(--v196-pink);
}
.v196-burger {
  background: transparent; border: none; color: var(--v196-pink);
  font-size: 2.2rem; cursor: pointer; padding: 0.3rem 0.6rem;
}
.v196-burger.v196-active i::before { content: "\f00d"; }

/* ---------- Mobile drawer ---------- */
.v196-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 9998;
}
.v196-menu-overlay.v196-active { opacity: 1; pointer-events: auto; }
#v196-mobile-menu {
  position: fixed; top: 0; right: -85%; width: 80%; height: 100%;
  background: var(--v196-bg-alt); z-index: 9999;
  transition: right 0.3s ease; padding: 6rem 1.4rem 2rem; overflow-y: auto;
}
#v196-mobile-menu.v196-open { right: 0; }
.v196-mobile-menu h3 {
  font-size: 1.3rem; color: var(--v196-cream); margin: 1.4rem 0 0.6rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.v196-mobile-menu a {
  display: block; padding: 0.85rem 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--v196-text); font-size: 1.4rem;
}

/* ---------- Hero / Carousel ---------- */
.v196-main { padding-top: 64px; padding-bottom: 80px; }
.v196-carousel { position: relative; overflow: hidden; border-radius: var(--v196-radius); }
.v196-slide {
  display: none; position: relative;
}
.v196-slide.v196-active { display: block; }
.v196-slide img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--v196-radius); }
.v196-slide-cap {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: rgba(27,38,59,0.78); padding: 0.8rem 1rem; border-radius: 10px;
}
.v196-slide-cap h2 { font-size: 1.5rem; color: var(--v196-pink); }
.v196-slide-cap p { font-size: 1.2rem; color: var(--v196-text); }
.v196-carousel-nav {
  display: flex; justify-content: center; gap: 0.5rem; padding: 0.6rem 0;
}
.v196-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
}
.v196-dot.v196-active { background: var(--v196-primary); }

/* ---------- Headings ---------- */
.v196-h1 {
  font-size: 2.2rem; font-weight: 800; line-height: 1.3;
  color: var(--v196-pink); margin: 1.6rem 0 0.8rem;
}
.v196-h2 {
  font-size: 1.8rem; font-weight: 700; color: var(--v196-cream);
  margin: 2rem 0 0.8rem; padding-left: 0.8rem;
  border-left: 4px solid var(--v196-primary);
}
.v196-h3 {
  font-size: 1.5rem; font-weight: 700; color: var(--v196-accent); margin: 1.2rem 0 0.5rem;
}
.v196-lead { font-size: 1.4rem; color: var(--v196-text-dim); }

/* ---------- Promo CTA ---------- */
.v196-cta { text-align: center; padding: 2rem 1.4rem; }
.v196-cta-title { font-size: 1.9rem; color: var(--v196-pink); font-weight: 800; }
.v196-cta-sub { font-size: 1.3rem; color: var(--v196-text-dim); margin: 0.6rem 0 1.4rem; }
.v196-btn-lg { font-size: 1.5rem; padding: 1rem 2.2rem; min-height: 48px; }
.v196-link-bold { color: var(--v196-primary); font-weight: 800; }

/* ---------- Game grid ---------- */
.v196-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 2rem 0 1rem;
}
.v196-cat-title {
  font-size: 1.6rem; color: var(--v196-cream); font-weight: 700;
  display: flex; align-items: center; gap: 0.6rem;
}
.v196-cat-title i { color: var(--v196-primary); }
.v196-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.v196-chip {
  background: rgba(255,255,255,0.07); color: var(--v196-text);
  padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 1.2rem; cursor: pointer;
}
.v196-chip.v196-active { background: var(--v196-primary); color: #1B263B; font-weight: 700; }

.v196-games {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
}
.v196-game {
  background: var(--v196-bg-alt); border-radius: 12px; padding: 0.5rem;
  text-align: center; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid rgba(255,192,203,0.12);
}
.v196-game:active { transform: scale(0.95); }
.v196-game img { width: 100%; height: 78px; object-fit: cover; border-radius: 8px; }
.v196-game-name {
  font-size: 1.1rem; color: var(--v196-text); margin-top: 0.4rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---------- Cards ---------- */
.v196-card {
  background: var(--v196-bg-alt); border-radius: var(--v196-radius);
  padding: 1.4rem; box-shadow: var(--v196-shadow); margin-bottom: 1.2rem;
  border: 1px solid rgba(255,192,203,0.1);
}
.v196-card-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem;
}
.v196-mini {
  background: rgba(255,255,255,0.05); border-radius: 10px; padding: 0.9rem;
}
.v196-mini .v196-num { font-size: 1.8rem; color: var(--v196-primary); font-weight: 800; }
.v196-mini .v196-lbl { font-size: 1.1rem; color: var(--v196-text-dim); }

/* ---------- Features / list ---------- */
.v196-feature-list { list-style: none; }
.v196-feature-list li {
  padding: 0.7rem 0 0.7rem 2.2rem; position: relative; font-size: 1.35rem;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.v196-feature-list li::before {
  content: "\f005"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--v196-primary); position: absolute; left: 0; top: 0.7rem;
}

/* ---------- Payment / winners ---------- */
.v196-pay-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.v196-pay {
  background: rgba(255,255,255,0.06); border-radius: 10px; padding: 0.6rem 0.9rem;
  display: flex; align-items: center; gap: 0.4rem; font-size: 1.2rem;
}
.v196-pay i { color: var(--v196-pink); }

.v196-winner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1.25rem;
}
.v196-winner span:last-child { color: var(--v196-primary); font-weight: 800; }

/* ---------- Testimonials ---------- */
.v196-quote {
  background: rgba(255,255,255,0.05); border-left: 3px solid var(--v196-secondary);
  padding: 0.9rem 1rem; border-radius: 8px; margin-bottom: 0.8rem;
}
.v196-quote p { font-size: 1.25rem; color: var(--v196-text); }
.v196-quote small { color: var(--v196-text-dim); }

/* ---------- FAQ ---------- */
.v196-faq-item {
  background: var(--v196-bg-alt); border-radius: 10px; padding: 1rem;
  margin-bottom: 0.7rem;
}
.v196-faq-item h3 { margin-top: 0; }

/* ---------- Footer ---------- */
.v196-footer {
  background: #15203a; padding: 2.2rem 1.4rem; color: var(--v196-text-dim);
}
.v196-footer h3 { color: var(--v196-cream); font-size: 1.4rem; margin-bottom: 0.6rem; }
.v196-footer p { font-size: 1.25rem; margin-bottom: 1rem; line-height: 1.6rem; }
.v196-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; margin: 0.6rem 0 1rem;
}
.v196-footer-links a { color: var(--v196-pink); font-size: 1.2rem; }
.v196-footer-promo {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.6rem 0 1rem;
}
.v196-footer-copy { font-size: 1.1rem; color: var(--v196-text-dim); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 0.8rem; }

/* ---------- Bottom nav (mobile) ---------- */
.v196-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto;
  background: linear-gradient(180deg, #2a3a55, #1B263B);
  border-top: 1px solid rgba(255,192,203,0.25);
  display: flex; justify-content: space-around; align-items: stretch;
  height: 62px;
}
.v196-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: none; color: var(--v196-text-dim);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; cursor: pointer; padding: 0.3rem;
  transition: color 0.2s ease, transform 0.18s ease;
}
.v196-bottomnav-btn .material-icons,
.v196-bottomnav-btn i { font-size: 22px; }
.v196-bottomnav-btn span:last-child { font-size: 11px; }
.v196-bottomnav-btn:active { transform: scale(0.9); }
.v196-bottomnav-btn.v196-current { color: var(--v196-primary); }
.v196-bottomnav-btn.v196-promo { color: var(--v196-pink); }

/* ---------- Utilities ---------- */
.v196-hidden { display: none !important; }
.v196-mt { margin-top: 1.4rem; }
.v196-mb { margin-bottom: 1.4rem; }

/* ---------- Responsive ---------- */
@media (max-width: 430px) {
  .v196-games { grid-template-columns: repeat(3, 1fr); }
  .v196-card-grid { grid-template-columns: repeat(2, 1fr); }
  .v196-h1 { font-size: 2rem; }
}

@media (min-width: 431px) and (max-width: 768px) {
  .v196-games { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 769px) {
  .v196-bottomnav { display: none; }
  .v196-main { padding-bottom: 2rem; }
}
