/**
 * JLMM - Main Stylesheet
 * Prefix: g7e6-
 * Site: jlmm.click
 * Colors: #006400 | #0E1621 | #800080 | #DDA0DD | #8A2BE2
 */

:root {
  --g7e6-primary: #006400;
  --g7e6-dark: #0E1621;
  --g7e6-purple: #800080;
  --g7e6-light: #DDA0DD;
  --g7e6-accent: #8A2BE2;
  --g7e6-bg: #0a0f18;
  --g7e6-text: #e8e0f0;
  --g7e6-text-muted: #9a8fb8;
  --g7e6-card-bg: #131a28;
  --g7e6-border: #2a1f3d;
  --g7e6-gold: #ffd700;
  --g7e6-success: #28a745;
  --g7e6-header-bg: linear-gradient(135deg, #006400 0%, #800080 100%);
  --g7e6-gradient-btn: linear-gradient(135deg, #8A2BE2 0%, #800080 100%);
  --g7e6-gradient-card: linear-gradient(145deg, #131a28 0%, #1a1028 100%);
}

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

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

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

/* ========== HEADER ========== */
.g7e6-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--g7e6-header-bg);
  z-index: 1000;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(138, 43, 226, 0.3);
}

.g7e6-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

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

.g7e6-logo-area span {
  color: var(--g7e6-gold);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
}

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

.g7e6-btn-register {
  background: var(--g7e6-gold);
  color: #0E1621;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.g7e6-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.g7e6-btn-login {
  background: transparent;
  color: var(--g7e6-light);
  border: 1.5px solid var(--g7e6-light);
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.g7e6-btn-login:hover {
  background: rgba(221, 160, 221, 0.15);
  border-color: var(--g7e6-accent);
}

.g7e6-menu-toggle {
  background: none;
  border: none;
  color: var(--g7e6-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
}

/* ========== MOBILE MENU ========== */
.g7e6-mobile-menu {
  position: fixed;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: rgba(14, 22, 33, 0.98);
  z-index: 9999;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  border-bottom: 2px solid var(--g7e6-accent);
}

.g7e6-mobile-menu ul {
  list-style: none;
  padding: 0.8rem 0;
}

.g7e6-mobile-menu li a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--g7e6-text);
  text-decoration: none;
  font-size: 1.4rem;
  border-bottom: 1px solid var(--g7e6-border);
  transition: background 0.2s, color 0.2s;
}

.g7e6-mobile-menu li a:hover {
  background: rgba(138, 43, 226, 0.15);
  color: var(--g7e6-accent);
}

/* ========== MAIN CONTENT ========== */
.g7e6-main {
  padding-top: 50px;
  padding-bottom: 1rem;
  min-height: 100vh;
}

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

/* ========== CAROUSEL ========== */
.g7e6-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

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

.g7e6-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.g7e6-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.g7e6-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.g7e6-dot-active,
.g7e6-dot:hover {
  background: var(--g7e6-gold);
}

/* ========== SECTIONS ========== */
.g7e6-section {
  padding: 1.5rem 1rem;
}

.g7e6-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--g7e6-gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--g7e6-accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.g7e6-section-title i,
.g7e6-section-title .material-icons {
  font-size: 2rem;
  color: var(--g7e6-accent);
}

.g7e6-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--g7e6-light);
  margin: 1rem 0 0.8rem;
}

.g7e6-text {
  font-size: 1.35rem;
  color: var(--g7e6-text-muted);
  line-height: 2rem;
  margin-bottom: 1rem;
}

/* ========== GAME GRID ========== */
.g7e6-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--g7e6-accent);
  margin: 1.2rem 0 0.8rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--g7e6-gold);
}

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

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

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

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

.g7e6-game-item span {
  font-size: 1rem;
  color: var(--g7e6-text-muted);
  margin-top: 0.3rem;
  text-align: center;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.g7e6-card-highlight {
  border-color: var(--g7e6-accent);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

/* ========== PROMO BUTTONS ========== */
.g7e6-promo-btn {
  display: inline-block;
  background: var(--g7e6-gradient-btn);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s;
  text-align: center;
}

.g7e6-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(138, 43, 226, 0.45);
}

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

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

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

.g7e6-testimonial-name {
  color: var(--g7e6-gold);
  font-weight: 700;
  font-size: 1.2rem;
}

.g7e6-testimonial-text {
  font-size: 1.25rem;
  color: var(--g7e6-text-muted);
  line-height: 1.8rem;
  margin-top: 0.3rem;
}

/* ========== WINNER MARQUEE ========== */
.g7e6-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--g7e6-border);
}

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

.g7e6-winner-amount {
  color: var(--g7e6-gold);
  font-size: 1.3rem;
  font-weight: 800;
}

/* ========== FOOTER ========== */
.g7e6-footer {
  background: var(--g7e6-dark);
  padding: 2rem 1rem 1.5rem;
  border-top: 2px solid var(--g7e6-purple);
}

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

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

.g7e6-footer-promos .g7e6-promo-btn {
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
}

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

.g7e6-footer-links a {
  color: var(--g7e6-text-muted);
  text-decoration: none;
  font-size: 1.15rem;
  transition: color 0.2s;
}

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

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

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

.g7e6-bnav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  background: none;
  border: none;
  color: var(--g7e6-text-muted);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 8px;
  padding: 0.3rem;
}

.g7e6-bnav-btn:hover,
.g7e6-bnav-active {
  color: var(--g7e6-accent);
  background: rgba(138, 43, 226, 0.12);
}

.g7e6-bnav-btn:active {
  transform: scale(0.9);
}

.g7e6-bnav-icon {
  font-size: 22px;
  margin-bottom: 2px;
}

.g7e6-bnav-label {
  font-size: 1rem;
  font-weight: 600;
}

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

/* ========== PAYMENT GRID ========== */
.g7e6-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.g7e6-payment-item {
  background: var(--g7e6-card-bg);
  border: 1px solid var(--g7e6-border);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  color: var(--g7e6-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 769px) {
  .g7e6-header {
    max-width: 430px;
  }
  .g7e6-main {
    max-width: 430px;
    margin: 0 auto;
  }
  .g7e6-footer {
    max-width: 430px;
    margin: 0 auto;
  }
}

/* ========== UTILITIES ========== */
.g7e6-center {
  text-align: center;
}

.g7e6-mt-1 { margin-top: 0.5rem; }
.g7e6-mt-2 { margin-top: 1rem; }
.g7e6-mb-1 { margin-bottom: 0.5rem; }
.g7e6-mb-2 { margin-bottom: 1rem; }

.g7e6-badge {
  display: inline-block;
  background: var(--g7e6-accent);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.g7e6-badge-gold {
  background: var(--g7e6-gold);
  color: #0E1621;
}

/* ========== FAQ ========== */
.g7e6-faq-item {
  background: var(--g7e6-card-bg);
  border: 1px solid var(--g7e6-border);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.8rem;
}

.g7e6-faq-q {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--g7e6-light);
  margin-bottom: 0.4rem;
}

.g7e6-faq-a {
  font-size: 1.2rem;
  color: var(--g7e6-text-muted);
  line-height: 1.7rem;
}

/* ========== REVIEW STARS ========== */
.g7e6-stars {
  color: var(--g7e6-gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

/* ========== INTERNAL LINKS ========== */
.g7e6-internal-link {
  color: var(--g7e6-accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--g7e6-accent);
  transition: color 0.2s;
}

.g7e6-internal-link:hover {
  color: var(--g7e6-gold);
  border-bottom-color: var(--g7e6-gold);
}

/* ========== APP DOWNLOAD ========== */
.g7e6-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--g7e6-gradient-btn);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.g7e6-app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}
