/* ===========================================================
   Bingo Plus Legit - theme-be74.css
   All custom classes use prefix: v466-
   Palette: #00CED1 / #0097A7 / #0F0F23 / #00695C
   Mobile-first, max-width 430px.
   =========================================================== */

:root {
  --v466-primary: #00CED1;
  --v466-accent: #0097A7;
  --v466-deep: #00695C;
  --v466-bg: #0F0F23;
  --v466-bg-alt: #161634;
  --v466-bg-card: #1d1d44;
  --v466-text: #EAFBFB;
  --v466-text-muted: #9FB7C2;
  --v466-gold: #FFD166;
  --v466-border: rgba(0, 206, 209, 0.25);
  --v466-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  --v466-radius: 14px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--v466-bg);
  color: var(--v466-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--v466-primary); text-decoration: none; }
ul { list-style: none; }

/* ====================== Layout ====================== */
.v466-wrapper { width: 100%; max-width: 430px; margin: 0 auto; position: relative; }
.v466-container { padding: 0 1.4rem; width: 100%; }
.v466-section { padding: 2.6rem 0 1rem; }
.v466-section--alt { background: var(--v466-bg-alt); }

/* ====================== Header ====================== */
.v466-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0a0a1f 0%, #0F0F23 60%, #0a1a1a 100%);
  border-bottom: 1px solid var(--v466-border);
  max-width: 430px;
  margin: 0 auto;
  box-shadow: var(--v466-shadow);
}
.v466-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 5.6rem; padding: 0 1.2rem;
}
.v466-logo {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--v466-text); font-weight: 700; font-size: 1.6rem;
}
.v466-logo img { width: 30px; height: 30px; border-radius: 8px; }
.v466-logo span { background: linear-gradient(90deg, var(--v466-primary), var(--v466-gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.v466-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.v466-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  border: none; border-radius: 999px;
  font-weight: 700; font-size: 1.3rem;
  padding: 0.7rem 1.3rem; min-height: 38px;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .2s;
  text-transform: capitalize;
}
.v466-btn:active { transform: scale(0.96); }
.v466-btn--login { background: transparent; color: var(--v466-primary); border: 1px solid var(--v466-primary); }
.v466-btn--login:hover { background: rgba(0,206,209,0.12); }
.v466-btn--register { background: linear-gradient(135deg, var(--v466-primary), var(--v466-accent)); color: #04221f; box-shadow: 0 6px 16px rgba(0,206,209,0.35); }
.v466-btn--register:hover { filter: brightness(1.08); }
.v466-btn--block { width: 100%; padding: 1rem; font-size: 1.5rem; }

.v466-nav-toggle {
  background: transparent; border: 1px solid var(--v466-border);
  color: var(--v466-primary); width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 1.6rem;
}

/* Expandable nav menu */
.v466-nav-menu {
  max-height: 0; overflow: hidden;
  background: var(--v466-bg-alt);
  border-top: 1px solid transparent;
  transition: max-height .32s ease, border-color .2s ease;
}
.v466-nav-menu--open {
  max-height: 460px; border-top-color: var(--v466-border);
}
.v466-nav-menu ul { padding: 0.6rem 1.2rem 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.v466-nav-menu a {
  display: block; padding: 0.8rem 1rem; border-radius: 10px;
  background: rgba(0,206,209,0.07); color: var(--v466-text); font-size: 1.3rem;
  border: 1px solid transparent;
}
.v466-nav-menu a:active { background: rgba(0,206,209,0.18); border-color: var(--v466-border); }

/* ====================== Main ====================== */
main { padding-top: 5.6rem; }
.v466-h1 {
  font-size: 2.2rem; line-height: 2.8rem; font-weight: 800;
  margin: 1.2rem 0 0.8rem; letter-spacing: 0.2px;
}
.v466-lead { color: var(--v466-text-muted); font-size: 1.4rem; margin-bottom: 1rem; }
.v466-h2 {
  font-size: 1.7rem; font-weight: 700; margin: 1.6rem 0 0.8rem;
  display: flex; align-items: center; gap: 0.6rem; color: var(--v466-primary);
}
.v466-h2 i { color: var(--v466-gold); }
.v466-h3 { font-size: 1.45rem; font-weight: 700; margin: 1.1rem 0 0.5rem; color: var(--v466-text); }
.v466-p { margin-bottom: 0.9rem; color: var(--v466-text); }
.v466-p a { font-weight: 700; color: var(--v466-gold); text-decoration: underline; }

/* ====================== Carousel ====================== */
.v466-carousel { position: relative; overflow: hidden; border-radius: var(--v466-radius); margin: 1rem 0; box-shadow: var(--v466-shadow); }
.v466-carousel-track { display: flex; transition: transform .5s ease; }
.v466-carousel-slide { min-width: 100%; position: relative; cursor: pointer; }
.v466-carousel-slide img { width: 100%; height: 180px; object-fit: cover; }
.v466-carousel-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem; background: linear-gradient(to top, rgba(15,15,35,0.92), transparent); font-weight: 700; font-size: 1.3rem; }
.v466-carousel-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; }
.v466-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.45); border: none; cursor: pointer; }
.v466-carousel-dot--active { background: var(--v466-primary); width: 22px; border-radius: 6px; }

/* ====================== Promo banner ====================== */
.v466-promo-banner {
  background: linear-gradient(135deg, var(--v466-deep), var(--v466-accent));
  border-radius: var(--v466-radius); padding: 1.4rem; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin: 1rem 0; box-shadow: var(--v466-shadow);
}
.v466-promo-banner strong { color: var(--v466-gold); }

/* ====================== Games grid ====================== */
.v466-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.v466-card {
  background: var(--v466-bg-card); border: 1px solid var(--v466-border);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.v466-card:active { transform: scale(0.96); box-shadow: 0 6px 18px rgba(0,206,209,0.25); }
.v466-card img { width: 100%; height: 92px; object-fit: cover; background: #0a0a1f; }
.v466-card-name { font-size: 1.15rem; padding: 0.5rem 0.4rem; text-align: center; color: var(--v466-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v466-cat-title { font-size: 1.5rem; font-weight: 700; color: var(--v466-primary); margin: 1.4rem 0 0.8rem; display:flex; align-items:center; gap:0.5rem; }

/* ====================== RTP / data list ====================== */
.v466-rtp-list { display: grid; gap: 0.5rem; }
.v466-rtp-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--v466-bg-card); padding: 0.8rem 1rem; border-radius: 10px; border: 1px solid var(--v466-border); font-size: 1.3rem;
}
.v466-rtp-row span:last-child { color: var(--v466-gold); font-weight: 700; }
.v466-rtp-bar { height: 6px; background: rgba(255,255,255,0.12); border-radius: 6px; overflow: hidden; margin-top: 0.4rem; }
.v466-rtp-bar > i { display:block; height:100%; background: linear-gradient(90deg, var(--v466-primary), var(--v466-gold)); }

/* ====================== Feature cards ====================== */
.v466-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.v466-feature {
  background: var(--v466-bg-card); border: 1px solid var(--v466-border);
  border-radius: 12px; padding: 1rem; text-align: center;
}
.v466-feature i { font-size: 2.2rem; color: var(--v466-primary); margin-bottom: 0.4rem; }
.v466-feature strong { display:block; font-size: 1.3rem; margin-bottom: 0.2rem; }
.v466-feature small { color: var(--v466-text-muted); font-size: 1.1rem; }

/* ====================== Testimonials ====================== */
.v466-testimonial { background: var(--v466-bg-card); border-left: 3px solid var(--v466-primary); border-radius: 10px; padding: 1rem; margin-bottom: 0.8rem; }
.v466-testimonial p { font-style: italic; color: var(--v466-text); margin-bottom: 0.4rem; }
.v466-testimonial cite { color: var(--v466-gold); font-style: normal; font-weight: 700; font-size: 1.2rem; }

/* ====================== Payment / app CTA ====================== */
.v466-pay-row { display:flex; flex-wrap:wrap; gap:0.5rem; }
.v466-pay-row span { background: var(--v466-bg-card); border:1px solid var(--v466-border); border-radius: 8px; padding: 0.5rem 0.9rem; font-size: 1.2rem; }
.v466-app-cta { background: linear-gradient(135deg, var(--v466-deep), var(--v466-accent)); border-radius: var(--v466-radius); padding: 1.4rem; text-align:center; color:#fff; }
.v466-app-cta h3 { color: var(--v466-gold); }
.v466-winner-row { display:flex; align-items:center; justify-content:space-between; background: var(--v466-bg-card); border:1px solid var(--v466-border); border-radius: 10px; padding: 0.7rem 1rem; margin-bottom: 0.5rem; font-size: 1.3rem; }
.v466-winner-row span:last-child { color: var(--v466-gold); font-weight: 700; }

/* ====================== Footer ====================== */
.v466-footer {
  background: #08081a; border-top: 1px solid var(--v466-border);
  padding: 2rem 1.4rem 6rem; margin-top: 2rem; color: var(--v466-text-muted); font-size: 1.25rem;
}
.v466-footer h4 { color: var(--v466-primary); margin-bottom: 0.6rem; font-size: 1.3rem; }
.v466-footer a { color: var(--v466-text-muted); display:block; padding: 0.25rem 0; }
.v466-footer a:hover { color: var(--v466-primary); }
.v466-footer p { margin-bottom: 0.8rem; }
.v466-footer-brand { color: var(--v466-primary); font-weight: 700; }
.v466-footer-promos { display:flex; flex-wrap:wrap; gap:0.5rem; margin: 0.8rem 0; }
.v466-footer-promos .v466-btn { font-size: 1.15rem; padding: 0.5rem 1rem; }
.v466-footer-cols { display:grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.v466-copyright { text-align:center; padding-top: 1rem; border-top: 1px dashed var(--v466-border); color: var(--v466-text-muted); font-size: 1.1rem; }

/* ====================== Bottom nav (mobile) ====================== */
.v466-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto;
  background: linear-gradient(180deg, #0a1a1a, #0F0F23);
  border-top: 1px solid var(--v466-border);
  display: flex; justify-content: space-around; align-items: stretch;
  height: 60px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.4);
}
.v466-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--v466-text-muted);
  font-size: 1rem; gap: 2px; cursor: pointer; transition: color .2s, transform .15s;
  padding: 4px 2px;
}
.v466-bottomnav-btn i, .v466-bottomnav-btn .material-icons, .v466-bottomnav-btn ion-icon { font-size: 22px; }
.v466-bottomnav-btn ion-icon { font-size: 24px; }
.v466-bottomnav-btn:hover { color: var(--v466-primary); }
.v466-bottomnav-btn:active { transform: scale(0.9); }
.v466-bottomnav-btn--active { color: var(--v466-gold); }
.v466-bottomnav-btn--promo { color: var(--v466-primary); }

/* ====================== Desktop: hide bottom nav ====================== */
@media (min-width: 769px) {
  .v466-bottomnav { display: none; }
  body, .v466-wrapper, .v466-header { max-width: 430px; }
}

/* ====================== Small phones ====================== */
@media (max-width: 360px) {
  .v466-grid { grid-template-columns: repeat(2, 1fr); }
  .v466-feature-grid { grid-template-columns: 1fr; }
  .v466-h1 { font-size: 1.9rem; }
}

/* ====================== Mobile content clearance ====================== */
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}
