/* 2222 bet login - Theme Stylesheet */
/* Prefix: wefc6- | Dark minimalist theme */

:root {
  --wefc6-bg: #0A0A0A;
  --wefc6-primary: #20B2AA;
  --wefc6-text: #E0E0E0;
  --wefc6-text-dim: #888888;
  --wefc6-surface: #141414;
  --wefc6-surface-alt: #1A1A1A;
  --wefc6-border: #2A2A2A;
  --wefc6-glow: rgba(32,178,170,0.15);
  --wefc6-radius: 8px;
}

*, *::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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--wefc6-bg);
  color: var(--wefc6-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
}

a { color: var(--wefc6-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
.wefc6-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--wefc6-bg);
  border-bottom: 1px solid var(--wefc6-border);
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wefc6-logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.wefc6-logo-area img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 6px;
}

.wefc6-logo-area span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wefc6-primary);
  white-space: nowrap;
}

.wefc6-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wefc6-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: var(--wefc6-radius);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.wefc6-btn-primary {
  background: var(--wefc6-primary);
  color: #000;
}

.wefc6-btn-primary:hover {
  background: #1a9e97;
  text-decoration: none;
}

.wefc6-btn-outline {
  background: transparent;
  color: var(--wefc6-primary);
  border: 1px solid var(--wefc6-primary);
}

.wefc6-btn-outline:hover {
  background: var(--wefc6-glow);
  text-decoration: none;
}

.wefc6-menu-btn {
  background: none;
  border: none;
  color: var(--wefc6-primary);
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* ===== MOBILE MENU ===== */
.wefc6-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
}

.wefc6-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--wefc6-surface);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.6rem;
  overflow-y: auto;
}

.wefc6-menu-active { right: 0 !important; }
.wefc6-menu-hidden { right: -280px !important; }

.wefc6-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--wefc6-border);
}

.wefc6-menu-header span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wefc6-primary);
}

.wefc6-menu-close {
  background: none;
  border: none;
  color: var(--wefc6-text);
  font-size: 2.8rem;
  cursor: pointer;
  line-height: 1;
}

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

.wefc6-menu-nav a:hover {
  color: var(--wefc6-primary);
  text-decoration: none;
}

/* ===== MAIN CONTENT ===== */
.wefc6-main {
  padding-top: 5.6rem;
  padding-bottom: 2rem;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .wefc6-main { padding-bottom: 8rem; }
}

/* ===== CAROUSEL ===== */
.wefc6-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--wefc6-radius);
  margin: 1rem 1.2rem;
}

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

.wefc6-carousel-slide {
  min-width: 100%;
  cursor: pointer;
}

.wefc6-carousel-slide img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.wefc6-carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

.wefc6-carousel-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.wefc6-dot-active {
  background: var(--wefc6-primary) !important;
}

/* ===== SECTIONS ===== */
.wefc6-section {
  padding: 2rem 1.2rem;
}

.wefc6-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--wefc6-primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--wefc6-primary);
}

/* ===== GAME GRID ===== */
.wefc6-category-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--wefc6-text);
  margin: 1.6rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--wefc6-primary);
}

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

.wefc6-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.wefc6-game-item:hover {
  transform: scale(1.05);
}

.wefc6-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--wefc6-radius);
  border: 1px solid var(--wefc6-border);
}

.wefc6-game-item span {
  display: block;
  font-size: 1.1rem;
  color: var(--wefc6-text);
  margin-top: 0.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== CARDS ===== */
.wefc6-card {
  background: var(--wefc6-surface);
  border: 1px solid var(--wefc6-border);
  border-radius: var(--wefc6-radius);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
}

.wefc6-card h3 {
  font-size: 1.6rem;
  color: var(--wefc6-primary);
  margin-bottom: 0.8rem;
}

.wefc6-card p {
  font-size: 1.3rem;
  color: var(--wefc6-text-dim);
  line-height: 1.8rem;
}

/* ===== PROMO BANNER ===== */
.wefc6-promo-banner {
  background: linear-gradient(135deg, var(--wefc6-surface), var(--wefc6-surface-alt));
  border: 1px solid var(--wefc6-primary);
  border-radius: var(--wefc6-radius);
  padding: 2rem 1.6rem;
  text-align: center;
  margin: 1.6rem 1.2rem;
}

.wefc6-promo-banner h2 {
  font-size: 2rem;
  color: var(--wefc6-primary);
  margin-bottom: 0.8rem;
}

.wefc6-promo-banner p {
  color: var(--wefc6-text);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

/* ===== FAQ ===== */
.wefc6-faq-item {
  border-bottom: 1px solid var(--wefc6-border);
  padding: 1.2rem 0;
}

.wefc6-faq-item h4 {
  font-size: 1.4rem;
  color: var(--wefc6-primary);
  margin-bottom: 0.6rem;
}

.wefc6-faq-item p {
  font-size: 1.3rem;
  color: var(--wefc6-text-dim);
  line-height: 1.8rem;
}

/* ===== FOOTER ===== */
.wefc6-footer {
  background: var(--wefc6-surface);
  border-top: 1px solid var(--wefc6-border);
  padding: 2rem 1.2rem;
  text-align: center;
}

.wefc6-footer-desc {
  font-size: 1.2rem;
  color: var(--wefc6-text-dim);
  margin-bottom: 1.2rem;
  line-height: 1.8rem;
}

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

.wefc6-footer-links a {
  font-size: 1.2rem;
  color: var(--wefc6-primary);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--wefc6-border);
  border-radius: 4px;
  transition: all 0.2s;
}

.wefc6-footer-links a:hover {
  background: var(--wefc6-glow);
  text-decoration: none;
}

.wefc6-copyright {
  font-size: 1.1rem;
  color: var(--wefc6-text-dim);
  margin-top: 1rem;
}

/* ===== BOTTOM NAV ===== */
.wefc6-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--wefc6-surface);
  border-top: 1px solid var(--wefc6-border);
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 6rem;
  padding: 0 0.4rem;
}

.wefc6-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
  min-height: 5rem;
  background: none;
  border: none;
  color: var(--wefc6-text-dim);
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 0.2rem;
  border-radius: 8px;
  padding: 0.4rem;
}

.wefc6-bottom-nav-item:hover {
  color: var(--wefc6-primary);
  background: var(--wefc6-glow);
}

.wefc6-nav-active {
  color: var(--wefc6-primary) !important;
}

.wefc6-bottom-nav-item .wefc6-nav-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.wefc6-bottom-nav-item .wefc6-nav-label {
  font-size: 1rem;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .wefc6-bottom-nav { display: none; }
}

/* ===== UTILITIES ===== */
.wefc6-text-accent { color: var(--wefc6-primary); }
.wefc6-text-dim { color: var(--wefc6-text-dim); }
.wefc6-text-bold { font-weight: 700; }
.wefc6-mt-1 { margin-top: 0.8rem; }
.wefc6-mt-2 { margin-top: 1.6rem; }
.wefc6-mb-1 { margin-bottom: 0.8rem; }
.wefc6-mb-2 { margin-bottom: 1.6rem; }
.wefc6-center { text-align: center; }
.wefc6-flex { display: flex; }
.wefc6-flex-wrap { flex-wrap: wrap; }
.wefc6-gap-1 { gap: 0.8rem; }

/* ===== CONTENT HELPERS ===== */
.wefc6-content-block {
  padding: 1.6rem 1.2rem;
}

.wefc6-content-block h2 {
  font-size: 1.8rem;
  color: var(--wefc6-primary);
  margin-bottom: 1rem;
}

.wefc6-content-block p {
  font-size: 1.3rem;
  color: var(--wefc6-text);
  line-height: 2rem;
  margin-bottom: 0.8rem;
}

.wefc6-content-block ul {
  list-style: none;
  padding: 0;
}

.wefc6-content-block ul li {
  font-size: 1.3rem;
  color: var(--wefc6-text);
  padding: 0.4rem 0;
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.8rem;
}

.wefc6-content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--wefc6-primary);
}

.wefc6-step-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.wefc6-step-num {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--wefc6-primary);
  color: #000;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wefc6-step-content h4 {
  font-size: 1.4rem;
  color: var(--wefc6-primary);
  margin-bottom: 0.4rem;
}

.wefc6-step-content p {
  font-size: 1.2rem;
  color: var(--wefc6-text-dim);
  line-height: 1.6rem;
}

/* ===== PAYMENT METHODS ===== */
.wefc6-payment-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem 0;
}

.wefc6-payment-item {
  background: var(--wefc6-surface);
  border: 1px solid var(--wefc6-border);
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  color: var(--wefc6-text);
}

/* ===== TESTIMONIALS ===== */
.wefc6-testimonial {
  background: var(--wefc6-surface);
  border-left: 3px solid var(--wefc6-primary);
  border-radius: 0 var(--wefc6-radius) var(--wefc6-radius) 0;
  padding: 1.2rem 1.6rem;
  margin-bottom: 1rem;
}

.wefc6-testimonial p {
  font-size: 1.2rem;
  color: var(--wefc6-text);
  font-style: italic;
  margin-bottom: 0.4rem;
}

.wefc6-testimonial cite {
  font-size: 1.1rem;
  color: var(--wefc6-primary);
}

/* ===== WINNERS ===== */
.wefc6-winner-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-bottom: 1px solid var(--wefc6-border);
}

.wefc6-winner-item img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.wefc6-winner-info span {
  display: block;
  font-size: 1.2rem;
  color: var(--wefc6-text);
}

.wefc6-winner-info strong {
  color: var(--wefc6-primary);
  font-size: 1.4rem;
}

/* ===== INTERNAL LINKS IN CONTENT ===== */
.wefc6-inline-link {
  color: var(--wefc6-primary);
  font-weight: 600;
  border-bottom: 1px dashed var(--wefc6-primary);
  transition: opacity 0.2s;
}

.wefc6-inline-link:hover {
  opacity: 0.8;
  text-decoration: none;
}
