/**
 * ll777 ph - Core CSS Stylesheet
 * Class prefix: v6af-
 * Color palette: #AD1457 | #2C3E50 | #4A4A4A | #3A3A3A
 * Mobile-first design, max-width 430px
 */

:root {
  --v6af-primary: #AD1457;
  --v6af-primary-dark: #880E4F;
  --v6af-primary-light: #E91E7A;
  --v6af-secondary: #2C3E50;
  --v6af-dark: #3A3A3A;
  --v6af-gray: #4A4A4A;
  --v6af-bg: #1A1A2E;
  --v6af-bg-card: #16213E;
  --v6af-bg-dark: #0F0F23;
  --v6af-text: #E8E8E8;
  --v6af-text-muted: #9E9E9E;
  --v6af-gold: #FFD700;
  --v6af-accent: #E91E63;
  --v6af-success: #4CAF50;
  --v6af-border: #2A2A4A;
  --v6af-shadow: rgba(0, 0, 0, 0.3);
  --v6af-radius: 8px;
  --v6af-radius-lg: 12px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--v6af-bg);
  color: var(--v6af-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--v6af-primary-light); text-decoration: none; }
a:hover { color: var(--v6af-gold); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.v6af-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: linear-gradient(135deg, var(--v6af-bg-dark), var(--v6af-secondary));
  border-bottom: 2px solid var(--v6af-primary);
  padding: 0 1rem;
  height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v6af-header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.v6af-header-logo img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
}
.v6af-header-logo span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v6af-gold);
  letter-spacing: 0.5px;
}
.v6af-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v6af-header-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--v6af-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.v6af-btn-register {
  background: var(--v6af-primary);
  color: #fff;
}
.v6af-btn-register:hover {
  background: var(--v6af-primary-light);
  transform: scale(1.05);
}
.v6af-btn-login {
  background: transparent;
  color: var(--v6af-text);
  border: 1px solid var(--v6af-primary);
}
.v6af-btn-login:hover {
  background: var(--v6af-primary);
  color: #fff;
}
.v6af-menu-btn {
  background: none;
  border: none;
  color: var(--v6af-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* Mobile Menu Overlay */
.v6af-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}
.v6af-overlay-active { display: block; }

/* Mobile Menu */
.v6af-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--v6af-bg-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
}
.v6af-menu-active { right: 0; }
.v6af-mobile-menu a {
  display: block;
  padding: 1rem 0;
  color: var(--v6af-text);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--v6af-border);
  transition: color 0.2s;
}
.v6af-mobile-menu a:hover {
  color: var(--v6af-gold);
}
.v6af-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--v6af-text);
  font-size: 2.2rem;
  cursor: pointer;
}

/* Main Content */
.v6af-main {
  padding-top: 5.2rem;
}
@media (max-width: 768px) {
  .v6af-main { padding-bottom: 7rem; }
}

/* Carousel */
.v6af-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--v6af-radius) var(--v6af-radius);
}
.v6af-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.v6af-slide {
  min-width: 100%;
  display: none;
  cursor: pointer;
}
.v6af-slide-active { display: block; }
.v6af-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.v6af-carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}
.v6af-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.v6af-dot-active { background: var(--v6af-primary); }
.v6af-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  font-size: 1.6rem;
  border-radius: 50%;
  z-index: 5;
}
.v6af-arrow-prev { left: 0.5rem; }
.v6af-arrow-next { right: 0.5rem; }

/* Sections */
.v6af-section {
  padding: 2rem 1.2rem;
}
.v6af-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v6af-gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v6af-section-title::before {
  content: '';
  display: inline-block;
  width: 0.4rem;
  height: 1.8rem;
  background: var(--v6af-primary);
  border-radius: 2px;
}

/* Game Grid */
.v6af-category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v6af-primary-light);
  margin: 1.5rem 0 1rem;
  padding-left: 0.4rem;
  border-left: 3px solid var(--v6af-primary);
}
.v6af-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.v6af-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
  text-align: center;
}
.v6af-game-item:hover { transform: scale(1.05); }
.v6af-game-item img {
  width: 7rem;
  height: 7rem;
  border-radius: var(--v6af-radius);
  border: 2px solid var(--v6af-border);
  object-fit: cover;
  margin-bottom: 0.3rem;
}
.v6af-game-item span {
  font-size: 1.1rem;
  color: var(--v6af-text-muted);
  line-height: 1.2rem;
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Content Cards */
.v6af-card {
  background: var(--v6af-bg-card);
  border-radius: var(--v6af-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--v6af-border);
}
.v6af-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v6af-gold);
  margin-bottom: 0.8rem;
}
.v6af-card p {
  color: var(--v6af-text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

/* Promo Button */
.v6af-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--v6af-primary), var(--v6af-primary-dark));
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-align: center;
}
.v6af-promo-btn:hover {
  background: linear-gradient(135deg, var(--v6af-primary-light), var(--v6af-primary));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(173, 20, 87, 0.4);
}

/* Promo Text Link */
.v6af-promo-link {
  color: var(--v6af-gold);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}
.v6af-promo-link:hover {
  color: var(--v6af-primary-light);
}

/* FAQ Section */
.v6af-faq-item {
  background: var(--v6af-bg-card);
  border-radius: var(--v6af-radius);
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--v6af-primary);
}
.v6af-faq-q {
  font-weight: 600;
  color: var(--v6af-gold);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.v6af-faq-a {
  color: var(--v6af-text-muted);
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Winner List */
.v6af-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: var(--v6af-bg-card);
  border-radius: var(--v6af-radius);
  margin-bottom: 0.5rem;
}
.v6af-winner-name {
  font-size: 1.2rem;
  color: var(--v6af-text);
  font-weight: 500;
}
.v6af-winner-amount {
  font-size: 1.3rem;
  color: var(--v6af-success);
  font-weight: 700;
}
.v6af-winner-game {
  font-size: 1.1rem;
  color: var(--v6af-text-muted);
}

/* Footer */
.v6af-footer {
  background: var(--v6af-bg-dark);
  padding: 2rem 1.2rem;
  border-top: 2px solid var(--v6af-primary);
}
.v6af-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}
.v6af-footer-brand p {
  color: var(--v6af-text-muted);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.v6af-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.v6af-footer-links a {
  color: var(--v6af-text-muted);
  font-size: 1.2rem;
  padding: 0.3rem 0.6rem;
}
.v6af-footer-links a:hover { color: var(--v6af-gold); }
.v6af-footer-promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.v6af-footer-promo button {
  background: var(--v6af-primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.v6af-footer-promo button:hover {
  background: var(--v6af-primary-light);
}
.v6af-footer-copy {
  text-align: center;
  color: var(--v6af-text-muted);
  font-size: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--v6af-border);
}

/* Bottom Nav */
.v6af-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 6rem;
  background: linear-gradient(180deg, var(--v6af-secondary), var(--v6af-bg-dark));
  border-top: 2px solid var(--v6af-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px var(--v6af-shadow);
}
.v6af-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
  min-height: 5rem;
  background: none;
  border: none;
  color: var(--v6af-text-muted);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0.3rem;
}
.v6af-bottom-btn:hover, .v6af-bottom-btn:focus {
  color: var(--v6af-gold);
  transform: scale(1.1);
}
.v6af-bottom-btn .v6af-nav-icon {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}
.v6af-bottom-btn .v6af-nav-label {
  font-size: 1rem;
  font-weight: 500;
}
.v6af-bottom-btn.v6af-active {
  color: var(--v6af-primary-light);
}
.v6af-bottom-btn.v6af-active .v6af-nav-label {
  color: var(--v6af-primary-light);
  font-weight: 600;
}

/* Utilities */
.v6af-text-center { text-align: center; }
.v6af-mt-1 { margin-top: 1rem; }
.v6af-mt-2 { margin-top: 2rem; }
.v6af-mb-1 { margin-bottom: 1rem; }
.v6af-mb-2 { margin-bottom: 2rem; }
.v6af-hidden { display: none; }

/* Responsive - Desktop */
@media (min-width: 769px) {
  .v6af-bottom-nav { display: none; }
}
@media (max-width: 768px) {
  body { padding-bottom: 0; }
}

/* Partners */
.v6af-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}
.v6af-partners img {
  width: 5rem;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.v6af-partners img:hover { opacity: 1; }

/* Testimonials */
.v6af-testimonial {
  background: var(--v6af-bg-card);
  border-radius: var(--v6af-radius-lg);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--v6af-border);
}
.v6af-testimonial-user {
  font-weight: 600;
  color: var(--v6af-gold);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.v6af-testimonial-text {
  color: var(--v6af-text-muted);
  font-size: 1.2rem;
  line-height: 1.5;
}
.v6af-testimonial-stars {
  color: var(--v6af-gold);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

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

/* Stats Bar */
.v6af-stats-bar {
  display: flex;
  justify-content: space-around;
  background: var(--v6af-bg-card);
  border-radius: var(--v6af-radius-lg);
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--v6af-border);
}
.v6af-stat-item {
  text-align: center;
}
.v6af-stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v6af-gold);
}
.v6af-stat-label {
  font-size: 1rem;
  color: var(--v6af-text-muted);
}

/* App Download CTA */
.v6af-app-cta {
  background: linear-gradient(135deg, var(--v6af-primary-dark), var(--v6af-secondary));
  border-radius: var(--v6af-radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--v6af-primary);
}
.v6af-app-cta h3 {
  font-size: 1.6rem;
  color: var(--v6af-gold);
  margin-bottom: 0.8rem;
}
.v6af-app-cta p {
  color: var(--v6af-text-muted);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

/* RTP Table */
.v6af-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}
.v6af-rtp-table th {
  background: var(--v6af-primary-dark);
  color: #fff;
  padding: 0.6rem 0.8rem;
  text-align: left;
  font-weight: 600;
}
.v6af-rtp-table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--v6af-border);
  color: var(--v6af-text-muted);
}
.v6af-rtp-table tr:hover td { background: rgba(173,20,87,0.1); }
.v6af-rtp-high { color: var(--v6af-success); font-weight: 600; }
