/**
 * ab999.click - Core Stylesheet
 * Prefix: ve2a-
 * Color palette: #EEEEEE (text) | #FA8072 (accent1) | #E9967A (accent2) | #2C3E50 (bg) | #FF1493 (highlight)
 */

/* CSS Variables */
:root {
  --ve2a-primary: #FF1493;
  --ve2a-secondary: #FA8072;
  --ve2a-accent: #E9967A;
  --ve2a-bg: #2C3E50;
  --ve2a-bg-dark: #1a252f;
  --ve2a-bg-card: #34495e;
  --ve2a-text: #EEEEEE;
  --ve2a-text-muted: #bdc3c7;
  --ve2a-white: #ffffff;
  --ve2a-radius: 0.8rem;
  --ve2a-radius-sm: 0.5rem;
  --ve2a-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.3);
  --ve2a-transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--ve2a-bg);
  color: var(--ve2a-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--ve2a-secondary); text-decoration: none; transition: var(--ve2a-transition); }
a:hover { color: var(--ve2a-primary); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.ve2a-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 5.6rem;
  background: var(--ve2a-bg-dark); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem; border-bottom: 0.2rem solid var(--ve2a-primary);
}
.ve2a-logo { display: flex; align-items: center; gap: 0.8rem; cursor: pointer; }
.ve2a-logo img { width: 3.2rem; height: 3.2rem; border-radius: 0.5rem; }
.ve2a-logo-text { font-size: 1.8rem; font-weight: 700; color: var(--ve2a-primary); }
.ve2a-header-actions { display: flex; align-items: center; gap: 0.8rem; }
.ve2a-btn-reg {
  background: var(--ve2a-primary); color: var(--ve2a-white);
  padding: 0.6rem 1.4rem; border-radius: var(--ve2a-radius-sm);
  font-size: 1.3rem; font-weight: 600; border: none; cursor: pointer;
  transition: var(--ve2a-transition);
}
.ve2a-btn-reg:hover { background: #d4127e; transform: scale(1.05); }
.ve2a-btn-login {
  background: transparent; color: var(--ve2a-secondary);
  padding: 0.6rem 1.2rem; border-radius: var(--ve2a-radius-sm);
  font-size: 1.3rem; font-weight: 600; border: 0.15rem solid var(--ve2a-secondary);
  cursor: pointer; transition: var(--ve2a-transition);
}
.ve2a-btn-login:hover { background: var(--ve2a-secondary); color: var(--ve2a-white); }
.ve2a-menu-toggle {
  background: none; border: none; color: var(--ve2a-text);
  font-size: 2.2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Menu */
.ve2a-menu-overlay {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; background: rgba(0,0,0,0.6);
  z-index: 9998;
}
.ve2a-overlay-active { display: block; }
.ve2a-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px;
  height: 100%; background: var(--ve2a-bg-dark); z-index: 9999;
  transition: right 0.3s ease; padding: 2rem 0; overflow-y: auto;
}
.ve2a-menu-active { right: 0; }
.ve2a-menu-header { padding: 0 1.5rem 1.5rem; border-bottom: 0.1rem solid var(--ve2a-bg-card); }
.ve2a-menu-close {
  background: none; border: none; color: var(--ve2a-text);
  font-size: 2.4rem; cursor: pointer; float: right;
}
.ve2a-menu-links { list-style: none; padding: 1rem 0; }
.ve2a-menu-links li a {
  display: block; padding: 1.2rem 1.5rem; color: var(--ve2a-text);
  font-size: 1.4rem; border-bottom: 0.1rem solid var(--ve2a-bg-card);
  transition: var(--ve2a-transition);
}
.ve2a-menu-links li a:hover { background: var(--ve2a-bg-card); color: var(--ve2a-primary); }

/* Main Content */
.ve2a-main { padding-top: 5.6rem; min-height: 100vh; }
@media (max-width: 768px) {
  .ve2a-main { padding-bottom: 7.5rem; }
}

/* Carousel */
.ve2a-carousel { position: relative; width: 100%; overflow: hidden; }
.ve2a-carousel-track { display: flex; transition: transform 0.5s ease; }
.ve2a-slide { min-width: 100%; cursor: pointer; position: relative; }
.ve2a-slide img { width: 100%; height: 18rem; object-fit: cover; }
.ve2a-carousel-dots {
  position: absolute; bottom: 1rem; left: 50%;
  transform: translateX(-50%); display: flex; gap: 0.6rem;
}
.ve2a-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(238,238,238,0.5); cursor: pointer;
  transition: var(--ve2a-transition);
}
.ve2a-dot-active { background: var(--ve2a-primary); transform: scale(1.3); }

/* Sections */
.ve2a-section { padding: 2rem 1.2rem; }
.ve2a-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--ve2a-primary);
  margin-bottom: 1.5rem; padding-bottom: 0.8rem;
  border-bottom: 0.2rem solid var(--ve2a-accent);
}
.ve2a-cat-label {
  font-size: 1.6rem; font-weight: 600; color: var(--ve2a-secondary);
  margin: 1.5rem 0 1rem; display: flex; align-items: center; gap: 0.6rem;
}

/* Game Grid */
.ve2a-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.ve2a-game-item {
  text-align: center; cursor: pointer; transition: var(--ve2a-transition);
  background: var(--ve2a-bg-card); border-radius: var(--ve2a-radius-sm);
  padding: 0.5rem; overflow: hidden;
}
.ve2a-game-item:hover { transform: translateY(-0.3rem); box-shadow: var(--ve2a-shadow); }
.ve2a-game-item img {
  width: 100%; aspect-ratio: 1; border-radius: 0.4rem;
  object-fit: cover; margin-bottom: 0.3rem;
}
.ve2a-game-item span {
  font-size: 1.05rem; color: var(--ve2a-text); display: block;
  line-height: 1.3; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap;
}

/* Content Blocks */
.ve2a-content-block {
  background: var(--ve2a-bg-card); border-radius: var(--ve2a-radius);
  padding: 1.5rem; margin-bottom: 1.5rem;
}
.ve2a-content-block h2 {
  font-size: 1.6rem; color: var(--ve2a-primary); margin-bottom: 1rem;
}
.ve2a-content-block h3 {
  font-size: 1.4rem; color: var(--ve2a-secondary); margin: 1rem 0 0.5rem;
}
.ve2a-content-block p {
  font-size: 1.3rem; line-height: 1.6; color: var(--ve2a-text-muted);
  margin-bottom: 0.8rem;
}
.ve2a-content-block ul { padding-left: 1.5rem; margin-bottom: 0.8rem; }
.ve2a-content-block li {
  font-size: 1.3rem; line-height: 1.6; color: var(--ve2a-text-muted);
  margin-bottom: 0.4rem;
}

/* Promo CTA */
.ve2a-cta {
  text-align: center; padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--ve2a-bg-card), var(--ve2a-bg-dark));
  border-radius: var(--ve2a-radius); margin: 1.5rem 0;
  border: 0.1rem solid var(--ve2a-primary);
}
.ve2a-cta-title { font-size: 1.6rem; font-weight: 700; color: var(--ve2a-primary); margin-bottom: 0.8rem; }
.ve2a-cta-text { font-size: 1.3rem; color: var(--ve2a-text-muted); margin-bottom: 1.2rem; }
.ve2a-cta-btn {
  display: inline-block; background: var(--ve2a-primary); color: var(--ve2a-white);
  padding: 1rem 2.5rem; border-radius: var(--ve2a-radius);
  font-size: 1.4rem; font-weight: 700; cursor: pointer;
  transition: var(--ve2a-transition); border: none;
}
.ve2a-cta-btn:hover { background: #d4127e; transform: scale(1.05); }
.ve2a-promo-link {
  color: var(--ve2a-primary); font-weight: 600; cursor: pointer;
  border-bottom: 0.1rem dashed var(--ve2a-primary);
}
.ve2a-promo-link:hover { color: var(--ve2a-secondary); }

/* Testimonials */
.ve2a-testimonial {
  background: var(--ve2a-bg-card); border-radius: var(--ve2a-radius);
  padding: 1.2rem; margin-bottom: 1rem;
  border-left: 0.3rem solid var(--ve2a-primary);
}
.ve2a-testimonial-text { font-size: 1.2rem; color: var(--ve2a-text-muted); font-style: italic; margin-bottom: 0.5rem; }
.ve2a-testimonial-author { font-size: 1.1rem; color: var(--ve2a-secondary); font-weight: 600; }

/* Winner Display */
.ve2a-winner-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem; background: var(--ve2a-bg-card);
  border-radius: var(--ve2a-radius-sm); margin-bottom: 0.6rem;
}
.ve2a-winner-avatar {
  width: 3.6rem; height: 3.6rem; border-radius: 50%;
  background: var(--ve2a-accent); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; font-weight: 700; color: var(--ve2a-white);
}
.ve2a-winner-info { flex: 1; }
.ve2a-winner-name { font-size: 1.2rem; color: var(--ve2a-text); font-weight: 600; }
.ve2a-winner-amount { font-size: 1.1rem; color: var(--ve2a-primary); }

/* Payment Methods */
.ve2a-payment-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.ve2a-payment-item {
  background: var(--ve2a-bg-card); padding: 0.8rem 1.2rem;
  border-radius: var(--ve2a-radius-sm); font-size: 1.2rem;
  color: var(--ve2a-text); border: 0.1rem solid var(--ve2a-bg);
}

/* Footer */
.ve2a-footer {
  background: var(--ve2a-bg-dark); padding: 2rem 1.2rem 1rem;
  margin-top: 2rem; border-top: 0.2rem solid var(--ve2a-primary);
}
.ve2a-footer-desc {
  font-size: 1.2rem; color: var(--ve2a-text-muted);
  line-height: 1.5; margin-bottom: 1.5rem;
}
.ve2a-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.ve2a-footer-links a {
  background: var(--ve2a-bg-card); padding: 0.5rem 1rem;
  border-radius: var(--ve2a-radius-sm); font-size: 1.1rem;
  color: var(--ve2a-text); transition: var(--ve2a-transition);
}
.ve2a-footer-links a:hover { color: var(--ve2a-primary); background: var(--ve2a-bg); }
.ve2a-footer-copy {
  text-align: center; font-size: 1.1rem; color: var(--ve2a-text-muted);
  padding-top: 1rem; border-top: 0.1rem solid var(--ve2a-bg-card);
}

/* Bottom Navigation */
.ve2a-bnav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 6rem;
  background: var(--ve2a-bg-dark); z-index: 1000;
  display: flex; align-items: center; justify-content: space-around;
  border-top: 0.2rem solid var(--ve2a-primary);
  box-shadow: 0 -0.2rem 1rem rgba(0,0,0,0.3);
}
.ve2a-bnav-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-width: 6rem; min-height: 5.5rem;
  background: none; border: none; color: var(--ve2a-text-muted);
  cursor: pointer; transition: var(--ve2a-transition); padding: 0.4rem;
}
.ve2a-bnav-btn:hover, .ve2a-bnav-active {
  color: var(--ve2a-primary);
}
.ve2a-bnav-btn:hover .ve2a-bnav-icon { transform: scale(1.15); }
.ve2a-bnav-active .ve2a-bnav-icon { color: var(--ve2a-primary); }
.ve2a-bnav-icon { font-size: 2.2rem; margin-bottom: 0.2rem; transition: var(--ve2a-transition); }
.ve2a-bnav-label { font-size: 1rem; font-weight: 500; }

/* FAQ Accordion */
.ve2a-faq-item { margin-bottom: 0.8rem; }
.ve2a-faq-q {
  background: var(--ve2a-bg-card); padding: 1.2rem;
  border-radius: var(--ve2a-radius-sm); font-size: 1.3rem;
  color: var(--ve2a-text); cursor: pointer; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.ve2a-faq-a {
  background: var(--ve2a-bg); padding: 1rem 1.2rem;
  font-size: 1.2rem; color: var(--ve2a-text-muted);
  border-radius: 0 0 var(--ve2a-radius-sm) var(--ve2a-radius-sm);
  line-height: 1.5;
}

/* Internal link style */
.ve2a-internal-link {
  color: var(--ve2a-secondary); text-decoration: underline;
  font-weight: 500; transition: var(--ve2a-transition);
}
.ve2a-internal-link:hover { color: var(--ve2a-primary); }

/* Responsive - Desktop */
@media (min-width: 769px) {
  .ve2a-bnav { display: none; }
  .ve2a-header { box-shadow: var(--ve2a-shadow); }
}
