/* ============================================================
   99win bet - style-3857.css
   All classes use "v7a5-" prefix for namespacing
   Mobile-first responsive design, max-width 430px primary
   Palette: #262626 | #FFB347 | #3C3C3C | #F5F5F5 | #FF7F50 | #6495ED
   ============================================================ */

:root {
  --v7a5-bg: #262626;
  --v7a5-bg-2: #3C3C3C;
  --v7a5-gold: #FFB347;
  --v7a5-coral: #FF7F50;
  --v7a5-blue: #6495ED;
  --v7a5-text: #F5F5F5;
  --v7a5-muted: #b9b9b9;
  --v7a5-radius: 14px;
  --v7a5-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--v7a5-bg);
  color: var(--v7a5-text);
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Layout helpers ---------- */
.v7a5-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v7a5-section { padding: 2.2rem 0; }
.v7a5-section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--v7a5-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}
.v7a5-section-title::before {
  content: "";
  display: inline-block;
  width: 5px; height: 1.6rem;
  background: var(--v7a5-coral);
  margin-right: 0.7rem;
  vertical-align: middle;
  border-radius: 3px;
}

/* ---------- Header ---------- */
.v7a5-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #1f1f1f, #2f2f2f);
  border-bottom: 2px solid var(--v7a5-gold);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.v7a5-brand { display: flex; align-items: center; gap: 0.55rem; min-width: 0; }
.v7a5-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 30%, var(--v7a5-gold), var(--v7a5-coral));
  display: flex; align-items: center; justify-content: center;
  color: #1a1a1a; font-weight: 900; font-size: 1.6rem;
  flex-shrink: 0;
}
.v7a5-brand-name {
  font-size: 1.55rem; font-weight: 800; color: var(--v7a5-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v7a5-brand-name span { color: var(--v7a5-gold); }
.v7a5-header-actions { display: flex; align-items: center; gap: 0.45rem; }
.v7a5-menu-btn {
  background: transparent; border: 0; color: var(--v7a5-text);
  font-size: 1.9rem; cursor: pointer; padding: 0.4rem 0.5rem;
  min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center;
}

/* ---------- Buttons ---------- */
.v7a5-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 1.4rem; border-radius: 50px;
  font-weight: 700; font-size: 1.35rem; border: 0; cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
  min-height: 40px; text-align: center;
}
.v7a5-btn:hover { transform: translateY(-1px); text-decoration: none; }
.v7a5-btn:active { transform: scale(0.97); }
.v7a5-btn-register {
  background: linear-gradient(135deg, var(--v7a5-coral), var(--v7a5-gold));
  color: #1a1a1a;
}
.v7a5-btn-login {
  background: transparent; color: var(--v7a5-text);
  border: 1.5px solid var(--v7a5-blue);
}
.v7a5-btn-cta {
  background: linear-gradient(135deg, var(--v7a5-blue), var(--v7a5-gold));
  color: #1a1a1a; padding: 0.9rem 2rem; font-size: 1.45rem;
}

/* ---------- Mobile slide-in menu ---------- */
.v7a5-mobile-menu {
  position: fixed;
  top: 0; right: -85%;
  width: 80%; max-width: 320px;
  height: 100%;
  background: #1d1d1d;
  z-index: 9999;
  padding: 2rem 1.4rem;
  overflow-y: auto;
  transition: right 0.28s ease;
  border-left: 2px solid var(--v7a5-gold);
}
.v7a5-mobile-menu.v7a5-menu-open { right: 0; }
.v7a5-menu-close {
  background: transparent; border: 0; color: var(--v7a5-text);
  font-size: 2rem; cursor: pointer; float: right; min-width: 44px; min-height: 44px;
}
.v7a5-mobile-menu h3 { color: var(--v7a5-gold); font-size: 1.5rem; margin: 1.4rem 0 0.6rem; }
.v7a5-mobile-menu ul { list-style: none; }
.v7a5-mobile-menu li { border-bottom: 1px solid #333; }
.v7a5-mobile-menu a {
  display: block; padding: 1rem 0.4rem;
  color: var(--v7a5-text); font-size: 1.4rem;
}
.v7a5-mobile-menu a:hover { color: var(--v7a5-gold); }
.v7a5-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.v7a5-overlay.v7a5-overlay-show { opacity: 1; pointer-events: auto; }

/* ---------- Hero carousel ---------- */
.v7a5-carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--v7a5-radius);
  box-shadow: var(--v7a5-shadow);
  margin-top: 1rem;
}
.v7a5-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.6s ease;
  display: flex; align-items: flex-end;
}
.v7a5-slide.v7a5-slide-active { opacity: 1; }
.v7a5-slide img { width: 100%; height: 100%; object-fit: cover; }
.v7a5-slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: var(--v7a5-text);
}
.v7a5-slide-caption strong { color: var(--v7a5-gold); display: block; font-size: 1.6rem; }
.v7a5-slide-caption span { font-size: 1.25rem; }
.v7a5-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.45); color: #fff;
  border: 0; width: 34px; height: 34px; border-radius: 50%;
  font-size: 1.6rem; cursor: pointer; z-index: 2;
}
.v7a5-carousel-arrow.v7a5-prev { left: 6px; }
.v7a5-carousel-arrow.v7a5-next { right: 6px; }
.v7a5-dots {
  position: absolute; bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; z-index: 2;
}
.v7a5-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: 0; cursor: pointer; padding: 0;
}
.v7a5-dot.v7a5-dot-active { background: var(--v7a5-gold); width: 22px; border-radius: 5px; }

/* ---------- H1 ---------- */
.v7a5-h1 {
  font-size: 2.1rem; font-weight: 900;
  margin: 1.6rem 0 0.8rem;
  color: var(--v7a5-text);
  line-height: 1.3;
}
.v7a5-h1 span { color: var(--v7a5-gold); }
.v7a5-lead { color: var(--v7a5-muted); font-size: 1.3rem; margin-bottom: 1.2rem; }

/* ---------- Game grid ---------- */
.v7a5-cat-header {
  display: flex; align-items: center; justify-content: space-between;
  margin: 2rem 0 1rem;
}
.v7a5-cat-header h2 {
  font-size: 1.7rem; font-weight: 800; color: var(--v7a5-gold);
  display: flex; align-items: center; gap: 0.5rem;
}
.v7a5-cat-header a { font-size: 1.2rem; }
.v7a5-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.v7a5-game {
  background: var(--v7a5-bg-2);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.v7a5-game:hover { transform: translateY(-2px); box-shadow: var(--v7a5-shadow); }
.v7a5-game img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.v7a5-game-name {
  padding: 0.45rem 0.5rem; font-size: 1.05rem;
  color: var(--v7a5-text); text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v7a5-game-tag {
  position: absolute; top: 4px; left: 4px;
  background: var(--v7a5-coral); color: #1a1a1a;
  font-size: 0.9rem; font-weight: 800;
  padding: 1px 6px; border-radius: 4px;
}

/* ---------- Cards / features ---------- */
.v7a5-card {
  background: var(--v7a5-bg-2);
  border-radius: var(--v7a5-radius);
  padding: 1.4rem;
  margin-bottom: 1rem;
  box-shadow: var(--v7a5-shadow);
  border-left: 4px solid var(--v7a5-gold);
}
.v7a5-card h3 { font-size: 1.5rem; color: var(--v7a5-text); margin-bottom: 0.5rem; }
.v7a5-card h3 i { color: var(--v7a5-gold); margin-right: 0.4rem; }
.v7a5-card p { font-size: 1.25rem; color: var(--v7a5-muted); margin-bottom: 0.6rem; }
.v7a5-card a { font-weight: 700; }
.v7a5-feature-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }

/* ---------- Stats ---------- */
.v7a5-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem; text-align: center; margin: 1.2rem 0;
}
.v7a5-stat {
  background: var(--v7a5-bg-2); border-radius: 10px; padding: 1rem 0.4rem;
  border-top: 3px solid var(--v7a5-coral);
}
.v7a5-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--v7a5-gold); display: block; }
.v7a5-stat-label { font-size: 1.05rem; color: var(--v7a5-muted); }

/* ---------- Testimonials ---------- */
.v7a5-testimonial {
  background: var(--v7a5-bg-2); border-radius: 12px;
  padding: 1.1rem; margin-bottom: 0.8rem;
  border-left: 4px solid var(--v7a5-blue);
}
.v7a5-testimonial p { font-size: 1.25rem; color: var(--v7a5-text); font-style: italic; margin-bottom: 0.5rem; }
.v7a5-testimonial .v7a5-meta { font-size: 1.1rem; color: var(--v7a5-gold); font-weight: 700; }

/* ---------- Payment ---------- */
.v7a5-pay { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.v7a5-pay span {
  background: var(--v7a5-bg-2); border: 1px solid #444;
  border-radius: 8px; padding: 0.55rem 0.9rem; font-size: 1.15rem; color: var(--v7a5-text);
}
.v7a5-pay span i { color: var(--v7a5-gold); margin-right: 0.35rem; }

/* ---------- FAQ ---------- */
.v7a5-faq-item {
  background: var(--v7a5-bg-2); border-radius: 10px;
  margin-bottom: 0.6rem; overflow: hidden;
}
.v7a5-faq-q {
  width: 100%; text-align: left; background: transparent; border: 0;
  color: var(--v7a5-text); padding: 1rem 1.1rem;
  font-size: 1.3rem; font-weight: 700; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 0.5rem;
}
.v7a5-faq-q .v7a5-plus { color: var(--v7a5-gold); font-size: 1.6rem; transition: transform 0.2s; }
.v7a5-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.1rem; color: var(--v7a5-muted); font-size: 1.2rem;
}
.v7a5-faq-open .v7a5-faq-a { max-height: 400px; padding: 0 1.1rem 1rem; }
.v7a5-faq-open .v7a5-plus { transform: rotate(45deg); }

/* ---------- Winners ---------- */
.v7a5-winner {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--v7a5-bg-2); padding: 0.7rem 0.9rem; border-radius: 10px;
  margin-bottom: 0.5rem;
}
.v7a5-winner .v7a5-amount { margin-left: auto; color: var(--v7a5-gold); font-weight: 800; }

/* ---------- App CTA ---------- */
.v7a5-app-cta {
  background: linear-gradient(135deg, var(--v7a5-blue), var(--v7a5-bg-2));
  border-radius: var(--v7a5-radius); padding: 1.4rem; text-align: center;
  margin: 1rem 0;
}
.v7a5-app-cta h3 { color: var(--v7a5-text); font-size: 1.5rem; margin-bottom: 0.4rem; }
.v7a5-app-cta p { color: var(--v7a5-muted); font-size: 1.2rem; margin-bottom: 0.9rem; }
.v7a5-app-buttons { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.v7a5-footer {
  background: #1a1a1a; padding: 2.4rem 1.2rem 9rem;
  margin-top: 2rem; border-top: 2px solid var(--v7a5-gold);
}
.v7a5-footer h4 { color: var(--v7a5-gold); font-size: 1.4rem; margin-bottom: 0.7rem; }
.v7a5-footer p { color: var(--v7a5-muted); font-size: 1.2rem; margin-bottom: 0.8rem; }
.v7a5-footer ul { list-style: none; margin-bottom: 1.2rem; }
.v7a5-footer li { margin-bottom: 0.4rem; }
.v7a5-footer a { color: var(--v7a5-text); font-size: 1.2rem; }
.v7a5-footer-promos {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0 1.4rem;
}
.v7a5-footer-promos .v7a5-btn { font-size: 1.15rem; padding: 0.55rem 1rem; }
.v7a5-footer-copy {
  text-align: center; color: #777; font-size: 1.1rem;
  border-top: 1px solid #2e2e2e; padding-top: 1rem; margin-top: 0.5rem;
}

/* ---------- Bottom nav (mobile only) ---------- */
.v7a5-bottom-nav {
  position: fixed;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  height: 60px;
  background: linear-gradient(180deg, #1f1f1f, #141414);
  border-top: 2px solid var(--v7a5-gold);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
}
.v7a5-nav-btn {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; background: transparent; border: 0;
  color: var(--v7a5-muted); font-size: 1rem; cursor: pointer;
  padding: 6px 2px; min-height: 60px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.v7a5-nav-btn i, .v7a5-nav-btn .material-icons-outlined { font-size: 22px; }
.v7a5-nav-btn:active { transform: scale(0.9); }
.v7a5-nav-btn:hover { color: var(--v7a5-gold); }
.v7a5-nav-btn.v7a5-nav-active { color: var(--v7a5-coral); }
.v7a5-nav-btn.v7a5-nav-promo { color: var(--v7a5-gold); }
.v7a5-nav-btn.v7a5-nav-promo i { font-size: 24px; }

/* ---------- Misc ---------- */
.v7a5-text-link { color: var(--v7a5-coral); font-weight: 700; }
.v7a5-hide-desktop { display: block; }
.v7a5-content p { font-size: 1.3rem; color: var(--v7a5-muted); margin-bottom: 0.8rem; }
.v7a5-content h2 { font-size: 1.7rem; color: var(--v7a5-gold); margin: 1.4rem 0 0.6rem; }
.v7a5-content h3 { font-size: 1.45rem; color: var(--v7a5-text); margin: 1rem 0 0.4rem; }
.v7a5-content ul { margin: 0 0 1rem 1.4rem; }
.v7a5-content li { font-size: 1.25rem; color: var(--v7a5-muted); margin-bottom: 0.35rem; }

/* ---------- Responsive ---------- */
@media (min-width: 769px) {
  body { max-width: 430px; }
  .v7a5-bottom-nav { display: none; }
  .v7a5-footer { padding-bottom: 2.4rem; }
}

@media (max-width: 768px) {
  .v7a5-main { padding-bottom: 80px; }
}

@media (max-width: 360px) {
  .v7a5-grid { grid-template-columns: repeat(2, 1fr); }
  .v7a5-h1 { font-size: 1.8rem; }
}
