/**
 * ck333 Main Stylesheet
 * All classes use prefix ge73- to avoid conflicts
 * Color palette: #CD853F | #F5DEB3 | #2C3E50 | #48D1CC
 */

/* CSS Variables */
:root {
  --ge73-primary: #CD853F;
  --ge73-secondary: #F5DEB3;
  --ge73-dark: #2C3E50;
  --ge73-accent: #48D1CC;
  --ge73-bg: #1a1a2e;
  --ge73-bg-card: #16213e;
  --ge73-text: #F5DEB3;
  --ge73-text-light: #e8d5b7;
  --ge73-text-muted: #a89070;
  --ge73-gold: #CD853F;
  --ge73-teal: #48D1CC;
  --ge73-border: rgba(205,133,63,0.3);
  --ge73-radius: 8px;
  --ge73-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--ge73-bg);
  color: var(--ge73-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
}
a { color: var(--ge73-teal); text-decoration: none; }
a:hover { color: var(--ge73-primary); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.ge73-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(135deg, var(--ge73-dark), #1a2535);
  border-bottom: 2px solid var(--ge73-primary);
  z-index: 1000;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ge73-header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ge73-header-logo img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.ge73-header-logo span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ge73-primary);
  letter-spacing: 0.5px;
}
.ge73-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ge73-btn-register, .ge73-btn-login {
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  min-height: 32px;
}
.ge73-btn-register {
  background: linear-gradient(135deg, var(--ge73-primary), #daa06d);
  color: #fff;
}
.ge73-btn-register:hover { background: linear-gradient(135deg, #daa06d, var(--ge73-primary)); transform: scale(1.03); }
.ge73-btn-login {
  background: transparent;
  color: var(--ge73-teal);
  border: 1.5px solid var(--ge73-teal);
}
.ge73-btn-login:hover { background: rgba(72,209,204,0.1); }
.ge73-menu-btn {
  background: none;
  border: none;
  color: var(--ge73-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* Mobile Menu */
.ge73-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ge73-overlay-active { opacity: 1; pointer-events: auto; }
#ge73-mobile-menu {
  position: fixed;
  top: 0; right: -280px;
  width: 280px;
  max-width: 80vw;
  height: 100vh;
  background: linear-gradient(180deg, var(--ge73-dark), #0d1520);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.ge73-menu-active { right: 0 !important; }
.ge73-menu-close {
  background: none;
  border: none;
  color: var(--ge73-text);
  font-size: 2.4rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.ge73-menu-links {
  list-style: none;
  margin-top: 3rem;
}
.ge73-menu-links li {
  border-bottom: 1px solid var(--ge73-border);
}
.ge73-menu-links a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 0.5rem;
  color: var(--ge73-text);
  font-size: 1.4rem;
  transition: color 0.2s;
}
.ge73-menu-links a:hover { color: var(--ge73-primary); }
.ge73-menu-links .material-icons { font-size: 2rem; color: var(--ge73-teal); }

/* Main Content */
main {
  padding-top: 5.6rem;
  padding-bottom: 2rem;
}

/* Carousel */
.ge73-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--ge73-radius);
  margin: 0.8rem;
}
.ge73-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.ge73-carousel-slide {
  min-width: 100%;
  cursor: pointer;
  position: relative;
}
.ge73-carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--ge73-radius);
}
.ge73-carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}
.ge73-carousel-overlay h2 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}
.ge73-carousel-overlay p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.ge73-carousel-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.ge73-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.ge73-dot-active { background: var(--ge73-primary); width: 20px; border-radius: 4px; }
.ge73-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 0.6rem;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.4rem;
  z-index: 5;
}
.ge73-carousel-arrow:hover { background: rgba(205,133,63,0.7); }
.ge73-carousel-prev { left: 0.5rem; }
.ge73-carousel-next { right: 0.5rem; }

/* Section */
.ge73-section {
  padding: 1.5rem 1rem;
}
.ge73-section-title {
  font-size: 1.8rem;
  color: var(--ge73-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}
.ge73-section-title .material-icons { font-size: 2.2rem; }

/* Game Grid */
.ge73-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.ge73-game-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  background: var(--ge73-bg-card);
  border-radius: var(--ge73-radius);
  padding: 0.6rem 0.3rem;
  border: 1px solid var(--ge73-border);
}
.ge73-game-card:hover { transform: translateY(-2px); border-color: var(--ge73-primary); }
.ge73-game-card img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  margin: 0 auto 0.4rem;
  object-fit: cover;
}
.ge73-game-card span {
  font-size: 1.05rem;
  color: var(--ge73-text-light);
  display: block;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Promo Button */
.ge73-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--ge73-primary), #daa06d);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
  min-height: 44px;
}
.ge73-promo-btn:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(205,133,63,0.4); }

/* Promo Link */
.ge73-promo-link {
  color: var(--ge73-primary);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.ge73-promo-link:hover { color: var(--ge73-teal); }

/* Content Blocks */
.ge73-content-block {
  background: var(--ge73-bg-card);
  border-radius: var(--ge73-radius);
  padding: 1.5rem;
  margin: 0.8rem;
  border: 1px solid var(--ge73-border);
}
.ge73-content-block h2 {
  font-size: 1.6rem;
  color: var(--ge73-primary);
  margin-bottom: 0.8rem;
}
.ge73-content-block h3 {
  font-size: 1.4rem;
  color: var(--ge73-teal);
  margin: 1rem 0 0.5rem;
}
.ge73-content-block p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: var(--ge73-text-light);
}
.ge73-content-block ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.ge73-content-block li {
  margin-bottom: 0.4rem;
  color: var(--ge73-text-light);
  line-height: 1.5;
}

/* Features Grid */
.ge73-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.ge73-feature-card {
  background: linear-gradient(135deg, var(--ge73-bg-card), #1a2a40);
  border-radius: var(--ge73-radius);
  padding: 1.2rem;
  text-align: center;
  border: 1px solid var(--ge73-border);
}
.ge73-feature-card .material-icons {
  font-size: 2.4rem;
  color: var(--ge73-teal);
  margin-bottom: 0.5rem;
}
.ge73-feature-card h4 {
  font-size: 1.2rem;
  color: var(--ge73-primary);
  margin-bottom: 0.3rem;
}
.ge73-feature-card p {
  font-size: 1.1rem;
  color: var(--ge73-text-muted);
  line-height: 1.3;
}

/* Testimonials */
.ge73-testimonial {
  background: var(--ge73-bg-card);
  border-radius: var(--ge73-radius);
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--ge73-primary);
}
.ge73-testimonial-name {
  color: var(--ge73-primary);
  font-weight: 600;
  font-size: 1.2rem;
}
.ge73-testimonial-text {
  font-size: 1.2rem;
  color: var(--ge73-text-light);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* Payment Methods */
.ge73-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.ge73-payment-item {
  background: var(--ge73-bg-card);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 1.1rem;
  color: var(--ge73-teal);
  border: 1px solid var(--ge73-border);
}

/* Winners */
.ge73-winners-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ge73-winner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background: var(--ge73-bg-card);
  border-radius: var(--ge73-radius);
  border: 1px solid var(--ge73-border);
}
.ge73-winner-name { color: var(--ge73-primary); font-weight: 600; font-size: 1.2rem; }
.ge73-winner-amount { color: var(--ge73-teal); font-weight: 700; font-size: 1.3rem; }
.ge73-winner-game { color: var(--ge73-text-muted); font-size: 1.1rem; }

/* Footer */
.ge73-footer {
  background: linear-gradient(180deg, var(--ge73-dark), #0d1520);
  padding: 2rem 1rem 8rem;
  margin-top: 2rem;
  border-top: 2px solid var(--ge73-primary);
}
.ge73-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}
.ge73-footer-brand p {
  font-size: 1.2rem;
  color: var(--ge73-text-muted);
  line-height: 1.5;
  max-width: 320px;
  margin: 0.5rem auto 0;
}
.ge73-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.ge73-footer-links a {
  background: var(--ge73-bg-card);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 1.1rem;
  color: var(--ge73-teal);
  border: 1px solid var(--ge73-border);
  transition: all 0.2s;
}
.ge73-footer-links a:hover { border-color: var(--ge73-primary); color: var(--ge73-primary); }
.ge73-footer-copy {
  text-align: center;
  font-size: 1.1rem;
  color: var(--ge73-text-muted);
  border-top: 1px solid var(--ge73-border);
  padding-top: 1rem;
}

/* Bottom Navigation */
.ge73-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, #1a2535, var(--ge73-dark));
  border-top: 2px solid var(--ge73-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  z-index: 1000;
  padding: 0 0.3rem;
}
.ge73-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ge73-text-muted);
  transition: all 0.2s;
  border-radius: 8px;
  padding: 0.3rem;
}
.ge73-bottom-nav-btn:hover { color: var(--ge73-primary); }
.ge73-bottom-nav-btn.ge73-nav-active {
  color: var(--ge73-primary);
  background: rgba(205,133,63,0.1);
}
.ge73-bottom-nav-btn .material-icons,
.ge73-bottom-nav-btn .fas,
.ge73-bottom-nav-btn .far,
.ge73-bottom-nav-btn .fad,
.ge73-bottom-nav-btn ion-icon,
.ge73-bottom-nav-btn .bi {
  font-size: 22px;
  margin-bottom: 2px;
}
.ge73-bottom-nav-btn span {
  font-size: 1rem;
  line-height: 1.1;
}

/* Category label */
.ge73-cat-label {
  font-size: 1.4rem;
  color: var(--ge73-teal);
  font-weight: 600;
  margin: 1.2rem 0 0.8rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--ge73-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* CTA Banner */
.ge73-cta-banner {
  background: linear-gradient(135deg, var(--ge73-primary), #b8742e);
  border-radius: var(--ge73-radius);
  padding: 1.5rem;
  text-align: center;
  margin: 1rem 0.8rem;
}
.ge73-cta-banner h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.ge73-cta-banner p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

/* FAQ */
.ge73-faq-item {
  margin-bottom: 0.8rem;
}
.ge73-faq-q {
  font-weight: 700;
  color: var(--ge73-primary);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.ge73-faq-a {
  color: var(--ge73-text-light);
  font-size: 1.2rem;
  line-height: 1.5;
  padding-left: 1rem;
  border-left: 2px solid var(--ge73-border);
}

/* Internal link */
.ge73-internal-link {
  color: var(--ge73-teal);
  text-decoration: underline;
  font-weight: 500;
}
.ge73-internal-link:hover { color: var(--ge73-primary); }

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