/* ============================================================
 * 789bingo apk - basefiles theme stylesheet
 * All custom classes use the "v811-" prefix.
 * Palette: #E91E63 | #FF9500 | #FF69B4 | #FFD700 | #2E4057
 * Mobile-first, max container width 430px.
 * ============================================================ */

:root {
  --v811-primary: #E91E63;     /* hot pink */
  --v811-accent: #FF9500;      /* warm orange */
  --v811-pink: #FF69B4;        /* soft pink */
  --v811-gold: #FFD700;        /* gold */
  --v811-deep: #2E4057;        /* deep slate */
  --v811-bg: #1a2433;          /* dark background */
  --v811-bg-2: #21304a;        /* panel background */
  --v811-bg-3: #2b3e5e;        /* card background */
  --v811-text: #f4f7fb;        /* primary text */
  --v811-muted: #b6c4db;       /* secondary text */
  --v811-border: rgba(255, 255, 255, 0.08);
  --v811-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
  --v811-radius: 14px;
  --v811-radius-lg: 22px;
  --v811-max: 430px;
  --v811-header-h: 58px;
  --v811-bottomnav-h: 64px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, "Noto Sans", sans-serif;
  background: var(--v811-bg);
  color: var(--v811-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--v811-gold); text-decoration: none; }
a:hover, a:focus { color: var(--v811-accent); }

/* Layout containers */
.v811-wrapper {
  width: 100%;
  max-width: var(--v811-max);
  margin: 0 auto;
  padding: 0 1.2rem;
}
.v811-container {
  width: 100%;
  max-width: var(--v811-max);
  margin: 0 auto;
  position: relative;
}
main.v811-main {
  padding-top: calc(var(--v811-header-h) + 1rem);
  padding-bottom: calc(var(--v811-bottomnav-h) + 2rem);
}

/* ============== Header ============== */
.v811-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--v811-header-h);
  background: linear-gradient(135deg, var(--v811-deep) 0%, #1c2c44 100%);
  border-bottom: 2px solid var(--v811-primary);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.v811-header-inner {
  max-width: var(--v811-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.v811-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--v811-text);
  flex: 1;
  min-width: 0;
}
.v811-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  border: 1px solid var(--v811-primary);
}
.v811-brand-name {
  font-weight: 700;
  font-size: 1.55rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: linear-gradient(90deg, var(--v811-gold), var(--v811-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v811-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v811-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3.2rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.v811-btn:hover { transform: translateY(-1px); }
.v811-btn:active { transform: scale(0.97); }
.v811-btn-register {
  background: linear-gradient(135deg, var(--v811-accent), var(--v811-gold));
  color: #2a1500;
  box-shadow: 0 4px 14px rgba(255, 149, 0, 0.35);
}
.v811-btn-login {
  background: transparent;
  color: var(--v811-text);
  border: 1px solid var(--v811-pink);
}
.v811-btn-cta {
  background: linear-gradient(135deg, var(--v811-primary), var(--v811-pink));
  color: #fff;
  padding: 0 1.6rem;
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.45);
}
.v811-menu-toggle {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--v811-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--v811-border);
  cursor: pointer;
  font-size: 1.6rem;
}

/* ============== Mobile dropdown menu ============== */
.v811-mobile-menu {
  position: fixed;
  top: var(--v811-header-h);
  right: 0;
  width: 80%;
  max-width: 320px;
  background: var(--v811-bg-2);
  border-left: 1px solid var(--v811-border);
  border-bottom: 1px solid var(--v811-border);
  transform: translateX(110%);
  transition: transform 0.25s ease;
  z-index: 9999;
  padding: 1.2rem;
  border-bottom-left-radius: var(--v811-radius-lg);
  box-shadow: var(--v811-shadow);
}
.v811-mobile-menu.v811-is-open { transform: translateX(0); }
.v811-mobile-menu h3 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  color: var(--v811-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.v811-mobile-menu a {
  display: block;
  padding: 0.9rem 1rem;
  color: var(--v811-text);
  border-radius: 10px;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  border: 1px solid transparent;
}
.v811-mobile-menu a:hover, .v811-mobile-menu a:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--v811-primary);
  color: var(--v811-gold);
}
.v811-mobile-menu .v811-menu-cta {
  background: linear-gradient(135deg, var(--v811-primary), var(--v811-accent));
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-top: 0.6rem;
}

/* ============== Hero / Carousel ============== */
.v811-hero {
  position: relative;
  margin: 0 0 1.4rem;
  border-radius: var(--v811-radius-lg);
  overflow: hidden;
  box-shadow: var(--v811-shadow);
  background: #0d1626;
}
.v811-slide {
  position: relative;
  display: none;
  width: 100%;
  padding-top: 50%;
  overflow: hidden;
}
.v811-slide.v811-active { display: block; }
.v811-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v811-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.72) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  color: #fff;
}
.v811-slide-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 0.3rem;
  color: var(--v811-gold);
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.v811-slide-sub {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
  color: #fff;
  opacity: 0.92;
}
.v811-slide-cta {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--v811-primary), var(--v811-pink));
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.v811-dots {
  position: absolute;
  bottom: 0.8rem;
  right: 1rem;
  display: flex;
  gap: 0.4rem;
}
.v811-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
}
.v811-dot.v811-active { background: var(--v811-gold); transform: scale(1.25); }

/* ============== Sections & titles ============== */
.v811-section {
  margin: 1.6rem 0;
  padding: 1.2rem;
  background: var(--v811-bg-2);
  border-radius: var(--v811-radius);
  border: 1px solid var(--v811-border);
}
.v811-section-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px dashed var(--v811-primary);
  color: var(--v811-text);
}
.v811-section-title i,
.v811-section-title .material-icons,
.v811-section-title .bi {
  color: var(--v811-gold);
  font-size: 2rem;
}
.v811-section p { margin: 0 0 0.9rem; color: var(--v811-muted); }
.v811-h1 {
  font-size: 2.2rem;
  line-height: 1.35;
  margin: 0 0 0.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--v811-gold), var(--v811-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.v811-lead { color: var(--v811-muted); font-size: 1.45rem; margin: 0 0 1.4rem; }
.v811-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 1.1rem;
  background: rgba(255, 149, 0, 0.18);
  color: var(--v811-accent);
  margin-right: 0.3rem;
  font-weight: 600;
}
.v811-link-text {
  color: var(--v811-gold);
  font-weight: 700;
  border-bottom: 1px dashed var(--v811-gold);
}
.v811-link-text:hover { color: var(--v811-accent); border-bottom-color: var(--v811-accent); }

/* ============== Game grid ============== */
.v811-category { margin: 1.6rem 0; }
.v811-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.v811-category-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--v811-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v811-category-title .badge {
  background: var(--v811-primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}
.v811-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.v811-game-card {
  display: block;
  background: var(--v811-bg-3);
  border-radius: var(--v811-radius);
  padding: 0.5rem;
  text-align: center;
  border: 1px solid var(--v811-border);
  transition: transform 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  overflow: hidden;
}
.v811-game-card:hover, .v811-game-card:focus {
  transform: translateY(-2px);
  border-color: var(--v811-gold);
}
.v811-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.4rem;
  background: #0d1626;
}
.v811-game-name {
  font-size: 1.1rem;
  color: var(--v811-text);
  font-weight: 600;
  line-height: 1.25;
  min-height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============== Info / feature blocks ============== */
.v811-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.v811-card {
  background: var(--v811-bg-3);
  border-radius: var(--v811-radius);
  padding: 1rem;
  border: 1px solid var(--v811-border);
}
.v811-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: var(--v811-gold);
}
.v811-card p { margin: 0; color: var(--v811-muted); font-size: 1.3rem; }
.v811-feature-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}
.v811-feature-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--v811-primary), var(--v811-pink));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.v811-feature-text h4 {
  margin: 0 0 0.3rem;
  font-size: 1.4rem;
  color: var(--v811-text);
}
.v811-feature-text p { margin: 0; color: var(--v811-muted); font-size: 1.3rem; }

/* ============== Stats / RTP table ============== */
.v811-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.v811-stat {
  background: var(--v811-bg-3);
  padding: 0.9rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--v811-border);
}
.v811-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--v811-gold);
  line-height: 1.1;
}
.v811-stat-label {
  display: block;
  font-size: 1.15rem;
  color: var(--v811-muted);
  margin-top: 0.2rem;
}
.v811-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.25rem;
}
.v811-table th, .v811-table td {
  text-align: left;
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid var(--v811-border);
}
.v811-table th {
  color: var(--v811-gold);
  background: rgba(255, 215, 0, 0.06);
  font-weight: 700;
}
.v811-table td { color: var(--v811-muted); }
.v811-table tr:last-child td { border-bottom: none; }

/* ============== Testimonials / winners ============== */
.v811-list { list-style: none; padding: 0; margin: 0; }
.v811-list li {
  padding: 0.7rem 0.9rem;
  background: var(--v811-bg-3);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  border: 1px solid var(--v811-border);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.v811-avatar {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v811-accent), var(--v811-gold));
  color: #2a1500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.v811-list-name { font-weight: 700; color: var(--v811-text); font-size: 1.3rem; }
.v811-list-meta { font-size: 1.15rem; color: var(--v811-muted); }
.v811-amount { margin-left: auto; color: var(--v811-gold); font-weight: 800; }

/* ============== Payment chips ============== */
.v811-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.v811-chip {
  background: var(--v811-bg-3);
  border: 1px solid var(--v811-border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 1.2rem;
  color: var(--v811-text);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ============== CTA band ============== */
.v811-cta-band {
  background: linear-gradient(135deg, var(--v811-primary), var(--v811-accent));
  border-radius: var(--v811-radius-lg);
  padding: 1.4rem;
  text-align: center;
  color: #fff;
  margin: 1.6rem 0;
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.35);
}
.v811-cta-band h2 { margin: 0 0 0.4rem; font-size: 1.8rem; }
.v811-cta-band p { margin: 0 0 0.9rem; font-size: 1.3rem; opacity: 0.95; }
.v811-cta-band .v811-btn { background: #fff; color: var(--v811-primary); }

/* ============== Footer ============== */
.v811-footer {
  background: var(--v811-bg-2);
  border-top: 2px solid var(--v811-primary);
  padding: 1.6rem 1.2rem calc(var(--v811-bottomnav-h) + 1.6rem);
  margin-top: 2rem;
}
.v811-footer-inner { max-width: var(--v811-max); margin: 0 auto; }
.v811-footer-brand { font-size: 1.3rem; color: var(--v811-muted); margin: 0 0 0.8rem; }
.v811-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.v811-footer-promos .v811-btn {
  min-height: 2.8rem;
  padding: 0 0.9rem;
  font-size: 1.2rem;
}
.v811-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1rem;
  margin-bottom: 0.8rem;
}
.v811-footer-links a {
  color: var(--v811-muted);
  font-size: 1.2rem;
}
.v811-footer-links a:hover { color: var(--v811-gold); }
.v811-footer-copy {
  font-size: 1.1rem;
  color: var(--v811-muted);
  opacity: 0.7;
  border-top: 1px solid var(--v811-border);
  padding-top: 0.7rem;
}

/* ============== Mobile bottom nav ============== */
.v811-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--v811-bottomnav-h);
  background: linear-gradient(180deg, #1c2c44 0%, #14202f 100%);
  border-top: 2px solid var(--v811-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.4);
}
.v811-bottomnav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--v811-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.3rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.v811-bottomnav-btn i,
.v811-bottomnav-btn .material-icons,
.v811-bottomnav-btn .bi {
  font-size: 2.2rem;
}
.v811-bottomnav-btn .v811-bn-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.v811-bottomnav-btn:hover { color: var(--v811-gold); transform: translateY(-1px); }
.v811-bottomnav-btn.v811-current {
  color: var(--v811-gold);
}
.v811-bottomnav-btn.v811-current::after {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--v811-gold);
  border-radius: 2px;
  margin-top: 2px;
}
.v811-bottomnav-btn.v811-promo {
  color: #fff;
  background: linear-gradient(180deg, rgba(233, 30, 99, 0.18), transparent);
}

/* Desktop: hide bottom nav, widen container */
@media (min-width: 769px) {
  .v811-bottomnav { display: none; }
  .v811-footer { padding-bottom: 1.6rem; }
  .v811-wrapper, .v811-container, .v811-header-inner, .v811-footer-inner {
    max-width: 760px;
  }
}

/* Small phones: keep comfortable spacing */
@media (max-width: 360px) {
  html { font-size: 58%; }
  .v811-grid { grid-template-columns: repeat(2, 1fr); }
  .v811-header-actions .v811-btn { padding: 0 0.7rem; min-height: 2.8rem; font-size: 1.2rem; }
}

/* Reveal-on-scroll */
.v811-reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.v811-reveal.v811-visible { opacity: 1; transform: none; }

/* Utility */
.v811-text-center { text-align: center; }
.v811-mt-0 { margin-top: 0; }
.v811-mb-0 { margin-bottom: 0; }
.v811-hidden { display: none !important; }
