/* ============================================================
   bigbunny ph - Core Theme Stylesheet
   File: css/theme-d1ce.css
   Mobile-first gaming layout. Class prefix: vef2-
   Palette: #1C2833 bg | #00FA9A mint | #B22222 fire |
            #B03060 maroon | #FFB6C1 pink
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --vef2-bg: #1C2833;
  --vef2-bg-alt: #11181F;
  --vef2-bg-card: #243040;
  --vef2-bg-elev: #2E3B4E;
  --vef2-primary: #00FA9A;
  --vef2-primary-dark: #00C77B;
  --vef2-secondary: #B22222;
  --vef2-accent: #B03060;
  --vef2-pink: #FFB6C1;
  --vef2-gold: #FFD479;
  --vef2-text: #F5F8FA;
  --vef2-text-muted: #9FAAB6;
  --vef2-border: #2C3A48;
  --vef2-shadow: 0 6px 18px rgba(0, 0, 0, .35);
  --vef2-radius: 14px;
  --vef2-radius-sm: 9px;
  --vef2-gradient: linear-gradient(135deg, #00FA9A 0%, #00C77B 100%);
  --vef2-gradient-pink: linear-gradient(135deg, #B03060 0%, #FFB6C1 100%);
  --vef2-gradient-fire: linear-gradient(135deg, #B22222 0%, #B03060 100%);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--vef2-bg);
  background-image: radial-gradient(circle at 20% 0%, rgba(0, 250, 154, .06), transparent 45%),
                    radial-gradient(circle at 90% 25%, rgba(176, 48, 96, .08), transparent 40%);
  color: var(--vef2-text);
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--vef2-primary); text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.35; font-weight: 700; }

/* ---------- Header ---------- */
.vef2-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto;
  background: rgba(28, 40, 51, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vef2-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
}
.vef2-logo { display: flex; align-items: center; gap: 8px; }
.vef2-logo-img { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; }
.vef2-site-name { font-size: 1.7rem; font-weight: 800; color: var(--vef2-primary); letter-spacing: .3px; }
.vef2-site-name span { color: var(--vef2-pink); }
.vef2-header-actions { display: flex; align-items: center; gap: 8px; }
.vef2-btn {
  font-family: inherit; cursor: pointer; border: none;
  padding: 8px 14px; border-radius: 20px;
  font-size: 1.3rem; font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease;
  display: inline-flex; align-items: center; gap: 6px; min-height: 36px;
}
.vef2-btn:active { transform: scale(.96); }
.vef2-btn-primary { background: var(--vef2-gradient); color: #0A1419; box-shadow: 0 3px 10px rgba(0, 250, 154, .35); }
.vef2-btn-outline { background: transparent; color: var(--vef2-text); border: 1px solid var(--vef2-primary); }
.vef2-btn-pink { background: var(--vef2-gradient-pink); color: #fff; }
.vef2-btn-fire { background: var(--vef2-gradient-fire); color: #fff; }
.vef2-menu-toggle { background: transparent; border: none; color: var(--vef2-text); font-size: 2rem; cursor: pointer; padding: 4px 8px; }

/* ---------- Mobile slide menu ---------- */
.vef2-menu-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, .6); z-index: 9998;
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.vef2-menu-overlay.open { opacity: 1; visibility: visible; }
.vef2-mobile-menu {
  position: fixed; top: 0; right: -85%; width: 78%; max-width: 320px;
  height: 100vh; background: var(--vef2-bg-alt); z-index: 9999;
  transition: right .3s ease; padding: 64px 16px 30px; overflow-y: auto;
  border-left: 1px solid var(--vef2-border);
}
.vef2-mobile-menu.open { right: 0; }
.vef2-menu-close { position: absolute; top: 14px; right: 14px; background: transparent; border: none; color: var(--vef2-text); font-size: 2.2rem; cursor: pointer; }
.vef2-menu-title { font-size: 1.4rem; color: var(--vef2-primary); margin: 4px 0 10px; text-transform: uppercase; letter-spacing: 1px; }
.vef2-menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 12px; border-radius: 10px;
  color: var(--vef2-text); font-size: 1.4rem; font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: background .15s ease;
}
.vef2-menu-item:hover, .vef2-menu-item:active { background: var(--vef2-bg-elev); color: var(--vef2-primary); }
.vef2-menu-item i { color: var(--vef2-pink); width: 22px; text-align: center; }

/* ---------- Layout ---------- */
.vef2-main { padding-top: 56px; padding-bottom: 80px; }
.vef2-section { padding: 20px 12px; }
.vef2-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.vef2-section-title { font-size: 1.85rem; font-weight: 800; color: var(--vef2-text); display: flex; align-items: center; gap: 8px; }
.vef2-section-title::before { content: ""; width: 4px; height: 20px; background: var(--vef2-gradient); border-radius: 3px; display: inline-block; }
.vef2-section-title em { color: var(--vef2-primary); font-style: normal; }
.vef2-section-more { font-size: 1.25rem; color: var(--vef2-pink); font-weight: 600; }

/* ---------- Carousel ---------- */
.vef2-carousel { position: relative; border-radius: var(--vef2-radius); overflow: hidden; margin: 12px; box-shadow: var(--vef2-shadow); }
.vef2-carousel-track { display: flex; transition: transform .4s ease; }
.vef2-slide { min-width: 100%; position: relative; }
.vef2-slide-img { width: 100%; height: 180px; object-fit: cover; }
.vef2-slide-caption { position: absolute; left: 14px; bottom: 14px; right: 14px; background: linear-gradient(transparent, rgba(0, 0, 0, .75)); color: #fff; padding: 22px 12px 8px; }
.vef2-slide-caption h3 { font-size: 1.7rem; color: var(--vef2-primary); margin-bottom: 3px; }
.vef2-slide-caption p { font-size: 1.25rem; color: var(--vef2-pink); }
.vef2-carousel-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.vef2-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .4); border: none; cursor: pointer; transition: all .2s ease; }
.vef2-carousel-dot.active { background: var(--vef2-primary); width: 20px; border-radius: 4px; }

/* ---------- Hero ---------- */
.vef2-hero { padding: 18px 14px 4px; text-align: center; }
.vef2-hero h1 { font-size: 2.4rem; font-weight: 900; margin-bottom: 8px; background: var(--vef2-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.vef2-hero p { font-size: 1.35rem; color: var(--vef2-text-muted); margin-bottom: 14px; }
.vef2-hero-cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.vef2-hero-cta .vef2-btn { padding: 10px 22px; font-size: 1.4rem; }

/* ---------- Game grid ---------- */
.vef2-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.vef2-game-card {
  background: var(--vef2-bg-card); border-radius: var(--vef2-radius-sm);
  overflow: hidden; border: 1px solid var(--vef2-border); cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  position: relative; display: block;
}
.vef2-game-card:active { transform: scale(.96); }
.vef2-game-card:hover { box-shadow: 0 6px 14px rgba(0, 250, 154, .18); border-color: var(--vef2-primary); }
.vef2-game-img-wrap { position: relative; aspect-ratio: 1/1; background: #0E1620; }
.vef2-game-img { width: 100%; height: 100%; object-fit: cover; }
.vef2-game-badge { position: absolute; top: 5px; left: 5px; background: var(--vef2-gradient-fire); color: #fff; font-size: 1rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.vef2-game-badge.vef2-badge-mint { background: var(--vef2-gradient); color: #0A1419; }
.vef2-game-name { padding: 6px 6px 8px; font-size: 1.15rem; font-weight: 600; color: var(--vef2-text); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Generic card / content ---------- */
.vef2-card { background: var(--vef2-bg-card); border: 1px solid var(--vef2-border); border-radius: var(--vef2-radius); padding: 16px; margin: 12px 0; }
.vef2-card h2 { font-size: 1.8rem; color: var(--vef2-primary); margin-bottom: 10px; }
.vef2-card h3 { font-size: 1.5rem; color: var(--vef2-pink); margin: 14px 0 6px; }
.vef2-card p { font-size: 1.35rem; color: var(--vef2-text-muted); margin-bottom: 10px; line-height: 1.7; }
.vef2-card strong { color: var(--vef2-primary); font-weight: 700; }
.vef2-card a { color: var(--vef2-pink); font-weight: 600; text-decoration: underline; }
.vef2-card ul { padding-left: 18px; }
.vef2-card ul li { font-size: 1.3rem; color: var(--vef2-text-muted); margin-bottom: 6px; list-style: disc; line-height: 1.6; }

/* ---------- Step list ---------- */
.vef2-steps { display: grid; gap: 10px; }
.vef2-step { display: flex; gap: 12px; align-items: flex-start; background: var(--vef2-bg-elev); padding: 12px; border-radius: 10px; border-left: 3px solid var(--vef2-primary); }
.vef2-step-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--vef2-gradient); color: #0A1419; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.vef2-step-body h4 { font-size: 1.4rem; color: var(--vef2-text); margin-bottom: 3px; }
.vef2-step-body p { font-size: 1.25rem; color: var(--vef2-text-muted); margin: 0; line-height: 1.5; }

/* ---------- RTP table ---------- */
.vef2-rtp-table { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: 1.3rem; }
.vef2-rtp-table th, .vef2-rtp-table td { padding: 9px 8px; text-align: left; border-bottom: 1px solid var(--vef2-border); }
.vef2-rtp-table th { color: var(--vef2-pink); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; }
.vef2-rtp-table td { color: var(--vef2-text-muted); }
.vef2-rtp-rate { color: var(--vef2-primary); font-weight: 700; }
.vef2-rtp-bar { height: 6px; background: var(--vef2-bg-elev); border-radius: 3px; overflow: hidden; margin-top: 4px; }
.vef2-rtp-bar-fill { height: 100%; background: var(--vef2-gradient); }

/* ---------- Features ---------- */
.vef2-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.vef2-feature { background: var(--vef2-bg-elev); padding: 14px; border-radius: 10px; text-align: center; border-top: 3px solid var(--vef2-primary); }
.vef2-feature i { font-size: 2.4rem; color: var(--vef2-primary); margin-bottom: 6px; display: block; }
.vef2-feature h4 { font-size: 1.35rem; color: var(--vef2-text); margin-bottom: 4px; }
.vef2-feature p { font-size: 1.15rem; color: var(--vef2-text-muted); line-height: 1.45; margin: 0; }

/* ---------- Testimonials ---------- */
.vef2-testimonials { display: grid; gap: 12px; }
.vef2-testimonial { background: var(--vef2-bg-elev); border-radius: 10px; padding: 14px; border-left: 3px solid var(--vef2-pink); }
.vef2-testimonial-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.vef2-testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--vef2-gradient-pink); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.4rem; }
.vef2-testimonial-name { font-size: 1.35rem; color: var(--vef2-text); font-weight: 700; }
.vef2-testimonial-stars { color: var(--vef2-gold); font-size: 1.1rem; }
.vef2-testimonial p { font-size: 1.25rem; color: var(--vef2-text-muted); line-height: 1.55; margin: 0; }

/* ---------- Payment methods ---------- */
.vef2-payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.vef2-payment-item { background: var(--vef2-bg-elev); border-radius: 8px; padding: 10px 4px; text-align: center; font-size: 1.1rem; color: var(--vef2-text-muted); border: 1px solid var(--vef2-border); }
.vef2-payment-item i { font-size: 2rem; color: var(--vef2-primary); display: block; margin-bottom: 4px; }

/* ---------- Winners ---------- */
.vef2-winners { display: grid; gap: 8px; }
.vef2-winner { display: flex; align-items: center; justify-content: space-between; background: var(--vef2-bg-elev); padding: 10px 12px; border-radius: 8px; border-left: 3px solid var(--vef2-gold); }
.vef2-winner-info { display: flex; align-items: center; gap: 10px; }
.vef2-winner-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--vef2-gradient); color: #0A1419; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; }
.vef2-winner-name { font-size: 1.3rem; color: var(--vef2-text); font-weight: 600; }
.vef2-winner-game { font-size: 1.1rem; color: var(--vef2-text-muted); }
.vef2-winner-amount { font-size: 1.4rem; color: var(--vef2-gold); font-weight: 800; }

/* ---------- Category highlights ---------- */
.vef2-cat-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.vef2-cat-card { position: relative; border-radius: var(--vef2-radius-sm); overflow: hidden; aspect-ratio: 16/10; cursor: pointer; border: 1px solid var(--vef2-border); }
.vef2-cat-card img { width: 100%; height: 100%; object-fit: cover; }
.vef2-cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(transparent, rgba(28, 40, 51, .92)); display: flex; flex-direction: column; justify-content: flex-end; padding: 10px; }
.vef2-cat-card-overlay h4 { font-size: 1.5rem; color: var(--vef2-primary); }
.vef2-cat-card-overlay span { font-size: 1.1rem; color: var(--vef2-pink); }

/* ---------- FAQ ---------- */
.vef2-faq-list { display: grid; gap: 8px; }
.vef2-faq-item { background: var(--vef2-bg-elev); border-radius: 10px; border: 1px solid var(--vef2-border); overflow: hidden; }
.vef2-faq-q { width: 100%; text-align: left; background: transparent; border: none; padding: 12px 14px; color: var(--vef2-text); font-size: 1.35rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 8px; font-family: inherit; }
.vef2-faq-q::after { content: "+"; color: var(--vef2-primary); font-size: 1.8rem; font-weight: 700; }
.vef2-faq-item.open .vef2-faq-q::after { content: "\2212"; }
.vef2-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 14px; color: var(--vef2-text-muted); font-size: 1.25rem; line-height: 1.6; }
.vef2-faq-item.open .vef2-faq-a { max-height: 240px; padding: 0 14px 12px; }

/* ---------- CTA ---------- */
.vef2-cta { background: var(--vef2-gradient-fire); border-radius: var(--vef2-radius); padding: 22px 16px; text-align: center; margin: 14px 0; color: #fff; }
.vef2-cta h2 { color: #fff; font-size: 1.9rem; margin-bottom: 6px; }
.vef2-cta p { color: rgba(255, 255, 255, .92); font-size: 1.3rem; margin-bottom: 14px; }
.vef2-cta .vef2-btn { padding: 12px 28px; font-size: 1.5rem; background: #fff; color: var(--vef2-secondary); }

/* ---------- App download CTA ---------- */
.vef2-app-cta { display: flex; align-items: center; gap: 14px; background: var(--vef2-bg-card); border: 1px solid var(--vef2-border); border-radius: var(--vef2-radius); padding: 14px; margin: 12px 0; }
.vef2-app-cta-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; background: var(--vef2-gradient); display: flex; align-items: center; justify-content: center; color: #0A1419; font-size: 2.6rem; }
.vef2-app-cta-body { flex: 1; }
.vef2-app-cta-body h3 { font-size: 1.5rem; color: var(--vef2-text); margin-bottom: 3px; }
.vef2-app-cta-body p { font-size: 1.2rem; color: var(--vef2-text-muted); margin: 0 0 8px; line-height: 1.4; }

/* ---------- Footer ---------- */
.vef2-footer { background: var(--vef2-bg-alt); border-top: 1px solid var(--vef2-border); padding: 22px 14px 30px; margin-top: 14px; }
.vef2-footer-brand { font-size: 1.3rem; color: var(--vef2-text-muted); line-height: 1.7; margin-bottom: 16px; }
.vef2-footer-brand strong { color: var(--vef2-primary); }
.vef2-footer-promo { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.vef2-footer-promo .vef2-btn { font-size: 1.2rem; padding: 7px 14px; }
.vef2-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; margin-bottom: 16px; padding: 14px; background: var(--vef2-bg-card); border-radius: 10px; }
.vef2-footer-links a { font-size: 1.2rem; color: var(--vef2-text-muted); display: flex; align-items: center; gap: 6px; }
.vef2-footer-links a:hover { color: var(--vef2-primary); }
.vef2-footer-links i { color: var(--vef2-pink); font-size: 1.1rem; }
.vef2-copyright { font-size: 1.2rem; color: var(--vef2-text-muted); text-align: center; padding-top: 12px; border-top: 1px solid var(--vef2-border); }

/* ---------- Bottom navigation ---------- */
.vef2-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto;
  background: rgba(17, 24, 31, .97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--vef2-border);
  display: flex; justify-content: space-around; align-items: center;
  height: 62px; padding: 0 4px;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, .35);
}
.vef2-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; background: transparent; border: none; cursor: pointer;
  color: var(--vef2-text-muted); font-family: inherit;
  min-width: 60px; min-height: 60px; padding: 6px 2px;
  transition: color .15s ease, transform .15s ease; position: relative;
  text-decoration: none;
}
.vef2-nav-item:active { transform: scale(.92); }
.vef2-nav-item i { font-size: 2.2rem; }
.vef2-nav-item .material-icons { font-size: 2.4rem; }
.vef2-nav-label { font-size: 1.05rem; font-weight: 600; }
.vef2-nav-item.active { color: var(--vef2-primary); }
.vef2-nav-item.active::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 28px; height: 3px; background: var(--vef2-gradient); border-radius: 0 0 4px 4px; }
.vef2-nav-item.vef2-nav-promo { color: var(--vef2-pink); }
.vef2-nav-item.vef2-nav-promo i { background: var(--vef2-gradient-pink); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.vef2-nav-badge { position: absolute; top: 4px; right: 14px; min-width: 16px; height: 16px; background: var(--vef2-secondary); color: #fff; font-size: 1rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 4px; font-weight: 700; }

/* ---------- Desktop breakpoint ---------- */
@media (min-width: 769px) {
  .vef2-bottom-nav { display: none; }
  .vef2-main { padding-bottom: 30px; }
  body { max-width: 480px; }
}

/* ---------- Utilities ---------- */
.vef2-text-center { text-align: center; }
.vef2-mt-10 { margin-top: 10px; }
.vef2-hidden { display: none; }
.vef2-promo-text { color: var(--vef2-primary); font-weight: 700; }
.vef2-divider { height: 1px; background: var(--vef2-border); margin: 14px 0; border: none; }
