/**
 * VIPSlot - Main Stylesheet
 * File: css/style-9688.css
 * Prefix: g88e-
 * Colors: #D4AF37 (gold), #CD853F (copper), #3A3A3A (dark)
 */

/* CSS Variables */
:root {
  --g88e-primary: #D4AF37;
  --g88e-secondary: #CD853F;
  --g88e-bg: #3A3A3A;
  --g88e-bg-dark: #2A2A2A;
  --g88e-bg-darker: #1E1E1E;
  --g88e-text: #F5F0E8;
  --g88e-text-muted: #B8B0A0;
  --g88e-accent: #D4AF37;
  --g88e-border: #4A4A4A;
  --g88e-success: #4CAF50;
  --g88e-danger: #E74C3C;
  font-size: 62.5%;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  color: var(--g88e-text);
  background: var(--g88e-bg-darker);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--g88e-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Container */
.g88e-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* Header */
.g88e-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--g88e-bg-darker) 0%, #2D2520 100%);
  border-bottom: 2px solid var(--g88e-primary);
  padding: 0.6rem 1rem;
}
.g88e-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 430px;
  margin: 0 auto;
}
.g88e-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.g88e-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.g88e-logo-area span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--g88e-primary);
  letter-spacing: 0.5px;
}
.g88e-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.g88e-btn-register, .g88e-btn-login {
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.g88e-btn-register {
  background: linear-gradient(135deg, var(--g88e-primary), var(--g88e-secondary));
  color: #1A1A1A;
}
.g88e-btn-login {
  background: transparent;
  color: var(--g88e-primary);
  border: 1.5px solid var(--g88e-primary);
}
.g88e-btn-register:hover, .g88e-btn-login:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}
.g88e-menu-toggle {
  background: none;
  border: none;
  color: var(--g88e-primary);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* Mobile Menu */
.g88e-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--g88e-bg-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 6rem 1.5rem 2rem;
  overflow-y: auto;
}
.g88e-mobile-menu.g88e-menu-active {
  right: 0;
}
.g88e-mobile-menu a {
  display: block;
  padding: 1.2rem 0;
  color: var(--g88e-text);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--g88e-border);
  transition: color 0.2s, padding-left 0.2s;
}
.g88e-mobile-menu a:hover {
  color: var(--g88e-primary);
  padding-left: 0.8rem;
}
.g88e-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--g88e-text);
  font-size: 2.4rem;
  cursor: pointer;
}

/* Overlay */
.g88e-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
}
.g88e-overlay.g88e-overlay-active { display: block; }

/* Main Content */
.g88e-main {
  padding-top: 5.5rem;
}
@media (max-width: 768px) {
  .g88e-main { padding-bottom: 80px; }
}

/* Slider */
.g88e-slider {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16/7;
  cursor: pointer;
}
.g88e-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.g88e-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g88e-slide.g88e-slide-active { opacity: 1; }
.g88e-slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.g88e-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s;
}
.g88e-slider-dot.g88e-dot-active { background: var(--g88e-primary); }

/* Section Titles */
.g88e-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--g88e-primary);
  margin: 2rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--g88e-primary);
  position: relative;
}

/* Game Grid */
.g88e-category-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--g88e-secondary);
  margin: 1.5rem 0 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.g88e-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.g88e-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.g88e-game-item:hover { transform: scale(1.06); }
.g88e-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.g88e-game-item:hover img { border-color: var(--g88e-primary); }
.g88e-game-item span {
  display: block;
  font-size: 1.1rem;
  color: var(--g88e-text-muted);
  margin-top: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Content Cards */
.g88e-card {
  background: var(--g88e-bg);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1rem 0;
  border: 1px solid var(--g88e-border);
}
.g88e-card h2, .g88e-card h3 {
  color: var(--g88e-primary);
  margin-bottom: 0.8rem;
}
.g88e-card p {
  color: var(--g88e-text-muted);
  line-height: 2.2rem;
  font-size: 1.4rem;
}

/* CTA Buttons */
.g88e-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--g88e-primary), var(--g88e-secondary));
  color: #1A1A1A;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.g88e-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Promo Link */
.g88e-promo-link {
  color: var(--g88e-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.g88e-promo-link:hover { color: var(--g88e-secondary); }

/* Footer */
.g88e-footer {
  background: var(--g88e-bg-darker);
  border-top: 2px solid var(--g88e-primary);
  padding: 2rem 0 1rem;
  margin-top: 2rem;
}
.g88e-footer-desc {
  color: var(--g88e-text-muted);
  font-size: 1.3rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}
.g88e-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}
.g88e-footer-links a {
  padding: 0.4rem 1rem;
  background: var(--g88e-bg);
  border: 1px solid var(--g88e-border);
  border-radius: 5px;
  color: var(--g88e-text-muted);
  font-size: 1.2rem;
  transition: all 0.2s;
}
.g88e-footer-links a:hover {
  color: var(--g88e-primary);
  border-color: var(--g88e-primary);
}
.g88e-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 1rem 0;
}
.g88e-partners img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.g88e-partners img:hover { opacity: 1; }
.g88e-copyright {
  text-align: center;
  color: var(--g88e-text-muted);
  font-size: 1.2rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--g88e-border);
}

/* Bottom Nav */
.g88e-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, #2D2520 0%, var(--g88e-bg-darker) 100%);
  border-top: 2px solid var(--g88e-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 0 0.3rem;
}
.g88e-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--g88e-text-muted);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  gap: 2px;
}
.g88e-bottom-nav-btn:hover, .g88e-bottom-nav-btn.g88e-nav-active {
  color: var(--g88e-primary);
  transform: scale(1.1);
}
.g88e-bottom-nav-btn i,
.g88e-bottom-nav-btn .material-icons,
.g88e-bottom-nav-btn ion-icon,
.g88e-bottom-nav-btn bi {
  font-size: 22px;
}
.g88e-bottom-nav-btn span {
  font-size: 1rem;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .g88e-bottom-nav { display: none; }
}

/* Testimonials */
.g88e-testimonial {
  background: var(--g88e-bg);
  border-left: 3px solid var(--g88e-primary);
  padding: 1rem 1.2rem;
  margin: 0.8rem 0;
  border-radius: 0 8px 8px 0;
}
.g88e-testimonial p {
  font-style: italic;
  color: var(--g88e-text-muted);
  font-size: 1.3rem;
}
.g88e-testimonial cite {
  display: block;
  margin-top: 0.5rem;
  color: var(--g88e-secondary);
  font-size: 1.2rem;
}

/* Winner Strip */
.g88e-winner-strip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--g88e-bg);
  padding: 0.6rem 1rem;
  margin: 0.4rem 0;
  border-radius: 6px;
  font-size: 1.3rem;
}
.g88e-winner-strip .g88e-winner-name {
  color: var(--g88e-primary);
  font-weight: 600;
}
.g88e-winner-strip .g88e-winner-amount {
  color: var(--g88e-success);
  font-weight: 700;
  margin-left: auto;
}

/* Payment Row */
.g88e-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 1rem 0;
}
.g88e-payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem;
  background: var(--g88e-bg);
  border-radius: 8px;
  border: 1px solid var(--g88e-border);
  min-width: 70px;
}
.g88e-payment-item i {
  font-size: 2.4rem;
  color: var(--g88e-primary);
}
.g88e-payment-item span {
  font-size: 1.1rem;
  color: var(--g88e-text-muted);
}

/* FAQ */
.g88e-faq-item {
  margin: 0.8rem 0;
  padding: 1rem;
  background: var(--g88e-bg);
  border-radius: 8px;
  border-left: 3px solid var(--g88e-secondary);
}
.g88e-faq-item strong {
  color: var(--g88e-primary);
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}
.g88e-faq-item p {
  color: var(--g88e-text-muted);
  font-size: 1.3rem;
}

/* Help content styles */
.g88e-help-section {
  margin: 1.5rem 0;
}
.g88e-help-section h2 {
  font-size: 1.8rem;
  color: var(--g88e-primary);
  margin-bottom: 0.8rem;
}
.g88e-help-section h3 {
  font-size: 1.5rem;
  color: var(--g88e-secondary);
  margin: 1rem 0 0.5rem;
}
.g88e-help-section p, .g88e-help-section li {
  color: var(--g88e-text-muted);
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.g88e-help-section ol, .g88e-help-section ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}
.g88e-help-section ol li { list-style: decimal; }
.g88e-help-section ul li { list-style: disc; }
.g88e-help-section a { color: var(--g88e-primary); }

/* Badge */
.g88e-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--g88e-primary);
  color: #1A1A1A;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
}

/* Feature list */
.g88e-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1rem 0;
}
.g88e-feature-item {
  background: var(--g88e-bg);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--g88e-border);
}
.g88e-feature-item i {
  font-size: 2rem;
  color: var(--g88e-primary);
  margin-bottom: 0.4rem;
}
.g88e-feature-item span {
  display: block;
  font-size: 1.2rem;
  color: var(--g88e-text-muted);
}

/* App Download CTA */
.g88e-app-cta {
  background: linear-gradient(135deg, #2D2520, var(--g88e-bg-dark));
  border: 2px solid var(--g88e-primary);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
}
.g88e-app-cta h3 {
  color: var(--g88e-primary);
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.g88e-app-cta p {
  color: var(--g88e-text-muted);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Responsive utilities */
@media (max-width: 430px) {
  .g88e-game-grid { grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
  .g88e-container { padding: 0 0.8rem; }
}
@media (min-width: 431px) and (max-width: 768px) {
  .g88e-game-grid { grid-template-columns: repeat(5, 1fr); }
}
