/* =============================================================
   8777bet apk login - design-d68e.css
   All custom classes use the dynamic prefix "ve07-"
   Palette: #D8BFD8 / #FF6347 / #4B0082 / #0C0C0C / #9932CC
   Mobile-first, max-width 430px container.
   ============================================================= */

:root {
  --ve07-plum: #4B0082;
  --ve07-violet: #9932CC;
  --ve07-thistle: #D8BFD8;
  --ve07-coral: #FF6347;
  --ve07-ink: #0C0C0C;
  --ve07-bg: #15041f;
  --ve07-bg-2: #1f0833;
  --ve07-card: #260c3c;
  --ve07-line: rgba(216, 191, 216, 0.16);
  --ve07-text: #f5e9fa;
  --ve07-muted: #c9b1d8;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: radial-gradient(120% 80% at 50% 0%, var(--ve07-bg-2) 0%, var(--ve07-bg) 60%, var(--ve07-ink) 100%);
  color: var(--ve07-text);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  min-height: 100vh;
}

a { color: var(--ve07-coral); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.ve07-wrap {
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  background:
    linear-gradient(180deg, rgba(153, 50, 204, 0.08), transparent 220px),
    var(--ve07-bg);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* ---------------- Header ---------------- */
.ve07-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(120deg, var(--ve07-plum), var(--ve07-ink) 70%);
  border-bottom: 1px solid var(--ve07-line);
}
.ve07-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
.ve07-logo img { width: 28px; height: 28px; border-radius: 6px; }
.ve07-logo small { display: block; font-size: 1.05rem; color: var(--ve07-thistle); font-weight: 500; }

.ve07-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ve07-menu-btn {
  background: rgba(216, 191, 216, 0.14);
  border: 1px solid var(--ve07-line);
  color: var(--ve07-thistle);
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* ---------------- Buttons ---------------- */
.ve07-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.ve07-btn:hover { text-decoration: none; transform: translateY(-1px); }
.ve07-btn-primary {
  background: linear-gradient(135deg, var(--ve07-coral), #ff8a3d);
  color: #1a0410;
  box-shadow: 0 6px 18px rgba(255, 99, 71, 0.35);
}
.ve07-btn-ghost {
  background: rgba(216, 191, 216, 0.12);
  color: var(--ve07-thistle);
  border: 1px solid var(--ve07-line);
}
.ve07-btn-violet {
  background: linear-gradient(135deg, var(--ve07-violet), var(--ve07-plum));
  color: #fff;
  box-shadow: 0 6px 18px rgba(153, 50, 204, 0.35);
}
.ve07-link-text {
  color: var(--ve07-coral);
  font-weight: 700;
}

/* ---------------- Mobile expandable menu ---------------- */
.ve07-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--ve07-plum), var(--ve07-ink));
  padding: 70px 16px 24px;
  transform: translateX(110%);
  transition: transform 0.28s ease;
  z-index: 9999;
  overflow-y: auto;
  border-left: 1px solid var(--ve07-line);
}
.ve07-mobile-menu.ve07-menu-open { transform: translateX(0); }
.ve07-mobile-menu a {
  display: block;
  padding: 12px 12px;
  color: var(--ve07-thistle);
  border-bottom: 1px solid var(--ve07-line);
  font-size: 1.5rem;
}
.ve07-mobile-menu a:hover { color: var(--ve07-coral); }
.ve07-menu-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid var(--ve07-line);
  width: 36px; height: 36px;
  border-radius: 8px;
}
.ve07-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9998;
}
.ve07-mobile-menu.ve07-menu-open ~ .ve07-overlay { opacity: 1; pointer-events: auto; }

/* ---------------- Hero ---------------- */
.ve07-hero {
  padding: 16px 14px 8px;
}
.ve07-hero-card {
  background: linear-gradient(135deg, var(--ve07-plum), var(--ve07-violet));
  border: 1px solid var(--ve07-line);
  border-radius: 18px;
  padding: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ve07-hero-card::after {
  content: "";
  position: absolute;
  width: 180px; height: 180px;
  right: -60px; top: -60px;
  background: radial-gradient(circle, rgba(255,99,71,0.45), transparent 70%);
}
.ve07-hero h1 {
  margin: 0 0 6px;
  font-size: 2.2rem;
  line-height: 1.25;
  position: relative; z-index: 1;
}
.ve07-hero p {
  margin: 0 0 12px;
  color: var(--ve07-thistle);
  font-size: 1.45rem;
  position: relative; z-index: 1;
}
.ve07-hero-cta { display: flex; gap: 8px; position: relative; z-index: 1; flex-wrap: wrap; }

/* ---------------- Carousel ---------------- */
.ve07-carousel {
  margin: 14px 0;
}
.ve07-carousel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px 6px;
}
.ve07-carousel-head h2 { font-size: 1.7rem; margin: 0; color: #fff; }
.ve07-carousel-nav { display: flex; gap: 6px; }
.ve07-carousel-nav button {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(216,191,216,0.12);
  border: 1px solid var(--ve07-line);
  color: var(--ve07-thistle);
  cursor: pointer;
}
.ve07-carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 14px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ve07-carousel-track::-webkit-scrollbar { display: none; }
.ve07-promo-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: var(--ve07-card);
  border: 1px solid var(--ve07-line);
  border-radius: 14px;
  padding: 12px;
}
.ve07-promo-card h3 { margin: 0 0 4px; font-size: 1.5rem; color: var(--ve07-coral); }
.ve07-promo-card p { margin: 0; font-size: 1.35rem; color: var(--ve07-muted); }

/* ---------------- Sections ---------------- */
.ve07-section {
  padding: 14px;
  margin-top: 6px;
}
.ve07-section h2 {
  margin: 0 0 12px;
  font-size: 1.85rem;
  color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.ve07-section h2 i { color: var(--ve07-coral); }
.ve07-section p { color: var(--ve07-muted); margin: 0 0 10px; font-size: 1.45rem; }
.ve07-section h3 { color: var(--ve07-thistle); font-size: 1.55rem; margin: 14px 0 6px; }

/* ---------------- Game grid ---------------- */
.ve07-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 14px 6px;
}
.ve07-cat-head h2 { margin: 0; font-size: 1.75rem; color: #fff; display: flex; align-items: center; gap: 8px; }
.ve07-cat-tag {
  font-size: 1.15rem;
  color: var(--ve07-violet);
  background: rgba(153,50,204,0.12);
  padding: 3px 8px; border-radius: 999px;
  border: 1px solid var(--ve07-line);
}
.ve07-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 6px 14px 14px;
}
.ve07-game-card {
  background: var(--ve07-card);
  border: 1px solid var(--ve07-line);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
  display: block;
  text-align: center;
}
.ve07-game-card:hover { transform: translateY(-2px); border-color: var(--ve07-coral); text-decoration: none; }
.ve07-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0c0414;
}
.ve07-game-card .ve07-game-name {
  font-size: 1.2rem;
  color: var(--ve07-text);
  padding: 6px 4px 8px;
  line-height: 1.25;
  min-height: 36px;
}
.ve07-game-card .ve07-game-hot {
  position: relative;
}
.ve07-game-card .ve07-game-hot::before {
  content: "HOT";
  position: absolute;
  top: 6px; left: 6px;
  background: var(--ve07-coral);
  color: #1a0410;
  font-size: 1rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 6px;
}

/* ---------------- Feature / card list ---------------- */
.ve07-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ve07-feature {
  background: var(--ve07-card);
  border: 1px solid var(--ve07-line);
  border-radius: 12px;
  padding: 12px;
}
.ve07-feature i { font-size: 22px; color: var(--ve07-coral); }
.ve07-feature h3 { margin: 6px 0 2px; font-size: 1.4rem; color: #fff; }
.ve07-feature p { margin: 0; font-size: 1.3rem; color: var(--ve07-muted); }

/* ---------------- RTP compact analysis ---------------- */
.ve07-rtp-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(216,191,216,0.15);
  overflow: hidden;
  margin: 4px 0 10px;
}
.ve07-rtp-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--ve07-coral), var(--ve07-violet));
}
.ve07-rtp-row { margin-bottom: 10px; }
.ve07-rtp-row .ve07-rtp-top {
  display: flex; justify-content: space-between;
  font-size: 1.35rem; color: var(--ve07-thistle);
}

/* ---------------- Testimonials ---------------- */
.ve07-testi {
  background: var(--ve07-card);
  border: 1px solid var(--ve07-line);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}
.ve07-testi .ve07-stars { color: #ffd54a; font-size: 1.3rem; }
.ve07-testi p { margin: 6px 0; font-size: 1.4rem; color: var(--ve07-text); }
.ve07-testi .ve07-author { font-size: 1.25rem; color: var(--ve07-muted); }

/* ---------------- Winners ---------------- */
.ve07-winner {
  display: flex; align-items: center; gap: 10px;
  background: var(--ve07-card);
  border: 1px solid var(--ve07-line);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 8px;
}
.ve07-winner img { width: 36px; height: 36px; border-radius: 8px; }
.ve07-winner .ve07-w-name { font-size: 1.35rem; color: #fff; font-weight: 600; }
.ve07-winner .ve07-w-amt { margin-left: auto; color: var(--ve07-coral); font-weight: 800; font-size: 1.45rem; }

/* ---------------- Payment ---------------- */
.ve07-pay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.ve07-pay-chip {
  background: rgba(216,191,216,0.1);
  border: 1px solid var(--ve07-line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 1.25rem;
  color: var(--ve07-thistle);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---------------- FAQ ---------------- */
.ve07-faq details {
  background: var(--ve07-card);
  border: 1px solid var(--ve07-line);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.ve07-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: 1.45rem;
  list-style: none;
}
.ve07-faq summary::-webkit-details-marker { display: none; }
.ve07-faq p { margin: 8px 0 0; font-size: 1.35rem; color: var(--ve07-muted); }

/* ---------------- Play Now CTA ---------------- */
.ve07-cta-banner {
  background: linear-gradient(135deg, var(--ve07-coral), var(--ve07-violet));
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  color: #fff;
  margin: 14px;
}
.ve07-cta-banner h2 { margin: 0 0 6px; font-size: 1.9rem; color: #fff; justify-content: center; }
.ve07-cta-banner p { margin: 0 0 12px; color: #fff; opacity: 0.92; }

/* ---------------- Footer ---------------- */
.ve07-footer {
  background: linear-gradient(180deg, var(--ve07-ink), #050201);
  border-top: 1px solid var(--ve07-line);
  padding: 18px 14px 24px;
  color: var(--ve07-muted);
  font-size: 1.3rem;
}
.ve07-footer h3 { color: var(--ve07-thistle); font-size: 1.5rem; margin: 12px 0 6px; }
.ve07-footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.ve07-footer-columns a {
  display: block;
  color: var(--ve07-muted);
  padding: 4px 0;
  font-size: 1.3rem;
}
.ve07-footer-columns a:hover { color: var(--ve07-coral); }
.ve07-footer-bottom {
  border-top: 1px solid var(--ve07-line);
  padding-top: 10px;
  text-align: center;
  color: var(--ve07-muted);
}

/* ---------------- Mobile bottom nav ---------------- */
.ve07-bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(180deg, var(--ve07-plum), var(--ve07-ink));
  border-top: 1px solid var(--ve07-line);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.4);
}
.ve07-bottom-nav button,
.ve07-bottom-nav a {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: 0;
  color: var(--ve07-thistle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  font-size: 1.05rem;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}
.ve07-bottom-nav button i,
.ve07-bottom-nav a i {
  font-size: 22px;
}
.ve07-bottom-nav button:hover,
.ve07-bottom-nav a:hover {
  color: var(--ve07-coral);
  text-decoration: none;
  transform: translateY(-1px);
}
.ve07-bottom-nav .ve07-nav-promo {
  color: var(--ve07-coral);
  font-weight: 700;
}
.ve07-bottom-nav .ve07-nav-active { color: #fff; }

/* ---------------- Desktop: hide bottom nav, widen wrap ---------------- */
@media (min-width: 769px) {
  .ve07-bottom-nav { display: none; }
  .ve07-wrap {
    max-width: 960px;
    box-shadow: 0 0 60px rgba(0,0,0,0.6);
  }
  .ve07-game-grid { grid-template-columns: repeat(6, 1fr); }
  .ve07-feature-grid { grid-template-columns: repeat(4, 1fr); }
  .ve07-promo-card { flex-basis: 40%; }
}

/* ---------------- Mobile bottom padding clearance ---------------- */
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
  .ve07-wrap { max-width: 430px; }
}
