/**
 * luckypot.css - Core Stylesheet
 * All classes use g20a- prefix for namespace isolation
 * Color palette: #0E1621 | #FF1493 | #708090 | #FFC0CB | #C71585
 * Site: luckypot.cfd
 */

:root {
  --g20a-bg: #0E1621;
  --g20a-primary: #FF1493;
  --g20a-secondary: #C71585;
  --g20a-muted: #708090;
  --g20a-light: #FFC0CB;
  --g20a-text: #f0f0f0;
  --g20a-card: #151f2e;
  --g20a-card-hover: #1a2738;
  --g20a-border: #2a3a4e;
  --g20a-radius: 10px;
  --g20a-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Base reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--g20a-bg);
  color: var(--g20a-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Header */
.g20a-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, #0E1621 0%, #162030 100%);
  border-bottom: 2px solid var(--g20a-primary);
  max-width: 430px; margin: 0 auto;
  padding: 0 1.2rem; height: 5.4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.g20a-logo-area { display: flex; align-items: center; gap: 0.8rem; }
.g20a-logo-area img { width: 3rem; height: 3rem; border-radius: 6px; }
.g20a-logo-area span { font-size: 1.8rem; font-weight: 700; color: var(--g20a-primary); letter-spacing: 0.5px; }
.g20a-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.g20a-btn-register {
  background: linear-gradient(135deg, var(--g20a-primary), var(--g20a-secondary));
  color: #fff; border: none; padding: 0.7rem 1.4rem; border-radius: 20px;
  font-size: 1.3rem; font-weight: 600; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.g20a-btn-register:hover { transform: scale(1.05); box-shadow: 0 0 12px rgba(255,20,147,0.5); }
.g20a-btn-login {
  background: transparent; color: var(--g20a-light); border: 1.5px solid var(--g20a-light);
  padding: 0.6rem 1.2rem; border-radius: 20px; font-size: 1.2rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.g20a-btn-login:hover { background: var(--g20a-light); color: var(--g20a-bg); }
.g20a-menu-toggle {
  background: none; border: none; color: var(--g20a-light); font-size: 2.2rem;
  cursor: pointer; padding: 0.4rem; display: flex; align-items: center;
}

/* Mobile menu overlay */
.g20a-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9998;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.g20a-overlay-active { opacity: 1; visibility: visible; }

/* Mobile slide menu */
.g20a-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: linear-gradient(180deg, #0E1621, #162030);
  z-index: 9999; transition: right 0.3s ease; padding: 2rem 1.5rem;
  border-left: 2px solid var(--g20a-primary);
}
.g20a-menu-active { right: 0; }
.g20a-mobile-menu .g20a-menu-close {
  background: none; border: none; color: var(--g20a-light); font-size: 2.4rem;
  cursor: pointer; position: absolute; top: 1rem; right: 1.2rem;
}
.g20a-mobile-menu ul { margin-top: 3rem; }
.g20a-mobile-menu li { margin-bottom: 0.3rem; }
.g20a-mobile-menu a {
  display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1rem;
  color: var(--g20a-text); font-size: 1.4rem; border-radius: 8px;
  transition: background 0.2s;
}
.g20a-mobile-menu a:hover { background: var(--g20a-card-hover); color: var(--g20a-primary); }
.g20a-mobile-menu .g20a-menu-icon { font-size: 1.8rem; width: 2.4rem; text-align: center; }

/* Main content spacing */
.g20a-main { padding-top: 6.4rem; }

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

/* Section styles */
.g20a-section { padding: 2rem 1.4rem; }
.g20a-section-title {
  font-size: 1.8rem; font-weight: 700; margin-bottom: 1.4rem;
  color: var(--g20a-primary); position: relative; padding-left: 1.2rem;
}
.g20a-section-title::before {
  content: ''; position: absolute; left: 0; top: 0.2rem;
  width: 4px; height: 1.6rem; background: var(--g20a-secondary); border-radius: 2px;
}

/* Game grid */
.g20a-game-category { margin-bottom: 2rem; }
.g20a-category-label {
  font-size: 1.4rem; font-weight: 600; color: var(--g20a-light);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem;
}
.g20a-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem;
}
.g20a-game-item {
  display: flex; flex-direction: column; align-items: center;
  background: var(--g20a-card); border-radius: 10px; padding: 0.8rem 0.4rem;
  cursor: pointer; transition: all 0.25s; border: 1px solid transparent;
}
.g20a-game-item:hover {
  background: var(--g20a-card-hover); border-color: var(--g20a-primary);
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,20,147,0.2);
}
.g20a-game-item img {
  width: 5.2rem; height: 5.2rem; border-radius: 8px; margin-bottom: 0.4rem;
  object-fit: cover;
}
.g20a-game-item span {
  font-size: 1rem; color: var(--g20a-text); text-align: center;
  line-height: 1.2rem; max-width: 100%; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}

/* Content card */
.g20a-card {
  background: var(--g20a-card); border-radius: var(--g20a-radius);
  padding: 1.6rem; margin-bottom: 1.4rem; border: 1px solid var(--g20a-border);
}
.g20a-card h2 { font-size: 1.6rem; color: var(--g20a-primary); margin-bottom: 1rem; }
.g20a-card h3 { font-size: 1.4rem; color: var(--g20a-light); margin-bottom: 0.8rem; }
.g20a-card p { font-size: 1.3rem; color: var(--g20a-text); line-height: 1.8rem; margin-bottom: 0.8rem; }

/* Promo CTA */
.g20a-cta {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--g20a-primary), var(--g20a-secondary));
  color: #fff; padding: 1.4rem; border-radius: 30px; font-size: 1.6rem;
  font-weight: 700; cursor: pointer; margin: 1.5rem 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255,20,147,0.3);
}
.g20a-cta:hover { transform: scale(1.03); box-shadow: 0 6px 24px rgba(255,20,147,0.5); }

/* Promo text link */
.g20a-text-link {
  color: var(--g20a-primary); font-weight: 600; cursor: pointer;
  border-bottom: 1px dashed var(--g20a-primary); transition: color 0.2s;
}
.g20a-text-link:hover { color: var(--g20a-light); }

/* Feature list */
.g20a-feature-list { display: flex; flex-direction: column; gap: 1rem; }
.g20a-feature-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1rem;
  background: var(--g20a-card); border-radius: 8px; border-left: 3px solid var(--g20a-primary);
}
.g20a-feature-item .g20a-feature-icon { font-size: 2.2rem; color: var(--g20a-primary); min-width: 2.4rem; text-align: center; }
.g20a-feature-item h4 { font-size: 1.3rem; color: var(--g20a-light); margin-bottom: 0.3rem; }
.g20a-feature-item p { font-size: 1.2rem; color: var(--g20a-muted); line-height: 1.5rem; }

/* Winner showcase */
.g20a-winner-list { display: flex; flex-direction: column; gap: 0.8rem; }
.g20a-winner-item {
  display: flex; align-items: center; gap: 1rem; padding: 0.8rem 1rem;
  background: var(--g20a-card); border-radius: 8px; border: 1px solid var(--g20a-border);
}
.g20a-winner-avatar {
  width: 3.6rem; height: 3.6rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--g20a-primary), var(--g20a-secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; font-weight: 700;
}
.g20a-winner-info { flex: 1; }
.g20a-winner-name { font-size: 1.2rem; color: var(--g20a-light); font-weight: 600; }
.g20a-winner-game { font-size: 1.1rem; color: var(--g20a-muted); }
.g20a-winner-amount { font-size: 1.4rem; color: var(--g20a-primary); font-weight: 700; }

/* Payment methods */
.g20a-payment-grid {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}
.g20a-payment-item {
  background: var(--g20a-card); border: 1px solid var(--g20a-border);
  border-radius: 8px; padding: 0.8rem 1.4rem; font-size: 1.2rem;
  color: var(--g20a-light); display: flex; align-items: center; gap: 0.6rem;
}

/* Testimonials */
.g20a-testimonial {
  background: var(--g20a-card); border-radius: var(--g20a-radius);
  padding: 1.4rem; margin-bottom: 1rem; border-left: 3px solid var(--g20a-secondary);
}
.g20a-testimonial-text { font-size: 1.3rem; color: var(--g20a-text); line-height: 1.7rem; margin-bottom: 0.8rem; font-style: italic; }
.g20a-testimonial-author { font-size: 1.1rem; color: var(--g20a-primary); font-weight: 600; }

/* App download */
.g20a-app-banner {
  background: linear-gradient(135deg, #162030, #0E1621);
  border: 1px solid var(--g20a-primary); border-radius: var(--g20a-radius);
  padding: 2rem 1.4rem; text-align: center;
}
.g20a-app-banner h3 { font-size: 1.6rem; color: var(--g20a-primary); margin-bottom: 0.8rem; }
.g20a-app-banner p { font-size: 1.3rem; color: var(--g20a-text); margin-bottom: 1.2rem; }
.g20a-app-btn {
  display: inline-block; padding: 1rem 2.4rem; border-radius: 25px;
  background: linear-gradient(135deg, var(--g20a-primary), var(--g20a-secondary));
  color: #fff; font-size: 1.4rem; font-weight: 600; cursor: pointer;
  transition: transform 0.2s;
}
.g20a-app-btn:hover { transform: scale(1.05); }

/* Footer */
.g20a-footer {
  background: #0a0f18; padding: 2rem 1.4rem 10rem;
  border-top: 2px solid var(--g20a-primary);
}
.g20a-footer-brand { font-size: 1.3rem; color: var(--g20a-muted); line-height: 1.7rem; margin-bottom: 1.4rem; }
.g20a-footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.4rem; }
.g20a-footer-link {
  background: var(--g20a-card); color: var(--g20a-light); padding: 0.6rem 1.2rem;
  border-radius: 6px; font-size: 1.1rem; cursor: pointer;
  transition: background 0.2s; border: 1px solid var(--g20a-border);
}
.g20a-footer-link:hover { background: var(--g20a-primary); color: #fff; border-color: var(--g20a-primary); }
.g20a-footer-copy { font-size: 1.1rem; color: var(--g20a-muted); text-align: center; margin-top: 1.4rem; }

/* Bottom mobile nav */
.g20a-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #0E1621, #0a0f18);
  border-top: 2px solid var(--g20a-border);
  display: flex; justify-content: space-around; align-items: center;
  height: 6rem; max-width: 430px; margin: 0 auto;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.5);
}
.g20a-bottom-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 6rem; min-height: 5.2rem; background: none; border: none;
  color: var(--g20a-muted); cursor: pointer; transition: all 0.25s;
  border-radius: 8px; padding: 0.4rem;
}
.g20a-bottom-btn:hover, .g20a-bottom-active {
  color: var(--g20a-primary); background: rgba(255,20,147,0.08);
}
.g20a-bottom-btn i, .g20a-bottom-btn .material-icons {
  font-size: 2.4rem; margin-bottom: 0.2rem; transition: transform 0.2s;
}
.g20a-bottom-btn:hover i, .g20a-bottom-active i,
.g20a-bottom-btn:hover .material-icons, .g20a-bottom-active .material-icons {
  transform: scale(1.15);
}
.g20a-bottom-btn span { font-size: 1rem; font-weight: 500; }

/* FAQ section */
.g20a-faq-item {
  background: var(--g20a-card); border-radius: 8px;
  margin-bottom: 0.8rem; overflow: hidden; border: 1px solid var(--g20a-border);
}
.g20a-faq-q {
  padding: 1.2rem 1.4rem; font-size: 1.3rem; font-weight: 600;
  color: var(--g20a-light); cursor: pointer; display: flex;
  align-items: center; justify-content: space-between;
}
.g20a-faq-a { padding: 0 1.4rem 1.2rem; font-size: 1.2rem; color: var(--g20a-muted); line-height: 1.7rem; }

/* Help page styles */
.g20a-help-card {
  background: var(--g20a-card); border-radius: var(--g20a-radius);
  padding: 1.6rem; margin-bottom: 1.4rem; border: 1px solid var(--g20a-border);
}
.g20a-help-card h3 {
  font-size: 1.4rem; color: var(--g20a-primary); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.g20a-help-card p, .g20a-help-card li { font-size: 1.2rem; color: var(--g20a-text); line-height: 1.7rem; }
.g20a-help-card ul { padding-left: 1.4rem; }
.g20a-help-card li { margin-bottom: 0.5rem; list-style: disc; }

/* Internal link */
.g20a-internal-link {
  color: var(--g20a-light); border-bottom: 1px solid var(--g20a-muted);
  transition: color 0.2s;
}
.g20a-internal-link:hover { color: var(--g20a-primary); border-color: var(--g20a-primary); }

/* Responsive */
@media (min-width: 769px) {
  .g20a-bottom-nav { display: none; }
  .g20a-footer { padding-bottom: 2rem; }
}
@media (max-width: 768px) {
  .g20a-main { padding-bottom: 8rem; }
}

/* Animations */
@keyframes g20a-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.g20a-animate { animation: g20a-fadeIn 0.4s ease-out; }

/* RTP data compact */
.g20a-rtp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.g20a-rtp-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 1rem; background: var(--g20a-card); border-radius: 6px;
  font-size: 1.1rem;
}
.g20a-rtp-name { color: var(--g20a-light); }
.g20a-rtp-val { color: var(--g20a-primary); font-weight: 600; }
