/* ============================================================
 * big bunny apk - theme-1468.css
 * All custom classes use the "v8e7-" prefix.
 * Palette: #FF7F50 | #FFAA00 | #FFA500 | #E91E63 | #3A3A3A
 * Mobile-first; root font-size 62.5% so 1rem = 10px.
 * ============================================================ */

:root {
  --v8e7-coral: #FF7F50;
  --v8e7-gold: #FFAA00;
  --v8e7-orange: #FFA500;
  --v8e7-pink: #E91E63;
  --v8e7-dark: #3A3A3A;
  --v8e7-bg: #1f1410;
  --v8e7-bg-2: #2a1c16;
  --v8e7-card: #2f2018;
  --v8e7-text: #fff5ec;
  --v8e7-muted: #d8b9a8;
  --v8e7-primary: #FF7F50;
  --v8e7-accent: #FFAA00;
  --v8e7-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: radial-gradient(120% 80% at 50% 0%, #3a201a 0%, var(--v8e7-bg) 60%);
  color: var(--v8e7-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.v8e7-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v8e7-wrapper { padding-top: 5.4rem; padding-bottom: 8rem; }

/* ---------- Header ---------- */
.v8e7-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #2a1410, #3a1a14 60%, #2a1410);
  border-bottom: 2px solid var(--v8e7-gold);
  box-shadow: var(--v8e7-shadow);
}
.v8e7-header-inner {
  max-width: 430px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem; min-height: 5.2rem;
}
.v8e7-brand { display: flex; align-items: center; gap: 0.6rem; }
.v8e7-logo {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--v8e7-coral), var(--v8e7-gold));
  display: flex; align-items: center; justify-content: center;
  color: #2a1410; font-weight: 800; font-size: 1.6rem;
  box-shadow: 0 2px 8px rgba(255,170,0,0.4);
}
.v8e7-brand-name { font-size: 1.6rem; font-weight: 800; color: var(--v8e7-gold); letter-spacing: 0.2px; }
.v8e7-brand-name span { color: var(--v8e7-text); }

.v8e7-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.v8e7-btn {
  border: 0; border-radius: 2rem; padding: 0.7rem 1.4rem;
  font-size: 1.3rem; font-weight: 700; cursor: pointer;
  min-height: 3.6rem; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.v8e7-btn:active { transform: scale(0.95); }
.v8e7-btn-login {
  background: transparent; color: var(--v8e7-text);
  border: 1.5px solid var(--v8e7-gold);
}
.v8e7-btn-register {
  background: linear-gradient(90deg, var(--v8e7-coral), var(--v8e7-pink));
  color: #fff; box-shadow: 0 3px 10px rgba(233,30,99,0.4);
}
.v8e7-menu-toggle {
  background: transparent; border: 0; color: var(--v8e7-gold);
  font-size: 2rem; cursor: pointer; padding: 0.4rem; min-width: 4.4rem; min-height: 4.4rem;
}

/* Expandable nav menu */
.v8e7-mobile-menu {
  max-height: 0; overflow: hidden;
  background: #1f1410; transition: max-height .3s ease;
  border-top: 1px solid rgba(255,170,0,0.2);
}
.v8e7-mobile-menu.v8e7-open { max-height: 420px; }
.v8e7-mobile-menu-inner { padding: 0.6rem 1.2rem 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.v8e7-mobile-menu a {
  display: block; padding: 0.9rem 1rem; font-size: 1.3rem;
  background: var(--v8e7-card); border-radius: 0.8rem; color: var(--v8e7-text);
  border-left: 3px solid var(--v8e7-coral);
}
.v8e7-mobile-menu a:hover { background: #3a2a20; }

/* ---------- Hero carousel ---------- */
.v8e7-carousel {
  position: relative; border-radius: 1.2rem; overflow: hidden;
  box-shadow: var(--v8e7-shadow); margin-bottom: 1.4rem;
}
.v8e7-slide {
  position: relative; display: none; cursor: pointer;
}
.v8e7-slide.app146-active { display: block; }
.v8e7-slide img { width: 100%; height: 19rem; object-fit: cover; }
.v8e7-slide-caption {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: rgba(0,0,0,0.55); padding: 0.6rem 0.9rem; border-radius: 0.6rem;
  font-size: 1.25rem; color: #fff;
}
.v8e7-dots { display: flex; gap: 0.5rem; justify-content: center; padding: 0.6rem 0; }
.v8e7-dot {
  width: 0.9rem; height: 0.9rem; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer; border: 0;
}
.v8e7-dot.app146-active { background: var(--v8e7-gold); }

/* ---------- Section primitives ---------- */
.v8e7-section { margin: 1.8rem 0; }
.v8e7-section-title {
  font-size: 1.7rem; font-weight: 800; color: var(--v8e7-gold);
  margin: 0 0 1rem; padding-left: 0.8rem; border-left: 4px solid var(--v8e7-coral);
}
.v8e7-section-title small { color: var(--v8e7-muted); font-weight: 500; font-size: 1.2rem; }

.v8e7-card {
  background: var(--v8e7-card); border-radius: 1rem; padding: 1.2rem;
  box-shadow: var(--v8e7-shadow); margin-bottom: 1rem;
  border: 1px solid rgba(255,170,0,0.12);
}
.v8e7-card h3 { margin: 0 0 0.5rem; font-size: 1.4rem; color: var(--v8e7-coral); }

.v8e7-text-link { color: var(--v8e7-gold); font-weight: 700; }
.v8e7-text-link:hover { text-decoration: underline; }

/* ---------- Category filter ---------- */
.v8e7-filter {
  display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.4rem 0 1rem;
  -webkit-overflow-scrolling: touch;
}
.v8e7-filter-tab {
  flex: 0 0 auto; padding: 0.6rem 1.2rem; border-radius: 2rem;
  background: var(--v8e7-card); color: var(--v8e7-text);
  font-size: 1.25rem; font-weight: 600; cursor: pointer; border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap; min-height: 3.4rem; display: inline-flex; align-items: center;
}
.v8e7-filter-tab.app146-active {
  background: linear-gradient(90deg, var(--v8e7-coral), var(--v8e7-gold));
  color: #2a1410; border-color: transparent;
}

/* ---------- Game grid ---------- */
.v8e7-group-head {
  font-size: 1.4rem; color: #fff; margin: 0.8rem 0 0.8rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.5rem;
}
.v8e7-group-head i { color: var(--v8e7-coral); }
.v8e7-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem;
}
.v8e7-game {
  display: block; background: var(--v8e7-bg-2); border-radius: 0.8rem;
  overflow: hidden; text-align: center; cursor: pointer;
  border: 1px solid rgba(255,170,0,0.15); transition: transform .12s;
}
.v8e7-game:active { transform: scale(0.96); }
.v8e7-game img { width: 100%; height: 8.4rem; object-fit: cover; }
.v8e7-game-name {
  font-size: 1.1rem; color: var(--v8e7-text); padding: 0.4rem 0.3rem 0.5rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---------- Promo CTA ---------- */
.v8e7-cta {
  background: linear-gradient(90deg, var(--v8e7-pink), var(--v8e7-coral));
  border-radius: 1rem; padding: 1.3rem; text-align: center; color: #fff;
  margin: 1.2rem 0; box-shadow: var(--v8e7-shadow);
}
.v8e7-cta h3 { margin: 0 0 0.4rem; font-size: 1.6rem; color: #fff; }
.v8e7-cta p { margin: 0 0 0.8rem; font-size: 1.25rem; color: #fff5ec; }
.v8e7-cta-btn {
  display: inline-block; background: #fff; color: var(--v8e7-pink);
  font-weight: 800; padding: 0.8rem 1.8rem; border-radius: 2rem; font-size: 1.3rem;
  cursor: pointer; border: 0;
}

/* ---------- Feature / lists ---------- */
.v8e7-features { display: grid; gap: 0.7rem; }
.v8e7-feature {
  display: flex; gap: 0.8rem; align-items: flex-start;
  background: var(--v8e7-card); padding: 0.9rem; border-radius: 0.8rem;
  border-left: 3px solid var(--v8e7-gold);
}
.v8e7-feature .material-icons { color: var(--v8e7-coral); font-size: 2.2rem; }
.v8e7-feature h4 { margin: 0 0 0.2rem; font-size: 1.3rem; color: #fff; }
.v8e7-feature p { margin: 0; font-size: 1.2rem; color: var(--v8e7-muted); }

.v8e7-step-list { counter-reset: step; padding: 0; margin: 0; list-style: none; }
.v8e7-step-list li {
  counter-increment: step; position: relative;
  padding: 0.7rem 0.7rem 0.7rem 3.4rem; margin-bottom: 0.5rem;
  background: var(--v8e7-card); border-radius: 0.7rem; font-size: 1.25rem;
}
.v8e7-step-list li::before {
  content: counter(step); position: absolute; left: 0.6rem; top: 0.55rem;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--v8e7-coral), var(--v8e7-gold));
  color: #2a1410; font-weight: 800; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* ---------- RTP data table ---------- */
.v8e7-rtp { width: 100%; border-collapse: collapse; font-size: 1.2rem; }
.v8e7-rtp th, .v8e7-rtp td {
  padding: 0.7rem 0.6rem; text-align: left;
  border-bottom: 1px solid rgba(255,170,0,0.15);
}
.v8e7-rtp th { color: var(--v8e7-gold); font-size: 1.15rem; }
.v8e7-rtp td.num { color: var(--v8e7-coral); font-weight: 700; }

/* ---------- Testimonials ---------- */
.v8e7-testimonial {
  background: var(--v8e7-card); border-radius: 0.8rem; padding: 0.9rem;
  margin-bottom: 0.7rem; border-left: 3px solid var(--v8e7-pink);
}
.v8e7-testimonial .v8e7-stars { color: var(--v8e7-gold); font-size: 1.1rem; }
.v8e7-testimonial p { margin: 0.3rem 0 0; font-size: 1.2rem; color: var(--v8e7-text); }
.v8e7-testimonial cite { color: var(--v8e7-muted); font-style: normal; font-size: 1.1rem; }

/* ---------- Payment chips ---------- */
.v8e7-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.v8e7-chip {
  background: var(--v8e7-card); color: var(--v8e7-text); font-size: 1.15rem;
  padding: 0.5rem 0.9rem; border-radius: 1.4rem; border: 1px solid rgba(255,170,0,0.2);
  display: inline-flex; align-items: center; gap: 0.4rem;
}

/* ---------- Winners ticker ---------- */
.v8e7-winners { display: grid; gap: 0.5rem; }
.v8e7-winner {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--v8e7-card); padding: 0.6rem 0.8rem; border-radius: 0.6rem;
  font-size: 1.2rem;
}
.v8e7-winner .amt { color: var(--v8e7-gold); font-weight: 800; }

/* ---------- FAQ ---------- */
.v8e7-faq { margin-bottom: 0.7rem; background: var(--v8e7-card); border-radius: 0.7rem; overflow: hidden; }
.v8e7-faq summary {
  padding: 0.8rem 1rem; font-size: 1.25rem; font-weight: 700; color: var(--v8e7-coral);
  cursor: pointer; list-style: none;
}
.v8e7-faq summary::-webkit-details-marker { display: none; }
.v8e7-faq p { padding: 0 1rem 0.9rem; margin: 0; font-size: 1.2rem; color: var(--v8e7-muted); }

/* ---------- Footer ---------- */
.v8e7-footer {
  background: #160c08; padding: 1.6rem 1.2rem 1.2rem; margin-top: 2rem;
  border-top: 2px solid var(--v8e7-coral);
}
.v8e7-footer-brand { font-size: 1.3rem; color: var(--v8e7-muted); margin-bottom: 0.8rem; }
.v8e7-footer-promos {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0;
}
.v8e7-footer-promos .v8e7-btn { font-size: 1.15rem; padding: 0.55rem 1rem; }
.v8e7-footer-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 0.8rem; margin: 0.8rem 0;
}
.v8e7-footer-links a { font-size: 1.15rem; color: var(--v8e7-muted); }
.v8e7-footer-links a:hover { color: var(--v8e7-gold); }
.v8e7-copy { font-size: 1.1rem; color: #8a6e60; text-align: center; margin-top: 0.8rem; }

/* ---------- Mobile bottom nav ---------- */
.v8e7-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: linear-gradient(180deg, #2a1410, #160c08);
  border-top: 2px solid var(--v8e7-gold);
  display: flex; justify-content: space-around; align-items: stretch;
  height: 6rem; padding: 0.2rem 0;
}
.v8e7-bottom-nav a, .v8e7-bottom-nav button {
  flex: 1; background: transparent; border: 0; color: var(--v8e7-muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 1rem; gap: 0.2rem; cursor: pointer; min-width: 6rem; min-height: 5.6rem;
  text-decoration: none; padding: 0; transition: color .15s;
}
.v8e7-bottom-nav a i, .v8e7-bottom-nav button i { font-size: 2.2rem; }
.v8e7-bottom-nav a.active { color: var(--v8e7-gold); }
.v8e7-bottom-nav a:active, .v8e7-bottom-nav button:active { transform: scale(0.92); color: var(--v8e7-coral); }
.v8e7-bottom-nav .badge {
  position: absolute; top: 0.4rem; right: 1.6rem;
  background: var(--v8e7-pink); color: #fff; font-size: 0.9rem; font-weight: 700;
  border-radius: 0.8rem; padding: 0 0.4rem; min-width: 1.5rem; line-height: 1.5rem; text-align: center;
}

/* ---------- Desktop rules ---------- */
@media (min-width: 769px) {
  .v8e7-bottom-nav { display: none; }
  .v8e7-container { max-width: 760px; }
  .v8e7-grid { grid-template-columns: repeat(6, 1fr); }
}

/* Bottom clearance so fixed nav never covers content */
@media (max-width: 768px) {
  main { padding-bottom: 8rem; }
}
