/**
 * good 1111 apk - Core CSS Stylesheet
 * All classes use g5b0- prefix for namespace isolation
 * Color palette: #1E1E1E | #FFAA00 | #AD1457 | #FF8A80 | #FFF176
 * Mobile-first design, max-width 430px
 */

/* CSS Variables */
:root {
  --g5b0-bg: #1E1E1E;
  --g5b0-primary: #FFAA00;
  --g5b0-accent: #AD1457;
  --g5b0-light: #FF8A80;
  --g5b0-highlight: #FFF176;
  --g5b0-text: #f0f0f0;
  --g5b0-text-muted: #aaaaaa;
  --g5b0-card-bg: #2a2a2a;
  --g5b0-card-border: #3a3a3a;
  --g5b0-radius: 8px;
  --g5b0-radius-lg: 12px;
  --g5b0-shadow: 0 2px 8px rgba(0,0,0,0.3);
  --g5b0-transition: all 0.3s ease;
  --g5b0-font: 'Segoe UI', 'Noto Sans Bengali', Arial, sans-serif;
  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: var(--g5b0-font);
  background: var(--g5b0-bg);
  color: var(--g5b0-text);
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: var(--g5b0-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* Header */
.g5b0-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-bottom: 2px solid var(--g5b0-primary);
  padding: 0 1rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g5b0-header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.g5b0-header-logo img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.g5b0-header-logo span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--g5b0-primary);
  white-space: nowrap;
}
.g5b0-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.g5b0-btn-register {
  background: var(--g5b0-accent);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: var(--g5b0-radius);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--g5b0-transition);
  min-height: 36px;
}
.g5b0-btn-register:hover { background: #c4185e; transform: scale(1.05); }
.g5b0-btn-login {
  background: transparent;
  color: var(--g5b0-primary);
  border: 1.5px solid var(--g5b0-primary);
  padding: 5px 14px;
  border-radius: var(--g5b0-radius);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--g5b0-transition);
  min-height: 36px;
}
.g5b0-btn-login:hover { background: rgba(255,170,0,0.1); }

/* Menu Toggle */
.g5b0-menu-toggle {
  background: none;
  border: none;
  color: var(--g5b0-primary);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.g5b0-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.g5b0-menu-active { right: 0; }
.g5b0-mobile-menu .g5b0-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--g5b0-text);
  font-size: 2.4rem;
  cursor: pointer;
}
.g5b0-mobile-menu .g5b0-menu-title {
  font-size: 1.8rem;
  color: var(--g5b0-primary);
  margin-bottom: 2rem;
  font-weight: 700;
}
.g5b0-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.2rem 0;
  color: var(--g5b0-text);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--g5b0-card-border);
  transition: var(--g5b0-transition);
}
.g5b0-mobile-menu a:hover { color: var(--g5b0-primary); padding-left: 8px; }
.g5b0-mobile-menu a .material-icons { font-size: 2rem; color: var(--g5b0-light); }

/* Menu Overlay */
.g5b0-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
}
.g5b0-overlay-active { display: block; }

/* Main Content */
.g5b0-main {
  padding-top: 56px;
  padding-bottom: 1rem;
}

/* Carousel */
.g5b0-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--g5b0-radius-lg) var(--g5b0-radius-lg);
  margin-bottom: 1.5rem;
}
.g5b0-carousel-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.g5b0-slide-active { display: block; }
.g5b0-carousel-slide img {
  width: 100%;
  height: auto;
  min-height: 180px;
  object-fit: cover;
}
.g5b0-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.g5b0-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: var(--g5b0-transition);
}
.g5b0-dot-active { background: var(--g5b0-primary); transform: scale(1.2); }

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

/* Game Grid */
.g5b0-game-category {
  margin-bottom: 2rem;
}
.g5b0-game-category h2 {
  font-size: 1.8rem;
  color: var(--g5b0-primary);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--g5b0-accent);
}
.g5b0-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.g5b0-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: var(--g5b0-transition);
  border-radius: var(--g5b0-radius);
  padding: 6px;
  background: var(--g5b0-card-bg);
}
.g5b0-game-item:hover { transform: translateY(-2px); background: #333; }
.g5b0-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 4px;
}
.g5b0-game-item span {
  font-size: 1.1rem;
  color: var(--g5b0-text);
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 2.8rem;
}

/* Content Cards */
.g5b0-card {
  background: var(--g5b0-card-bg);
  border: 1px solid var(--g5b0-card-border);
  border-radius: var(--g5b0-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--g5b0-shadow);
}
.g5b0-card h3 {
  font-size: 1.7rem;
  color: var(--g5b0-primary);
  margin-bottom: 1rem;
}
.g5b0-card p, .g5b0-card li {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: var(--g5b0-text-muted);
}
.g5b0-card ul { padding-left: 1.5rem; }
.g5b0-card li { margin-bottom: 0.5rem; }

/* Promo Buttons */
.g5b0-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--g5b0-accent), #d81b60);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--g5b0-transition);
  box-shadow: 0 4px 15px rgba(173,20,87,0.4);
  min-height: 48px;
  text-align: center;
}
.g5b0-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(173,20,87,0.6);
}
.g5b0-promo-btn-secondary {
  background: linear-gradient(135deg, var(--g5b0-primary), #ff8f00);
  color: #1E1E1E;
  box-shadow: 0 4px 15px rgba(255,170,0,0.4);
}
.g5b0-promo-btn-secondary:hover {
  box-shadow: 0 6px 20px rgba(255,170,0,0.6);
}

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

/* Footer */
.g5b0-footer {
  background: #141414;
  border-top: 2px solid var(--g5b0-primary);
  padding: 2rem 1.2rem 8rem;
  margin-top: 2rem;
}
.g5b0-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}
.g5b0-footer-brand p {
  font-size: 1.3rem;
  color: var(--g5b0-text-muted);
  line-height: 2rem;
  margin-top: 0.8rem;
}
.g5b0-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.g5b0-footer-links a {
  font-size: 1.2rem;
  color: var(--g5b0-text-muted);
  padding: 4px 10px;
  border: 1px solid var(--g5b0-card-border);
  border-radius: 20px;
  transition: var(--g5b0-transition);
}
.g5b0-footer-links a:hover { color: var(--g5b0-primary); border-color: var(--g5b0-primary); }
.g5b0-footer-copy {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

/* Bottom Navigation - Fixed Mobile Nav */
.g5b0-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-top: 1.5px solid var(--g5b0-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0 4px;
}
.g5b0-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(--g5b0-text-muted);
  cursor: pointer;
  transition: var(--g5b0-transition);
  border-radius: 8px;
  padding: 4px 2px;
  gap: 2px;
}
.g5b0-bottom-nav-btn span.g5b0-nav-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.g5b0-bottom-nav-btn span.g5b0-nav-label {
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}
.g5b0-bottom-nav-btn:hover,
.g5b0-bottom-nav-btn.g5b0-nav-active {
  color: var(--g5b0-primary);
  background: rgba(255,170,0,0.1);
}
.g5b0-bottom-nav-btn.g5b0-btn-touch {
  transform: scale(0.92);
  background: rgba(255,170,0,0.15);
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
  .g5b0-bottom-nav { display: none; }
  .g5b0-main { padding-bottom: 2rem; }
}
/* Mobile bottom padding */
@media (max-width: 768px) {
  .g5b0-main { padding-bottom: 80px; }
  .g5b0-footer { padding-bottom: 8rem; }
}

/* Promo CTA Banner */
.g5b0-cta-banner {
  background: linear-gradient(135deg, var(--g5b0-accent) 0%, #c4185e 100%);
  border-radius: var(--g5b0-radius-lg);
  padding: 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
}
.g5b0-cta-banner h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.g5b0-cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* FAQ Section */
.g5b0-faq-item {
  background: var(--g5b0-card-bg);
  border-radius: var(--g5b0-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--g5b0-primary);
}
.g5b0-faq-item h4 {
  font-size: 1.4rem;
  color: var(--g5b0-primary);
  margin-bottom: 0.5rem;
}
.g5b0-faq-item p {
  font-size: 1.3rem;
  color: var(--g5b0-text-muted);
  line-height: 2rem;
}

/* Winners Table */
.g5b0-winners-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.g5b0-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--g5b0-card-bg);
  padding: 1rem;
  border-radius: var(--g5b0-radius);
  border: 1px solid var(--g5b0-card-border);
}
.g5b0-winner-item .g5b0-winner-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.g5b0-winner-item .g5b0-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--g5b0-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.g5b0-winner-item .g5b0-winner-name {
  font-size: 1.3rem;
  color: var(--g5b0-text);
}
.g5b0-winner-item .g5b0-winner-game {
  font-size: 1.1rem;
  color: var(--g5b0-text-muted);
}
.g5b0-winner-item .g5b0-winner-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--g5b0-primary);
}

/* Payment Methods */
.g5b0-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.g5b0-payment-item {
  background: var(--g5b0-card-bg);
  border: 1px solid var(--g5b0-card-border);
  border-radius: var(--g5b0-radius);
  padding: 10px 16px;
  font-size: 1.3rem;
  color: var(--g5b0-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Testimonial */
.g5b0-testimonial {
  background: var(--g5b0-card-bg);
  border-radius: var(--g5b0-radius-lg);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--g5b0-light);
}
.g5b0-testimonial p {
  font-size: 1.3rem;
  color: var(--g5b0-text-muted);
  line-height: 2rem;
  font-style: italic;
}
.g5b0-testimonial .g5b0-testimonial-author {
  font-size: 1.2rem;
  color: var(--g5b0-primary);
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 600;
}

/* Utility classes */
.g5b0-text-center { text-align: center; }
.g5b0-text-gold { color: var(--g5b0-primary); }
.g5b0-text-pink { color: var(--g5b0-light); }
.g5b0-text-highlight { color: var(--g5b0-highlight); }
.g5b0-mt-1 { margin-top: 1rem; }
.g5b0-mb-1 { margin-bottom: 1rem; }
.g5b0-mt-2 { margin-top: 2rem; }
.g5b0-mb-2 { margin-bottom: 2rem; }
.g5b0-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Desktop responsive */
@media (min-width: 769px) {
  .g5b0-container { max-width: 430px; }
  .g5b0-header { max-width: 430px; left: 50%; transform: translateX(-50%); }
  .g5b0-footer { max-width: 430px; margin-left: auto; margin-right: auto; }
}

/* Internal link style */
.g5b0-internal-link {
  color: var(--g5b0-light);
  text-decoration: underline;
  font-weight: 500;
  transition: var(--g5b0-transition);
}
.g5b0-internal-link:hover { color: var(--g5b0-highlight); }
