/**
 * gbaje.sbs - Main Stylesheet
 * Prefix: v179-
 * Palette: #AD1457 | #00BFFF | #4682B4 | #9370DB | #1A1A1A
 * Mobile-first, max-width 430px
 */

:root {
  --v179-primary: #AD1457;
  --v179-accent: #00BFFF;
  --v179-secondary: #4682B4;
  --v179-purple: #9370DB;
  --v179-bg: #1A1A1A;
  --v179-bg-card: #242424;
  --v179-bg-dark: #111111;
  --v179-text: #FFFFFF;
  --v179-text-muted: #B0B0B0;
  --v179-text-dim: #808080;
  --v179-border: #333333;
  --v179-gold: #FFD700;
  --v179-radius: 0.8rem;
  --v179-radius-sm: 0.5rem;
  --v179-header-h: 5.6rem;
  --v179-bottom-h: 6.0rem;
}

/* Reset & Base */
*, *::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, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--v179-bg);
  color: var(--v179-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--v179-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

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

/* Header */
.v179-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, var(--v179-bg-dark) 0%, #2a0a1a 100%);
  border-bottom: 1px solid var(--v179-primary);
  height: var(--v179-header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem;
}
.v179-header-logo {
  display: flex; align-items: center; gap: 0.6rem;
  cursor: pointer;
}
.v179-header-logo img { width: 2.8rem; height: 2.8rem; border-radius: 50%; }
.v179-header-logo span { font-size: 1.8rem; font-weight: 700; color: var(--v179-accent); letter-spacing: 0.05em; }
.v179-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.v179-btn-register, .v179-btn-login {
  border: none; border-radius: var(--v179-radius-sm);
  padding: 0.6rem 1.4rem; font-size: 1.2rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease;
}
.v179-btn-register {
  background: linear-gradient(135deg, var(--v179-primary), #d81b60);
  color: #fff;
}
.v179-btn-register:hover { transform: scale(1.05); box-shadow: 0 2px 10px rgba(173,20,87,0.5); }
.v179-btn-login {
  background: transparent; color: var(--v179-accent);
  border: 1px solid var(--v179-accent);
}
.v179-btn-login:hover { background: rgba(0,191,255,0.1); }
.v179-menu-btn {
  background: none; border: none; color: var(--v179-text); font-size: 2.2rem;
  cursor: pointer; padding: 0.4rem; display: flex; align-items: center;
}

/* Mobile Menu */
.v179-menu-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); z-index: 9998;
  display: none; opacity: 0; transition: opacity 0.3s;
}
.v179-overlay-active { display: block; opacity: 1; }
.v179-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: var(--v179-bg-dark); z-index: 9999;
  transition: right 0.3s ease; overflow-y: auto;
  border-left: 1px solid var(--v179-primary);
}
.v179-menu-active { right: 0; }
.v179-menu-header { padding: 1.6rem; border-bottom: 1px solid var(--v179-border); display: flex; justify-content: space-between; align-items: center; }
.v179-menu-header span { font-size: 1.6rem; font-weight: 700; color: var(--v179-accent); }
.v179-menu-close { background: none; border: none; color: var(--v179-text); font-size: 2rem; cursor: pointer; }
.v179-menu-nav { padding: 1rem 0; }
.v179-menu-nav a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.6rem; color: var(--v179-text);
  font-size: 1.4rem; transition: background 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.v179-menu-nav a:hover { background: rgba(173,20,87,0.2); text-decoration: none; }
.v179-menu-nav a i, .v179-menu-nav a .material-icons { font-size: 1.8rem; color: var(--v179-accent); }

/* Main Content */
.v179-main { padding-top: var(--v179-header-h); min-height: 100vh; }

/* Carousel */
.v179-carousel { position: relative; width: 100%; overflow: hidden; border-radius: 0 0 var(--v179-radius) var(--v179-radius); }
.v179-slide { display: none; cursor: pointer; width: 100%; }
.v179-slide:first-child { display: block; }
.v179-slide img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.v179-carousel-dots { position: absolute; bottom: 0.8rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; }
.v179-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; }
.v179-dot.v179-dot-active { background: var(--v179-accent); }

/* Section */
.v179-section { padding: 2rem 0; }
.v179-section-title {
  font-size: 1.8rem; font-weight: 700; margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--v179-primary);
  display: flex; align-items: center; gap: 0.6rem;
}
.v179-section-title i, .v179-section-title .material-icons { color: var(--v179-accent); }

/* Game Grid */
.v179-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.v179-game-item {
  text-align: center; cursor: pointer;
  transition: transform 0.2s;
  background: var(--v179-bg-card);
  border-radius: var(--v179-radius-sm);
  padding: 0.6rem 0.3rem;
}
.v179-game-item:hover { transform: translateY(-2px); }
.v179-game-item img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--v179-radius-sm); margin-bottom: 0.3rem;
}
.v179-game-name {
  font-size: 1.0rem; color: var(--v179-text-muted);
  line-height: 1.2rem; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}

/* Category Label */
.v179-cat-label {
  font-size: 1.6rem; font-weight: 600; margin: 1.6rem 0 0.8rem;
  color: var(--v179-accent); display: flex; align-items: center; gap: 0.5rem;
}
.v179-cat-label i, .v179-cat-label .material-icons { font-size: 1.8rem; }

/* Cards */
.v179-card {
  background: var(--v179-bg-card); border-radius: var(--v179-radius);
  padding: 1.4rem; margin-bottom: 1.2rem;
  border: 1px solid var(--v179-border);
}
.v179-card h3 { font-size: 1.5rem; color: var(--v179-accent); margin-bottom: 0.8rem; }
.v179-card p { color: var(--v179-text-muted); font-size: 1.3rem; line-height: 1.6rem; margin-bottom: 0.6rem; }

/* CTA / Promo Link */
.v179-cta {
  display: inline-block; padding: 1rem 2.4rem;
  background: linear-gradient(135deg, var(--v179-primary), #d81b60);
  color: #fff; font-size: 1.4rem; font-weight: 700;
  border-radius: var(--v179-radius); cursor: pointer;
  border: none; text-align: center;
  transition: all 0.2s; text-decoration: none;
}
.v179-cta:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(173,20,87,0.5); text-decoration: none; color: #fff; }
.v179-cta-outline {
  display: inline-block; padding: 0.8rem 1.8rem;
  border: 2px solid var(--v179-accent); color: var(--v179-accent);
  font-size: 1.3rem; font-weight: 600; border-radius: var(--v179-radius);
  cursor: pointer; background: transparent; transition: all 0.2s;
  text-decoration: none;
}
.v179-cta-outline:hover { background: rgba(0,191,255,0.1); text-decoration: none; }

/* Promo text link */
.v179-promo-link {
  color: var(--v179-gold); font-weight: 700; cursor: pointer;
  text-decoration: underline;
}
.v179-promo-link:hover { color: #ffe44d; }

/* Footer */
.v179-footer {
  background: var(--v179-bg-dark); padding: 2rem 0 1rem;
  border-top: 1px solid var(--v179-border);
}
.v179-footer-desc { font-size: 1.2rem; color: var(--v179-text-dim); line-height: 1.6rem; margin-bottom: 1.2rem; }
.v179-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; }
.v179-footer-links a {
  padding: 0.5rem 1rem; background: var(--v179-bg-card);
  border-radius: var(--v179-radius-sm); color: var(--v179-text-muted);
  font-size: 1.1rem; border: 1px solid var(--v179-border);
  transition: all 0.2s;
}
.v179-footer-links a:hover { border-color: var(--v179-accent); color: var(--v179-accent); text-decoration: none; }
.v179-footer-copy { text-align: center; font-size: 1.1rem; color: var(--v179-text-dim); padding-top: 1rem; border-top: 1px solid var(--v179-border); }

/* Bottom Navigation */
.v179-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #1f0510 0%, var(--v179-bg-dark) 100%);
  border-top: 1px solid var(--v179-primary);
  display: flex; justify-content: space-around; align-items: center;
  height: var(--v179-bottom-h); padding: 0.2rem 0;
}
.v179-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(--v179-text-muted);
  cursor: pointer; transition: all 0.2s; gap: 0.2rem;
  position: relative;
}
.v179-bottom-btn i, .v179-bottom-btn .material-icons { font-size: 2.2rem; transition: color 0.2s, transform 0.2s; }
.v179-bottom-btn span { font-size: 1rem; line-height: 1.2rem; }
.v179-bottom-btn:hover, .v179-bottom-btn.v179-active {
  color: var(--v179-accent);
}
.v179-bottom-btn:hover i, .v179-bottom-btn:hover .material-icons,
.v179-bottom-btn.v179-active i, .v179-bottom-btn.v179-active .material-icons {
  color: var(--v179-accent); transform: scale(1.15);
}
.v179-bottom-btn::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--v179-accent); transition: width 0.2s;
}
.v179-bottom-btn.v179-active::after { width: 60%; }

/* Partners */
.v179-partners { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; margin-bottom: 1.2rem; }
.v179-partners span { font-size: 1.0rem; color: var(--v179-text-dim); padding: 0.3rem 0.6rem; background: var(--v179-bg-card); border-radius: var(--v179-radius-sm); }

/* Testimonial */
.v179-testimonial { background: var(--v179-bg-card); border-radius: var(--v179-radius); padding: 1.2rem; margin-bottom: 1rem; border-left: 3px solid var(--v179-purple); }
.v179-testimonial p { font-size: 1.2rem; color: var(--v179-text-muted); font-style: italic; margin-bottom: 0.4rem; }
.v179-testimonial cite { font-size: 1.1rem; color: var(--v179-accent); font-style: normal; }

/* Payment */
.v179-payment-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.v179-payment-item { background: var(--v179-bg-card); padding: 0.6rem 1.2rem; border-radius: var(--v179-radius-sm); font-size: 1.2rem; color: var(--v179-text-muted); border: 1px solid var(--v179-border); }

/* Winner ticker */
.v179-winner { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.v179-winner-name { font-size: 1.2rem; color: var(--v179-text-muted); }
.v179-winner-amount { font-size: 1.3rem; color: var(--v179-gold); font-weight: 700; }

/* FAQ */
.v179-faq-item { margin-bottom: 1rem; }
.v179-faq-q { font-size: 1.4rem; color: var(--v179-accent); font-weight: 600; margin-bottom: 0.4rem; }
.v179-faq-a { font-size: 1.3rem; color: var(--v179-text-muted); line-height: 1.6rem; }

/* App download */
.v179-app-box { text-align: center; padding: 1.6rem; background: linear-gradient(135deg, #2a0a1a, #1a1a3a); border-radius: var(--v179-radius); border: 1px solid var(--v179-purple); }
.v179-app-box h3 { font-size: 1.6rem; color: var(--v179-gold); margin-bottom: 0.8rem; }

/* Responsive */
@media (max-width: 768px) {
  .v179-main { padding-bottom: calc(var(--v179-bottom-h) + 1rem); }
}
@media (min-width: 769px) {
  .v179-bottom-nav { display: none; }
  .v179-menu-btn { display: none; }
}
