/**
 * cv6662.click - Main Stylesheet
 * All classes use gf2e- prefix for namespace isolation
 * Color palette: #FFE135 | #000080 | #0D1117 | #F8F9FA
 * Font: Hind Siliguri
 */

/* CSS Variables */
:root {
  --gf2e-primary: #FFE135;
  --gf2e-primary-dark: #000080;
  --gf2e-bg: #0D1117;
  --gf2e-bg-light: #161B22;
  --gf2e-bg-card: #1C2333;
  --gf2e-text: #F8F9FA;
  --gf2e-text-muted: #8B949E;
  --gf2e-accent: #FFE135;
  --gf2e-accent2: #FF6B35;
  --gf2e-border: #30363D;
  --gf2e-success: #3FB950;
  --gf2e-danger: #F85149;
  --gf2e-radius: 1.2rem;
  --gf2e-radius-sm: 0.8rem;
  --gf2e-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.4);
  --gf2e-header-h: 5.6rem;
  --gf2e-bottom-h: 6.0rem;
  font-size: 62.5%;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Hind Siliguri', sans-serif;
  background: var(--gf2e-bg);
  color: var(--gf2e-text);
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: var(--gf2e-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Header */
.gf2e-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--gf2e-header-h);
  background: linear-gradient(135deg, #000080 0%, #0D1117 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  border-bottom: 0.2rem solid var(--gf2e-primary);
}
.gf2e-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.gf2e-logo-wrap img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.6rem;
}
.gf2e-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gf2e-primary);
  letter-spacing: 0.05em;
}
.gf2e-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.gf2e-btn-register {
  background: var(--gf2e-primary);
  color: #000080;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--gf2e-radius-sm);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.gf2e-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 0.2rem 0.8rem rgba(255,225,53,0.4);
}
.gf2e-btn-login {
  background: transparent;
  color: var(--gf2e-primary);
  border: 0.15rem solid var(--gf2e-primary);
  padding: 0.5rem 1.2rem;
  border-radius: var(--gf2e-radius-sm);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.gf2e-btn-login:hover { background: rgba(255,225,53,0.1); }
.gf2e-menu-btn {
  background: none;
  border: none;
  color: var(--gf2e-primary);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* Mobile Menu Overlay */
.gf2e-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.gf2e-overlay-active { opacity: 1; pointer-events: auto; }

/* Mobile Slide Menu */
.gf2e-mobile-menu {
  position: fixed;
  top: 0; right: -280px;
  width: 280px;
  height: 100%;
  background: linear-gradient(180deg, #000080, #0D1117);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.gf2e-menu-active { right: 0; }
.gf2e-menu-close {
  background: none;
  border: none;
  color: var(--gf2e-primary);
  font-size: 2.4rem;
  cursor: pointer;
  position: absolute;
  top: 1rem; right: 1rem;
}
.gf2e-menu-title {
  font-size: 1.8rem;
  color: var(--gf2e-primary);
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 0.15rem solid var(--gf2e-border);
}
.gf2e-menu-link {
  display: block;
  color: var(--gf2e-text);
  font-size: 1.5rem;
  padding: 1rem 0;
  border-bottom: 0.1rem solid var(--gf2e-border);
  transition: color 0.2s, padding-left 0.2s;
}
.gf2e-menu-link:hover {
  color: var(--gf2e-primary);
  padding-left: 0.8rem;
}

/* Main Content */
.gf2e-main {
  padding-top: calc(var(--gf2e-header-h) + 0.5rem);
  min-height: 100vh;
}
@media (max-width: 768px) {
  .gf2e-main { padding-bottom: calc(var(--gf2e-bottom-h) + 1rem); }
}

/* Carousel */
.gf2e-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--gf2e-radius) var(--gf2e-radius);
}
.gf2e-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.gf2e-slide img { width: 100%; aspect-ratio: 430/200; object-fit: cover; }
.gf2e-slide-active { display: block; }
.gf2e-carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}
.gf2e-slide-dot {
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.gf2e-dot-active { background: var(--gf2e-primary); }

/* Container / Section */
.gf2e-container { padding: 1.5rem 1.2rem; }
.gf2e-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--gf2e-bg-card);
  border-radius: var(--gf2e-radius);
  border: 0.1rem solid var(--gf2e-border);
}
.gf2e-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gf2e-primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 0.15rem solid var(--gf2e-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.gf2e-section-title i, .gf2e-section-title .material-symbols-outlined {
  font-size: 2rem;
}

/* Game Grid */
.gf2e-cat-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gf2e-accent);
  margin: 1.5rem 0 1rem;
  padding-left: 0.5rem;
  border-left: 0.3rem solid var(--gf2e-primary);
}
.gf2e-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.gf2e-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s;
}
.gf2e-game-item:hover { transform: scale(1.05); }
.gf2e-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--gf2e-radius-sm);
  border: 0.15rem solid var(--gf2e-border);
}
.gf2e-game-name {
  font-size: 1.1rem;
  color: var(--gf2e-text);
  margin-top: 0.3rem;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Promo Button */
.gf2e-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gf2e-primary), #FFD700);
  color: #000080;
  padding: 1rem 2rem;
  border-radius: var(--gf2e-radius);
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: center;
}
.gf2e-promo-btn:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.4rem 1.6rem rgba(255,225,53,0.5);
}
.gf2e-promo-text {
  color: var(--gf2e-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.gf2e-promo-text:hover { color: #FFD700; }

/* Content Text */
.gf2e-text { color: var(--gf2e-text); line-height: 1.6; margin-bottom: 1rem; }
.gf2e-text-muted { color: var(--gf2e-text-muted); }
.gf2e-highlight { color: var(--gf2e-accent); font-weight: 700; }

/* Cards */
.gf2e-card {
  background: var(--gf2e-bg-light);
  border: 0.1rem solid var(--gf2e-border);
  border-radius: var(--gf2e-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.gf2e-card:hover { border-color: var(--gf2e-primary); }

/* Winner Ticker */
.gf2e-ticker {
  background: var(--gf2e-bg-light);
  border-radius: var(--gf2e-radius-sm);
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow: hidden;
}
.gf2e-ticker-badge {
  background: var(--gf2e-danger);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  white-space: nowrap;
}

/* Footer */
.gf2e-footer {
  background: var(--gf2e-bg-light);
  border-top: 0.2rem solid var(--gf2e-primary);
  padding: 2rem 1.2rem;
  text-align: center;
}
.gf2e-footer-brand {
  color: var(--gf2e-text-muted);
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.gf2e-partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.gf2e-partner-logos span {
  background: var(--gf2e-bg-card);
  color: var(--gf2e-text-muted);
  padding: 0.4rem 1rem;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  border: 0.1rem solid var(--gf2e-border);
}
.gf2e-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.gf2e-footer-links a {
  color: var(--gf2e-text-muted);
  font-size: 1.2rem;
  transition: color 0.2s;
}
.gf2e-footer-links a:hover { color: var(--gf2e-primary); }
.gf2e-promo-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.gf2e-promo-footer button {
  background: var(--gf2e-primary);
  color: #000080;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s;
}
.gf2e-promo-footer button:hover { transform: scale(1.05); }
.gf2e-copyright {
  color: var(--gf2e-text-muted);
  font-size: 1.1rem;
  border-top: 0.1rem solid var(--gf2e-border);
  padding-top: 1rem;
}

/* Bottom Navigation */
.gf2e-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--gf2e-bottom-h);
  background: linear-gradient(180deg, #000060, #000040);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 0.2rem solid var(--gf2e-primary);
  box-shadow: 0 -0.4rem 1.2rem rgba(0,0,0,0.5);
}
.gf2e-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
  min-height: 5rem;
  background: none;
  border: none;
  color: var(--gf2e-text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, transform 0.15s;
  gap: 0.2rem;
}
.gf2e-bottom-btn:hover, .gf2e-bottom-btn:focus {
  color: var(--gf2e-primary);
  transform: scale(1.08);
}
.gf2e-bottom-btn .gf2e-bnav-icon {
  font-size: 2.4rem;
  line-height: 1;
}
.gf2e-bottom-btn .material-symbols-outlined {
  font-size: 2.4rem;
}
.gf2e-bottom-btn span:last-child {
  font-size: 1rem;
  font-weight: 600;
}
.gf2e-bottom-btn.gf2e-active-nav {
  color: var(--gf2e-primary);
}
.gf2e-bottom-btn.gf2e-active-nav::after {
  content: '';
  display: block;
  width: 2rem;
  height: 0.25rem;
  background: var(--gf2e-primary);
  border-radius: 0.2rem;
  margin-top: 0.1rem;
}

/* H1 Title */
.gf2e-h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gf2e-primary);
  text-align: center;
  margin: 1.5rem 0 1rem;
  line-height: 1.3;
}
.gf2e-h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gf2e-accent);
  margin-bottom: 1rem;
}
.gf2e-h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gf2e-text);
  margin-bottom: 0.8rem;
}

/* Lists */
.gf2e-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gf2e-text);
  line-height: 1.5;
}
.gf2e-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--gf2e-primary);
  border-radius: 50%;
}

/* FAQ */
.gf2e-faq-item {
  background: var(--gf2e-bg-light);
  border: 0.1rem solid var(--gf2e-border);
  border-radius: var(--gf2e-radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
}
.gf2e-faq-q {
  font-weight: 700;
  color: var(--gf2e-accent);
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}
.gf2e-faq-a {
  color: var(--gf2e-text-muted);
  font-size: 1.3rem;
  line-height: 1.5;
}

/* Testimonials */
.gf2e-testimonial {
  background: var(--gf2e-bg-light);
  border-left: 0.3rem solid var(--gf2e-primary);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border-radius: 0 var(--gf2e-radius-sm) var(--gf2e-radius-sm) 0;
}
.gf2e-testimonial-name {
  color: var(--gf2e-accent);
  font-weight: 700;
  font-size: 1.3rem;
}
.gf2e-testimonial-text {
  color: var(--gf2e-text-muted);
  font-size: 1.3rem;
  margin-top: 0.3rem;
}

/* Payment Methods */
.gf2e-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.gf2e-payment-item {
  background: var(--gf2e-bg-card);
  border: 0.1rem solid var(--gf2e-border);
  border-radius: var(--gf2e-radius-sm);
  padding: 0.6rem 1.2rem;
  color: var(--gf2e-text);
  font-size: 1.2rem;
  text-align: center;
}

/* Winner Showcase */
.gf2e-winner-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 0.1rem solid var(--gf2e-border);
}
.gf2e-winner-item:last-child { border-bottom: none; }
.gf2e-winner-avatar {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--gf2e-primary);
  color: #000080;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.gf2e-winner-info { flex: 1; }
.gf2e-winner-name { color: var(--gf2e-text); font-weight: 600; font-size: 1.3rem; }
.gf2e-winner-game { color: var(--gf2e-text-muted); font-size: 1.1rem; }
.gf2e-winner-amount {
  color: var(--gf2e-accent);
  font-weight: 700;
  font-size: 1.4rem;
}

/* Desktop hidden, mobile shown */
@media (min-width: 769px) {
  .gf2e-bottom-nav { display: none; }
}
@media (max-width: 768px) {
  .gf2e-main { padding-bottom: calc(var(--gf2e-bottom-h) + 1.5rem); }
}

/* Utility */
.gf2e-center { text-align: center; }
.gf2e-mt1 { margin-top: 1rem; }
.gf2e-mt2 { margin-top: 2rem; }
.gf2e-mb1 { margin-bottom: 1rem; }
.gf2e-mb2 { margin-bottom: 2rem; }
.gf2e-btn-touch { transition: transform 0.1s; }
