/**
 * fb775.cfd - Main Stylesheet
 * Prefix: v6e3-
 * Color Palette: #CED4DA | #0A0A0A | #F4A460 | #DEB887
 * Mobile-first design, max-width: 430px
 */

/* === Root Variables === */
:root {
  --v6e3-bg-dark: #0A0A0A;
  --v6e3-bg-card: #1A1A1A;
  --v6e3-bg-section: #141414;
  --v6e3-text-light: #CED4DA;
  --v6e3-text-muted: #8B9DAF;
  --v6e3-accent-gold: #F4A460;
  --v6e3-accent-sand: #DEB887;
  --v6e3-accent-warm: #E8A84C;
  --v6e3-gradient-hero: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
  --v6e3-gradient-gold: linear-gradient(135deg, #F4A460 0%, #DEB887 100%);
  --v6e3-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --v6e3-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --v6e3-shadow-gold: 0 4px 20px rgba(244, 164, 96, 0.2);
  --v6e3-radius-sm: 8px;
  --v6e3-radius-md: 12px;
  --v6e3-radius-lg: 16px;
  --v6e3-radius-full: 50%;
  --v6e3-transition: all 0.3s ease;
  --v6e3-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --v6e3-header-h: 56px;
  --v6e3-bottom-h: 60px;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--v6e3-font-primary);
  font-size: 1.4rem;
  line-height: 1.5rem;
  color: var(--v6e3-text-light);
  background: var(--v6e3-bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
}

a {
  color: var(--v6e3-accent-gold);
  text-decoration: none;
  transition: var(--v6e3-transition);
}

a:hover {
  color: var(--v6e3-accent-sand);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* === Container === */
.v6e3-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
}

.v6e3-wrapper {
  padding: 16px 0;
}

/* === Header === */
.v6e3-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--v6e3-header-h);
  background: var(--v6e3-bg-dark);
  border-bottom: 1px solid rgba(244, 164, 96, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.v6e3-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--v6e3-gradient-gold);
  opacity: 0.3;
}

.v6e3-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v6e3-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.v6e3-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--v6e3-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v6e3-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v6e3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--v6e3-radius-sm);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--v6e3-transition);
  border: none;
  outline: none;
  min-height: 36px;
  min-width: 44px;
  touch-action: manipulation;
}

.v6e3-btn-register {
  background: var(--v6e3-gradient-gold);
  color: var(--v6e3-bg-dark);
  box-shadow: var(--v6e3-shadow-gold);
}

.v6e3-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(244, 164, 96, 0.4);
}

.v6e3-btn-login {
  background: transparent;
  color: var(--v6e3-accent-gold);
  border: 1px solid var(--v6e3-accent-gold);
}

.v6e3-btn-login:hover {
  background: rgba(244, 164, 96, 0.1);
}

.v6e3-menu-toggle {
  background: none;
  border: none;
  color: var(--v6e3-text-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Mobile Menu === */
.v6e3-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--v6e3-transition);
}

.v6e3-overlay-active {
  opacity: 1;
  visibility: visible;
}

.v6e3-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--v6e3-bg-dark);
  z-index: 9999;
  transition: right 0.35s ease;
  padding: 20px 16px;
  border-left: 1px solid rgba(244, 164, 96, 0.2);
  overflow-y: auto;
}

.v6e3-menu-active {
  right: 0;
}

.v6e3-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(244, 164, 96, 0.15);
}

.v6e3-menu-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v6e3-accent-gold);
}

.v6e3-menu-close {
  background: none;
  border: none;
  color: var(--v6e3-text-light);
  font-size: 2rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v6e3-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v6e3-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: var(--v6e3-text-light);
  font-size: 1.3rem;
  border-radius: var(--v6e3-radius-sm);
  transition: var(--v6e3-transition);
  cursor: pointer;
}

.v6e3-menu-link:hover,
.v6e3-menu-link:focus {
  background: rgba(244, 164, 96, 0.1);
  color: var(--v6e3-accent-gold);
}

.v6e3-menu-link i,
.v6e3-menu-link .material-icons-outlined {
  font-size: 2rem;
  width: 24px;
  text-align: center;
}

/* === Main Content === */
.v6e3-main {
  padding-top: var(--v6e3-header-h);
  min-height: 100vh;
}

/* === Carousel === */
.v6e3-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--v6e3-radius-md) var(--v6e3-radius-md);
}

.v6e3-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.v6e3-carousel-slide {
  min-width: 100%;
  cursor: pointer;
  position: relative;
}

.v6e3-carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.v6e3-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.v6e3-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--v6e3-radius-full);
  background: rgba(206, 212, 218, 0.4);
  cursor: pointer;
  transition: var(--v6e3-transition);
  border: none;
  padding: 0;
}

.v6e3-dot-active {
  background: var(--v6e3-accent-gold);
  width: 20px;
  border-radius: 4px;
}

/* === Section Titles === */
.v6e3-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 4px;
  color: var(--v6e3-text-light);
  position: relative;
}

.v6e3-section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--v6e3-gradient-gold);
  margin-top: 8px;
  border-radius: 2px;
}

.v6e3-section-subtitle {
  font-size: 1.3rem;
  color: var(--v6e3-text-muted);
  margin-bottom: 16px;
}

/* === Game Sections === */
.v6e3-game-section {
  padding: 16px 0;
}

.v6e3-game-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v6e3-accent-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v6e3-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.v6e3-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  border-radius: var(--v6e3-radius-sm);
  background: var(--v6e3-bg-card);
  cursor: pointer;
  transition: var(--v6e3-transition);
  border: 1px solid transparent;
}

.v6e3-game-card:hover {
  border-color: rgba(244, 164, 96, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--v6e3-shadow-gold);
}

.v6e3-game-card img {
  width: 56px;
  height: 56px;
  border-radius: var(--v6e3-radius-sm);
  margin-bottom: 6px;
  object-fit: cover;
}

.v6e3-game-name {
  font-size: 1rem;
  color: var(--v6e3-text-light);
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

/* === H1 Title === */
.v6e3-h1-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  padding: 16px 12px;
  background: var(--v6e3-gradient-hero);
  color: var(--v6e3-text-light);
}

.v6e3-h1-title span {
  background: var(--v6e3-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Content Modules === */
.v6e3-module {
  background: var(--v6e3-bg-section);
  border-radius: var(--v6e3-radius-md);
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(244, 164, 96, 0.08);
}

.v6e3-module-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v6e3-accent-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v6e3-module p {
  color: var(--v6e3-text-muted);
  line-height: 1.8rem;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.v6e3-promo-text {
  display: inline;
  color: var(--v6e3-accent-gold);
  font-weight: 600;
  cursor: pointer;
}

.v6e3-promo-text:hover {
  color: var(--v6e3-accent-sand);
  text-decoration: underline;
}

.v6e3-promo-btn {
  display: inline-block;
  background: var(--v6e3-gradient-gold);
  color: var(--v6e3-bg-dark);
  padding: 10px 24px;
  border-radius: var(--v6e3-radius-sm);
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--v6e3-transition);
  text-align: center;
  border: none;
}

.v6e3-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--v6e3-shadow-gold);
}

/* === Winners Component === */
.v6e3-winners-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v6e3-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--v6e3-bg-card);
  border-radius: var(--v6e3-radius-sm);
  border-left: 3px solid var(--v6e3-accent-gold);
}

.v6e3-winner-info {
  display: flex;
  flex-direction: column;
}

.v6e3-winner-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--v6e3-text-light);
}

.v6e3-winner-game {
  font-size: 1rem;
  color: var(--v6e3-text-muted);
}

.v6e3-winner-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--v6e3-accent-gold);
}

/* === Testimonials === */
.v6e3-testimonial {
  padding: 12px;
  background: var(--v6e3-bg-card);
  border-radius: var(--v6e3-radius-sm);
  margin-bottom: 10px;
  border-left: 3px solid var(--v6e3-accent-sand);
}

.v6e3-testimonial-text {
  font-size: 1.2rem;
  color: var(--v6e3-text-muted);
  line-height: 1.6rem;
  margin-bottom: 6px;
  font-style: italic;
}

.v6e3-testimonial-author {
  font-size: 1.1rem;
  color: var(--v6e3-accent-gold);
  font-weight: 600;
}

/* === Payment Icons === */
.v6e3-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.v6e3-payment-item {
  padding: 6px 12px;
  background: var(--v6e3-bg-card);
  border-radius: var(--v6e3-radius-sm);
  font-size: 1.1rem;
  color: var(--v6e3-text-muted);
  border: 1px solid rgba(206, 212, 218, 0.1);
}

/* === Footer === */
.v6e3-footer {
  background: var(--v6e3-bg-section);
  padding: 24px 16px;
  margin-top: 24px;
  border-top: 1px solid rgba(244, 164, 96, 0.15);
}

.v6e3-footer-brand {
  font-size: 1.3rem;
  color: var(--v6e3-text-muted);
  line-height: 1.8rem;
  margin-bottom: 16px;
}

.v6e3-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.v6e3-footer-link {
  padding: 6px 14px;
  background: var(--v6e3-bg-card);
  border-radius: var(--v6e3-radius-sm);
  font-size: 1.1rem;
  color: var(--v6e3-text-light);
  cursor: pointer;
  transition: var(--v6e3-transition);
}

.v6e3-footer-link:hover {
  background: rgba(244, 164, 96, 0.15);
  color: var(--v6e3-accent-gold);
}

.v6e3-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.v6e3-footer-nav a {
  font-size: 1.2rem;
  color: var(--v6e3-text-muted);
}

.v6e3-footer-nav a:hover {
  color: var(--v6e3-accent-gold);
}

.v6e3-copyright {
  font-size: 1.1rem;
  color: var(--v6e3-text-muted);
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(206, 212, 218, 0.1);
}

/* === Bottom Navigation === */
.v6e3-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--v6e3-bottom-h);
  background: var(--v6e3-bg-dark);
  border-top: 1px solid rgba(244, 164, 96, 0.2);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 0 4px;
}

.v6e3-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 48px;
  background: none;
  border: none;
  color: var(--v6e3-text-muted);
  cursor: pointer;
  transition: var(--v6e3-transition);
  padding: 4px 0;
  touch-action: manipulation;
  gap: 2px;
}

.v6e3-bottom-btn i,
.v6e3-bottom-btn .material-icons-outlined,
.v6e3-bottom-btn ion-icon,
.v6e3-bottom-btn bi {
  font-size: 22px;
}

.v6e3-bottom-btn span {
  font-size: 1rem;
  white-space: nowrap;
}

.v6e3-bottom-btn:hover {
  color: var(--v6e3-accent-gold);
}

.v6e3-bottom-btn:active {
  transform: scale(0.9);
}

.v6e3-bottom-active {
  color: var(--v6e3-accent-gold) !important;
}

.v6e3-bottom-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--v6e3-accent-gold);
  border-radius: 0 0 2px 2px;
}

/* === FAQ Section === */
.v6e3-faq-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(206, 212, 218, 0.1);
}

.v6e3-faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--v6e3-text-light);
  margin-bottom: 6px;
}

.v6e3-faq-answer {
  font-size: 1.2rem;
  color: var(--v6e3-text-muted);
  line-height: 1.6rem;
}

/* === Utilities === */
.v6e3-text-center {
  text-align: center;
}

.v6e3-mt-8 {
  margin-top: 8px;
}

.v6e3-mt-16 {
  margin-top: 16px;
}

.v6e3-mb-8 {
  margin-bottom: 8px;
}

.v6e3-mb-16 {
  margin-bottom: 16px;
}

.v6e3-py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.v6e3-hidden {
  display: none;
}

/* === Mobile Bottom Padding === */
@media (max-width: 768px) {
  .v6e3-main {
    padding-bottom: 80px;
  }
}

/* === Desktop: Hide bottom nav, show wider layout === */
@media (min-width: 769px) {
  .v6e3-bottom-nav {
    display: none;
  }

  body {
    max-width: 430px;
  }
}

/* === Animations === */
@keyframes v6e3-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.v6e3-animate-in {
  animation: v6e3-fadeIn 0.4s ease forwards;
}

/* === Badge === */
.v6e3-badge {
  display: inline-block;
  background: var(--v6e3-accent-gold);
  color: var(--v6e3-bg-dark);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.2;
}

/* === Rating Stars === */
.v6e3-stars {
  color: var(--v6e3-accent-gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
}
