/**
 * 6888.click - Main Stylesheet
 * All classes use prefix "v687-" for namespace isolation
 * Color palette: #DCDCDC | #FFFFBA | #3A3A3A | #5D5D5D | #808080
 * Mobile-first design, max-width 430px
 */

/* CSS Variables */
:root {
  --v687-primary: #3A3A3A;
  --v687-secondary: #5D5D5D;
  --v687-accent: #FFFFBA;
  --v687-bg: #2C2C2C;
  --v687-bg-light: #353535;
  --v687-bg-card: #3E3E3E;
  --v687-text: #DCDCDC;
  --v687-text-light: #FFFFBA;
  --v687-text-muted: #808080;
  --v687-border: #4A4A4A;
  --v687-gold: #FFD700;
  --v687-green: #4CAF50;
  --v687-red: #E74C3C;
  --v687-highlight: #FFFFBA;
  --v687-shadow: rgba(0, 0, 0, 0.3);
  --v687-radius: 8px;
  --v687-radius-lg: 12px;
  --v687-transition: all 0.3s ease;
  font-size: 62.5%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--v687-bg);
  color: var(--v687-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

a {
  color: var(--v687-text-light);
  text-decoration: none;
  transition: var(--v687-transition);
}

a:hover {
  color: var(--v687-gold);
}

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

/* Container */
.v687-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.v687-wrapper {
  padding: 1.5rem 0;
}

/* Header */
.v687-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(135deg, #2A2A2A 0%, #3A3A3A 100%);
  z-index: 1000;
  border-bottom: 2px solid var(--v687-accent);
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v687-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.v687-header-logo {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.v687-header-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v687-accent);
  letter-spacing: 1px;
}

.v687-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v687-btn-register {
  background: linear-gradient(135deg, var(--v687-green), #2E7D32);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--v687-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--v687-transition);
  min-height: 36px;
  min-width: 60px;
}

.v687-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.v687-btn-login {
  background: transparent;
  color: var(--v687-accent);
  border: 1.5px solid var(--v687-accent);
  padding: 0.5rem 1rem;
  border-radius: var(--v687-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--v687-transition);
  min-height: 36px;
  min-width: 60px;
}

.v687-btn-login:hover {
  background: var(--v687-accent);
  color: var(--v687-primary);
}

.v687-menu-toggle {
  background: none;
  border: none;
  color: var(--v687-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: 0.3rem;
  line-height: 1;
}

/* Mobile Menu */
.v687-mobile-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 100vh;
  background: rgba(42, 42, 42, 0.98);
  z-index: 9999;
  padding: 6rem 2rem 2rem;
  display: none;
  animation: v687-fadeIn 0.3s ease;
}

.v687-menu-active {
  display: block !important;
}

.v687-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--v687-text);
  font-size: 2.4rem;
  cursor: pointer;
}

.v687-mobile-menu a {
  display: block;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--v687-border);
  font-size: 1.5rem;
  color: var(--v687-text);
  transition: var(--v687-transition);
}

.v687-mobile-menu a:hover {
  color: var(--v687-accent);
  padding-left: 1rem;
}

@keyframes v687-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Main Content Area */
.v687-main {
  padding-top: 5.5rem;
  padding-bottom: 1rem;
  min-height: 100vh;
}

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

/* Carousel */
.v687-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--v687-radius-lg);
  margin-bottom: 1.5rem;
}

.v687-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}

.v687-slide img {
  width: 100%;
  height: auto;
  border-radius: var(--v687-radius-lg);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.v687-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 0;
}

.v687-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v687-text-muted);
  cursor: pointer;
  transition: var(--v687-transition);
}

.v687-dot-active {
  background: var(--v687-accent);
  transform: scale(1.3);
}

/* Section Titles */
.v687-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v687-accent);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--v687-accent);
  line-height: 1.3;
}

.v687-section-title i,
.v687-section-title .material-icons {
  margin-right: 0.5rem;
}

/* Game Grid */
.v687-game-section {
  margin-bottom: 2rem;
}

.v687-game-cat-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v687-text-light);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v687-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.v687-game-item {
  text-align: center;
  cursor: pointer;
  transition: var(--v687-transition);
  border-radius: var(--v687-radius);
  padding: 0.4rem;
}

.v687-game-item:hover {
  transform: translateY(-2px);
  background: var(--v687-bg-card);
}

.v687-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--v687-radius);
  margin-bottom: 0.3rem;
}

.v687-game-name {
  font-size: 1.1rem;
  color: var(--v687-text);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Content Sections */
.v687-content-section {
  background: var(--v687-bg-light);
  border-radius: var(--v687-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--v687-border);
}

.v687-content-section h2 {
  font-size: 1.7rem;
  color: var(--v687-accent);
  margin-bottom: 1rem;
  font-weight: 700;
}

.v687-content-section h3 {
  font-size: 1.4rem;
  color: var(--v687-text-light);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.v687-content-section p {
  color: var(--v687-text);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.v687-content-section ul,
.v687-content-section ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.v687-content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: var(--v687-text);
}

/* Promo Button */
.v687-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--v687-green), #2E7D32);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: var(--v687-radius);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--v687-transition);
  text-align: center;
  margin: 0.5rem 0;
}

.v687-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.v687-promo-link {
  color: var(--v687-accent);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.v687-promo-link:hover {
  color: var(--v687-gold);
}

/* Card */
.v687-card {
  background: var(--v687-bg-card);
  border-radius: var(--v687-radius-lg);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--v687-border);
  transition: var(--v687-transition);
}

.v687-card:hover {
  border-color: var(--v687-accent);
}

/* Stats Grid */
.v687-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1rem 0;
}

.v687-stat-item {
  background: var(--v687-bg-card);
  border-radius: var(--v687-radius);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--v687-border);
}

.v687-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v687-accent);
}

.v687-stat-label {
  font-size: 1.1rem;
  color: var(--v687-text-muted);
  margin-top: 0.3rem;
}

/* Footer */
.v687-footer {
  background: linear-gradient(180deg, #2A2A2A 0%, #1E1E1E 100%);
  padding: 2rem 1.2rem 7rem;
  border-top: 2px solid var(--v687-border);
}

.v687-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.v687-footer-brand p {
  color: var(--v687-text-muted);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.v687-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.v687-footer-links a {
  background: var(--v687-bg-card);
  color: var(--v687-text);
  padding: 0.5rem 1rem;
  border-radius: var(--v687-radius);
  font-size: 1.2rem;
  border: 1px solid var(--v687-border);
  transition: var(--v687-transition);
}

.v687-footer-links a:hover {
  border-color: var(--v687-accent);
  color: var(--v687-accent);
}

.v688-footer-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.v687-footer-partners img {
  height: 24px;
  opacity: 0.6;
}

.v687-footer-copy {
  text-align: center;
  color: var(--v687-text-muted);
  font-size: 1.1rem;
  border-top: 1px solid var(--v687-border);
  padding-top: 1rem;
}

/* Bottom Navigation */
.v687-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, #2E2E2E 0%, #1E1E1E 100%);
  border-top: 1.5px solid var(--v687-accent);
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0 0.3rem;
}

.v687-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 54px;
  background: none;
  border: none;
  color: var(--v687-text-muted);
  cursor: pointer;
  transition: var(--v687-transition);
  padding: 0.4rem 0;
  border-radius: var(--v687-radius);
}

.v687-bottom-btn:hover,
.v687-bottom-btn:focus {
  color: var(--v687-accent);
  transform: scale(1.1);
}

.v687-bottom-btn-active {
  color: var(--v687-accent);
}

.v687-bottom-btn i,
.v687-bottom-btn .material-icons,
.v687-bottom-btn ion-icon,
.v687-bottom-btn bi {
  font-size: 22px;
  margin-bottom: 0.2rem;
}

.v687-bottom-btn .material-icons {
  font-size: 24px;
}

.v687-bottom-btn span {
  font-size: 1rem;
  font-weight: 500;
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
  .v687-bottom-nav {
    display: none;
  }
}

/* Desktop header adjustments */
@media (min-width: 769px) {
  .v687-header {
    max-width: 430px;
  }
  .v687-main {
    padding-bottom: 1rem;
  }
  .v687-footer {
    padding-bottom: 2rem;
  }
}

/* Testimonials */
.v687-testimonial {
  background: var(--v687-bg-card);
  border-radius: var(--v687-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--v687-accent);
}

.v687-testimonial-author {
  font-weight: 600;
  color: var(--v687-accent);
  font-size: 1.2rem;
}

.v687-testimonial-text {
  color: var(--v687-text);
  font-size: 1.2rem;
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* Winner showcase */
.v687-winner-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.v687-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--v687-bg-card);
  padding: 0.6rem 1rem;
  border-radius: var(--v687-radius);
  border: 1px solid var(--v687-border);
}

.v687-winner-name {
  color: var(--v687-accent);
  font-weight: 600;
  font-size: 1.2rem;
}

.v687-winner-amount {
  color: var(--v687-green);
  font-weight: 700;
  font-size: 1.3rem;
}

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

/* Payment methods */
.v687-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.v687-payment-item {
  background: var(--v687-bg-card);
  border: 1px solid var(--v687-border);
  border-radius: var(--v687-radius);
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  color: var(--v687-text);
  text-align: center;
  transition: var(--v687-transition);
}

.v687-payment-item:hover {
  border-color: var(--v687-accent);
  color: var(--v687-accent);
}

/* App download CTA */
.v687-app-cta {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--v687-primary), var(--v687-secondary));
  border-radius: var(--v687-radius-lg);
  border: 2px solid var(--v687-accent);
}

.v687-app-cta h3 {
  color: var(--v687-accent);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.v687-app-cta p {
  color: var(--v687-text);
  margin-bottom: 1rem;
}

.v687-app-btns {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ */
.v687-faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--v687-border);
  padding-bottom: 0.8rem;
}

.v687-faq-q {
  font-weight: 600;
  color: var(--v687-accent);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.v687-faq-a {
  color: var(--v687-text);
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Internal link */
.v687-internal-link {
  color: var(--v687-accent);
  text-decoration: underline;
  cursor: pointer;
}

.v687-internal-link:hover {
  color: var(--v687-gold);
}

/* Utility classes */
.v687-text-center { text-align: center; }
.v687-mt-1 { margin-top: 1rem; }
.v687-mb-1 { margin-bottom: 1rem; }
.v687-mb-2 { margin-bottom: 2rem; }
.v687-hidden { display: none; }
.v687-bold { font-weight: 700; }

/* Responsive text */
@media (max-width: 360px) {
  body { font-size: 1.3rem; }
  .v687-header-name { font-size: 1.4rem; }
  .v687-game-grid { grid-template-columns: repeat(3, 1fr); }
}
