/**
 * wowowin.click - Main Stylesheet
 * All classes use g6d7- prefix for namespace isolation
 * Color palette: #DA70D6 | #FF91A4 | #8A2BE2 | #6A5ACD | #0C0C0C
 */

:root {
  --g6d7-primary: #DA70D6;
  --g6d7-secondary: #FF91A4;
  --g6d7-accent: #8A2BE2;
  --g6d7-purple: #6A5ACD;
  --g6d7-bg: #0C0C0C;
  --g6d7-bg-light: #1a1a2e;
  --g6d7-bg-card: #16213e;
  --g6d7-text: #f0e6ff;
  --g6d7-text-muted: #b8a9c9;
  --g6d7-border: rgba(218, 112, 214, 0.25);
  --g6d7-gradient: linear-gradient(135deg, #8A2BE2, #DA70D6, #FF91A4);
  --g6d7-radius: 12px;
  --g6d7-radius-sm: 8px;
  --g6d7-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
  --g6d7-max-width: 430px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--g6d7-bg);
  color: var(--g6d7-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: var(--g6d7-max-width);
  margin: 0 auto;
}

/* ===== Header ===== */
.g6d7-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: var(--g6d7-max-width);
  margin: 0 auto;
  z-index: 1000;
  background: linear-gradient(180deg, #0C0C0C 0%, rgba(12,12,12,0.95) 100%);
  border-bottom: 1px solid var(--g6d7-border);
  padding: 0 1.2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
}

.g6d7-header-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.g6d7-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.g6d7-site-name {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--g6d7-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.g6d7-header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.g6d7-btn-register {
  padding: 0.6rem 1.4rem;
  background: var(--g6d7-gradient);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.g6d7-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 12px rgba(218, 112, 214, 0.5);
}

.g6d7-btn-login {
  padding: 0.6rem 1.4rem;
  background: transparent;
  color: var(--g6d7-primary);
  border: 1.5px solid var(--g6d7-primary);
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.g6d7-btn-login:hover {
  background: rgba(218, 112, 214, 0.15);
}

.g6d7-menu-toggle {
  background: none;
  border: none;
  color: var(--g6d7-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: 0.4rem;
  display: flex;
  align-items: center;
}

/* ===== Mobile Menu ===== */
.g6d7-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}

.g6d7-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: var(--g6d7-bg-light);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 2rem 1.6rem;
  overflow-y: auto;
}

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

.g6d7-mobile-menu h3 {
  font-size: 1.6rem;
  color: var(--g6d7-primary);
  margin-bottom: 1.6rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--g6d7-border);
}

.g6d7-mobile-menu a {
  display: block;
  color: var(--g6d7-text);
  text-decoration: none;
  padding: 1rem 0;
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(218,112,214,0.1);
  transition: color 0.2s;
}

.g6d7-mobile-menu a:hover {
  color: var(--g6d7-primary);
}

/* ===== Main Content ===== */
main {
  padding-top: 56px;
}

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

.g6d7-container {
  max-width: var(--g6d7-max-width);
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* ===== Carousel ===== */
.g6d7-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--g6d7-radius);
  margin: 1.2rem 0;
}

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

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

.g6d7-carousel-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--g6d7-radius);
}

.g6d7-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.g6d7-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g6d7-bg-card);
  border: 1px solid var(--g6d7-primary);
  cursor: pointer;
  transition: background 0.3s;
}

.g6d7-dot-active {
  background: var(--g6d7-primary);
}

/* ===== Section Titles ===== */
.g6d7-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 1.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--g6d7-primary);
  color: var(--g6d7-text);
}

.g6d7-section-subtitle {
  font-size: 1.4rem;
  color: var(--g6d7-text-muted);
  margin-bottom: 1.2rem;
}

/* ===== Game Grid ===== */
.g6d7-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  padding: 0.4rem 0;
}

.g6d7-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.g6d7-game-item:hover {
  transform: translateY(-2px);
}

.g6d7-game-item img {
  width: 72px;
  height: 72px;
  border-radius: var(--g6d7-radius-sm);
  object-fit: cover;
  border: 2px solid var(--g6d7-border);
  transition: border-color 0.2s;
}

.g6d7-game-item:hover img {
  border-color: var(--g6d7-primary);
}

.g6d7-game-item span {
  font-size: 1.1rem;
  margin-top: 0.4rem;
  color: var(--g6d7-text-muted);
  line-height: 1.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Category Tag ===== */
.g6d7-category-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(138, 43, 226, 0.2);
  color: var(--g6d7-primary);
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.g6d7-card h3 {
  font-size: 1.4rem;
  color: var(--g6d7-secondary);
  margin-bottom: 0.6rem;
}

.g6d7-card p {
  font-size: 1.3rem;
  line-height: 1.6rem;
  color: var(--g6d7-text-muted);
  margin-bottom: 0.8rem;
}

/* ===== Promo Button ===== */
.g6d7-promo-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--g6d7-gradient);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.g6d7-promo-btn:hover {
  transform: scale(1.03);
  box-shadow: var(--g6d7-shadow);
}

.g6d7-promo-text {
  color: var(--g6d7-primary);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}

.g6d7-promo-text:hover {
  color: var(--g6d7-secondary);
}

/* ===== FAQ ===== */
.g6d7-faq-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(218,112,214,0.1);
}

.g6d7-faq-item strong {
  display: block;
  font-size: 1.3rem;
  color: var(--g6d7-secondary);
  margin-bottom: 0.4rem;
}

.g6d7-faq-item p {
  font-size: 1.2rem;
  color: var(--g6d7-text-muted);
  line-height: 1.5rem;
}

/* ===== Footer ===== */
.g6d7-footer {
  background: var(--g6d7-bg-light);
  padding: 2rem 1.2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--g6d7-border);
}

.g6d7-footer-brand {
  font-size: 1.3rem;
  color: var(--g6d7-text-muted);
  line-height: 1.6rem;
  margin-bottom: 1.2rem;
}

.g6d7-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.g6d7-footer-links a {
  color: var(--g6d7-primary);
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  background: rgba(138,43,226,0.15);
  border-radius: 6px;
  transition: background 0.2s;
}

.g6d7-footer-links a:hover {
  background: rgba(138,43,226,0.3);
}

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

.g6d7-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.g6d7-footer-promos button {
  padding: 0.5rem 1.2rem;
  background: var(--g6d7-gradient);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.g6d7-footer-promos button:hover {
  transform: scale(1.05);
}

/* ===== Bottom Navigation ===== */
.g6d7-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: var(--g6d7-max-width);
  margin: 0 auto;
  height: 60px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0C0C0C 100%);
  border-top: 1px solid var(--g6d7-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 0 0.4rem;
}

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

.g6d7-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  background: none;
  border: none;
  color: var(--g6d7-text-muted);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 0.4rem;
  position: relative;
}

.g6d7-bottom-nav-btn:hover,
.g6d7-bottom-nav-btn:focus {
  color: var(--g6d7-primary);
  transform: scale(1.1);
}

.g6d7-bottom-nav-btn .g6d7-nav-icon {
  font-size: 2.2rem;
  height: 24px;
  line-height: 24px;
  margin-bottom: 0.2rem;
}

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

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

.g6d7-nav-active .g6d7-nav-icon,
.g6d7-nav-active .g6d7-nav-label {
  color: var(--g6d7-primary);
}

/* ===== Utility ===== */
.g6d7-text-center { text-align: center; }
.g6d7-mt-1 { margin-top: 0.8rem; }
.g6d7-mt-2 { margin-top: 1.6rem; }
.g6d7-mb-1 { margin-bottom: 0.8rem; }
.g6d7-mb-2 { margin-bottom: 1.6rem; }

.g6d7-highlight-box {
  background: linear-gradient(135deg, rgba(138,43,226,0.2), rgba(218,112,214,0.15));
  border: 1px solid var(--g6d7-border);
  border-radius: var(--g6d7-radius);
  padding: 1.4rem;
  margin: 1.2rem 0;
}

.g6d7-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1rem 0;
}

.g6d7-stat-item {
  text-align: center;
  padding: 1rem 0.6rem;
  background: rgba(138,43,226,0.12);
  border-radius: var(--g6d7-radius-sm);
  border: 1px solid var(--g6d7-border);
}

.g6d7-stat-item .g6d7-stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--g6d7-primary);
  display: block;
}

.g6d7-stat-item .g6d7-stat-label {
  font-size: 1rem;
  color: var(--g6d7-text-muted);
  margin-top: 0.2rem;
  display: block;
}

/* ===== Testimonials ===== */
.g6d7-testimonial {
  background: var(--g6d7-bg-card);
  border-radius: var(--g6d7-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--g6d7-secondary);
}

.g6d7-testimonial .g6d7-t-name {
  font-weight: 700;
  color: var(--g6d7-primary);
  font-size: 1.2rem;
}

.g6d7-testimonial .g6d7-t-text {
  font-size: 1.2rem;
  color: var(--g6d7-text-muted);
  margin-top: 0.4rem;
  line-height: 1.5rem;
}

/* ===== Winner Ticker ===== */
.g6d7-winner-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.g6d7-winner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  background: rgba(218,112,214,0.08);
  border-radius: var(--g6d7-radius-sm);
  font-size: 1.2rem;
}

.g6d7-winner-row .g6d7-w-name {
  color: var(--g6d7-secondary);
  font-weight: 600;
}

.g6d7-winner-row .g6d7-w-game {
  color: var(--g6d7-text-muted);
}

.g6d7-winner-row .g6d7-w-amount {
  color: #4ade80;
  font-weight: 700;
}

/* ===== Payment Icons ===== */
.g6d7-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 1rem 0;
}

.g6d7-payment-item {
  padding: 0.6rem 1.2rem;
  background: var(--g6d7-bg-card);
  border-radius: var(--g6d7-radius-sm);
  border: 1px solid var(--g6d7-border);
  font-size: 1.2rem;
  color: var(--g6d7-text-muted);
}

/* ===== App Download Section ===== */
.g6d7-app-section {
  text-align: center;
  padding: 2rem 1.2rem;
  background: linear-gradient(135deg, rgba(138,43,226,0.15), rgba(255,145,164,0.1));
  border-radius: var(--g6d7-radius);
  margin: 1.5rem 0;
}

.g6d7-app-section h3 {
  font-size: 1.6rem;
  color: var(--g6d7-primary);
  margin-bottom: 0.8rem;
}

.g6d7-app-section p {
  font-size: 1.2rem;
  color: var(--g6d7-text-muted);
  margin-bottom: 1rem;
}

.g6d7-download-btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--g6d7-gradient);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  margin: 0.4rem;
  transition: transform 0.2s;
}

.g6d7-download-btn:hover {
  transform: scale(1.05);
}

/* ===== Desktop bottom nav hidden ===== */
@media (min-width: 769px) {
  .g6d7-bottom-nav {
    display: none;
  }
  main {
    padding-bottom: 0;
  }
}
