/* ============================================================
 * f16868 - design-3701.css
 * All classes use the "v1a1-" prefix.
 * Mobile-first, max-width 430px, rem units (root 62.5%).
 * Palette: #FF0000 | #B03060 | #F5F5F5 | #2C2C2C | #DB7093
 * ============================================================ */

:root {
  --v1a1-primary: #FF0000;
  --v1a1-secondary: #B03060;
  --v1a1-accent: #DB7093;
  --v1a1-bg: #2C2C2C;
  --v1a1-bg-dark: #1c1c1c;
  --v1a1-bg-card: #353030;
  --v1a1-text: #F5F5F5;
  --v1a1-text-muted: #d8c9cf;
  --v1a1-border: rgba(245, 245, 245, 0.12);
  --v1a1-gold: #ffd479;
  --v1a1-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  --v1a1-radius: 12px;
}

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

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: var(--v1a1-bg);
  color: var(--v1a1-text);
  line-height: 1.5;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

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

.v1a1-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 12px; }
.v1a1-wrapper { padding: 16px 12px; }
.v1a1-text-center { text-align: center; }
.v1a1-hidden { display: none !important; }

/* ---------------- Header ---------------- */
.v1a1-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: linear-gradient(135deg, #1c1c1c 0%, #3a1a24 60%, #5a0e1d 100%);
  border-bottom: 2px solid var(--v1a1-primary);
  box-shadow: var(--v1a1-shadow);
}
.v1a1-brand { display: flex; align-items: center; gap: 8px; color: var(--v1a1-text); }
.v1a1-brand img { width: 28px; height: 28px; border-radius: 6px; }
.v1a1-brand-name { font-size: 1.8rem; font-weight: 800; letter-spacing: 0.4px; }
.v1a1-brand-name span { color: var(--v1a1-primary); }
.v1a1-header-actions { display: flex; align-items: center; gap: 6px; }
.v1a1-menu-btn {
  background: transparent;
  border: 1px solid var(--v1a1-border);
  color: var(--v1a1-text);
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.v1a1-menu-btn.v1a1-active { background: var(--v1a1-primary); }

/* ---------------- Buttons ---------------- */
.v1a1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 24px;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  min-height: 36px;
}
.v1a1-btn-primary {
  background: linear-gradient(135deg, var(--v1a1-primary), var(--v1a1-secondary));
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.35);
}
.v1a1-btn-secondary {
  background: transparent;
  color: var(--v1a1-text);
  border: 1.5px solid var(--v1a1-accent);
}
.v1a1-btn-gold {
  background: linear-gradient(135deg, var(--v1a1-gold), #ff9a3c);
  color: #2C2C2C;
}
.v1a1-btn:hover { transform: translateY(-1px); }
.v1a1-btn:active { transform: scale(0.97); }

/* Promo inline text link */
.v1a1-promo-link {
  color: var(--v1a1-gold);
  font-weight: 700;
  border-bottom: 1px dashed var(--v1a1-gold);
  cursor: pointer;
}
.v1a1-promo-link:hover { color: var(--v1a1-primary); }
.v1a1-pulsing { animation: v1a1-pulse 0.45s ease; }
@keyframes v1a1-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); color: var(--v1a1-primary); }
  100% { transform: scale(1); }
}

/* ---------------- Mobile Menu Drawer ---------------- */
.v1a1-mobile-menu {
  position: fixed;
  top: 0; right: -85%;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: var(--v1a1-bg-dark);
  z-index: 9999;
  padding: 60px 18px 30px;
  overflow-y: auto;
  transition: right .28s ease;
  border-left: 2px solid var(--v1a1-primary);
}
.v1a1-mobile-menu.v1a1-menu-open { right: 0; }
.v1a1-mobile-menu h3 {
  font-size: 1.5rem;
  color: var(--v1a1-gold);
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.v1a1-mobile-menu a {
  display: block;
  padding: 10px 8px;
  color: var(--v1a1-text);
  border-bottom: 1px solid var(--v1a1-border);
  font-size: 1.45rem;
}
.v1a1-mobile-menu a:hover { color: var(--v1a1-primary); padding-left: 14px; }
.v1a1-menu-close {
  position: absolute;
  top: 12px; right: 14px;
  background: transparent;
  border: none;
  color: var(--v1a1-text);
  font-size: 2.2rem;
  cursor: pointer;
}

/* ---------------- Carousel ---------------- */
.v1a1-carousel {
  position: relative;
  width: 100%;
  margin: 12px 0;
  border-radius: var(--v1a1-radius);
  overflow: hidden;
  box-shadow: var(--v1a1-shadow);
}
.v1a1-slide {
  display: none;
  width: 100%;
  position: relative;
}
.v1a1-slide.v1a1-slide-active { display: block; }
.v1a1-slide img { width: 100%; height: 190px; object-fit: cover; }
.v1a1-slide-cta {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(0,0,0,0.55);
  color: var(--v1a1-gold);
  padding: 6px 12px;
  border-radius: 18px;
  font-size: 1.25rem;
  font-weight: 700;
}
.v1a1-dots {
  position: absolute;
  bottom: 8px; right: 10px;
  display: flex; gap: 5px;
}
.v1a1-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(245,245,245,0.45);
  cursor: pointer;
}
.v1a1-dot.v1a1-dot-active { background: var(--v1a1-primary); }

/* ---------------- Sections ---------------- */
.v1a1-section { padding: 18px 12px; }
.v1a1-section-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 4px solid var(--v1a1-primary);
  color: var(--v1a1-text);
}
.v1a1-section-title em { color: var(--v1a1-gold); font-style: normal; }
.v1a1-intro {
  font-size: 1.4rem;
  color: var(--v1a1-text-muted);
  margin-bottom: 14px;
}

/* ---------------- H1 Hero ---------------- */
.v1a1-hero {
  background: linear-gradient(135deg, #3a0d18 0%, #5a0e1d 50%, #2C2C2C 100%);
  padding: 22px 14px;
  border-radius: var(--v1a1-radius);
  margin: 12px 0;
  text-align: center;
  border: 1px solid var(--v1a1-border);
}
.v1a1-hero h1 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--v1a1-text);
  margin-bottom: 10px;
}
.v1a1-hero h1 span { color: var(--v1a1-primary); }
.v1a1-hero p { color: var(--v1a1-text-muted); font-size: 1.4rem; margin-bottom: 14px; }
.v1a1-hero-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Game Grid ---------------- */
.v1a1-game-block { margin-bottom: 24px; }
.v1a1-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.v1a1-block-head h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--v1a1-gold);
  display: flex; align-items: center; gap: 8px;
}
.v1a1-block-head h2 i { color: var(--v1a1-primary); }
.v1a1-block-more {
  font-size: 1.25rem;
  color: var(--v1a1-accent);
  font-weight: 600;
}
.v1a1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.v1a1-card {
  background: var(--v1a1-bg-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--v1a1-border);
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.v1a1-card:hover { transform: translateY(-2px); box-shadow: var(--v1a1-shadow); border-color: var(--v1a1-primary); }
.v1a1-card img { width: 100%; height: 84px; object-fit: cover; }
.v1a1-card-name {
  display: block;
  font-size: 1.15rem;
  color: var(--v1a1-text);
  padding: 5px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------------- Info / Feature cards ---------------- */
.v1a1-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.v1a1-info-card {
  background: var(--v1a1-bg-card);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  border: 1px solid var(--v1a1-border);
}
.v1a1-info-card i { font-size: 2.4rem; color: var(--v1a1-primary); margin-bottom: 6px; }
.v1a1-info-card h3 { font-size: 1.4rem; color: var(--v1a1-gold); margin-bottom: 4px; }
.v1a1-info-card p { font-size: 1.2rem; color: var(--v1a1-text-muted); }

/* ---------------- Testimonials ---------------- */
.v1a1-testimonial {
  background: var(--v1a1-bg-card);
  border-left: 3px solid var(--v1a1-gold);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}
.v1a1-testimonial p { font-size: 1.3rem; color: var(--v1a1-text); margin-bottom: 6px; }
.v1a1-testimonial cite { font-size: 1.2rem; color: var(--v1a1-accent); font-style: normal; font-weight: 700; }

/* ---------------- Winners ---------------- */
.v1a1-winners {
  background: linear-gradient(135deg, #3a0d18, #2C2C2C);
  border-radius: var(--v1a1-radius);
  padding: 12px;
  border: 1px solid var(--v1a1-border);
}
.v1a1-winner-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--v1a1-border);
  font-size: 1.25rem;
}
.v1a1-winner-row:last-child { border-bottom: none; }
.v1a1-winner-row span:first-child { color: var(--v1a1-text-muted); }
.v1a1-winner-row span:last-child { color: var(--v1a1-gold); font-weight: 700; }

/* ---------------- FAQ ---------------- */
.v1a1-faq-item {
  background: var(--v1a1-bg-card);
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid var(--v1a1-border);
  overflow: hidden;
}
.v1a1-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--v1a1-text);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v1a1-faq-q::after { content: "+"; color: var(--v1a1-primary); font-size: 1.8rem; }
.v1a1-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  color: var(--v1a1-text-muted);
  font-size: 1.28rem;
  transition: max-height .25s ease, padding .25s ease;
}
.v1a1-faq-item.v1a1-faq-open .v1a1-faq-a { max-height: 360px; padding: 0 14px 12px; }
.v1a1-faq-item.v1a1-faq-open .v1a1-faq-q::after { content: "-"; }

/* ---------------- Payment ---------------- */
.v1a1-pay-row { display: flex; flex-wrap: wrap; gap: 8px; }
.v1a1-pay-chip {
  background: var(--v1a1-bg-card);
  border: 1px solid var(--v1a1-border);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 1.2rem;
  color: var(--v1a1-text);
  display: inline-flex; align-items: center; gap: 5px;
}
.v1a1-pay-chip i { color: var(--v1a1-gold); }

/* ---------------- App download CTA ---------------- */
.v1a1-app-cta {
  background: linear-gradient(135deg, #5a0e1d, #2C2C2C);
  border-radius: var(--v1a1-radius);
  padding: 18px 14px;
  text-align: center;
  border: 1px solid var(--v1a1-primary);
}
.v1a1-app-cta h3 { font-size: 1.7rem; color: var(--v1a1-gold); margin-bottom: 8px; }
.v1a1-app-cta p { font-size: 1.3rem; color: var(--v1a1-text-muted); margin-bottom: 12px; }
.v1a1-app-btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Footer ---------------- */
.v1a1-footer {
  background: var(--v1a1-bg-dark);
  border-top: 2px solid var(--v1a1-primary);
  padding: 20px 14px 100px;
  margin-top: 14px;
}
.v1a1-footer-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--v1a1-gold);
  margin-bottom: 8px;
}
.v1a1-footer-about { font-size: 1.25rem; color: var(--v1a1-text-muted); margin-bottom: 14px; }
.v1a1-footer-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.v1a1-footer-links h4 {
  font-size: 1.4rem; color: var(--v1a1-accent);
  margin: 12px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.v1a1-footer-links ul { list-style: none; }
.v1a1-footer-links li { margin-bottom: 4px; }
.v1a1-footer-links a { font-size: 1.25rem; color: var(--v1a1-text-muted); }
.v1a1-footer-links a:hover { color: var(--v1a1-gold); }
.v1a1-copyright {
  border-top: 1px solid var(--v1a1-border);
  margin-top: 14px;
  padding-top: 12px;
  font-size: 1.15rem;
  color: var(--v1a1-text-muted);
  text-align: center;
}

/* ---------------- Bottom Nav ---------------- */
.v1a1-bottom-nav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: linear-gradient(180deg, #1c1c1c, #0d0d0d);
  border-top: 2px solid var(--v1a1-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.5);
}
.v1a1-bottom-nav-btn {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--v1a1-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 1.05rem;
  cursor: pointer;
  min-width: 60px;
  min-height: 60px;
  transition: color .2s ease, transform .15s ease;
}
.v1a1-bottom-nav-btn i,
.v1a1-bottom-nav-btn span.material-icons-outlined,
.v1a1-bottom-nav-btn ion-icon { font-size: 22px; }
.v1a1-bottom-nav-btn ion-icon { font-size: 24px; }
.v1a1-bottom-nav-btn:hover { color: var(--v1a1-gold); }
.v1a1-bottom-nav-btn:active { transform: scale(0.92); }
.v1a1-bottom-nav-btn.v1a1-nav-current { color: var(--v1a1-primary); }
.v1a1-bottom-nav-btn.v1a1-nav-current::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--v1a1-primary);
  border-radius: 3px 3px 0 0;
}
.v1a1-bottom-nav-btn { position: relative; }

/* ---------------- Back to top ---------------- */
.v1a1-to-top {
  position: fixed;
  bottom: 74px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--v1a1-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 999;
  box-shadow: var(--v1a1-shadow);
}
.v1a1-to-top.v1a1-visible { opacity: 1; visibility: visible; }

/* ---------------- Desktop ---------------- */
@media (min-width: 769px) {
  body { max-width: 430px; }
  .v1a1-bottom-nav { display: none; }
  .v1a1-footer { padding-bottom: 24px; }
}

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