/**
 * 7555 bdt login - Main Stylesheet
 * File: css/style-9234.css
 * Prefix: w9234-
 */

:root {
  --w9234-bg: #0D1117;
  --w9234-primary: #7FFF00;
  --w9234-secondary: #32CD32;
  --w9234-accent: #00FF7F;
  --w9234-text: #E6EDF3;
  --w9234-muted: #8B949E;
  --w9234-card: #161B22;
  --w9234-border: #30363D;
  --w9234-dark: #010409;
  --w9234-glow: rgba(127,255,0,0.15);
  --w9234-radius: 8px;
}

/* 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, sans-serif;
  background: var(--w9234-bg);
  color: var(--w9234-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--w9234-accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.w9234-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--w9234-dark);
  border-bottom: 1px solid var(--w9234-border);
  max-width: 430px; margin: 0 auto;
}
.w9234-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem; height: 5.2rem;
}
.w9234-logo-area { display: flex; align-items: center; gap: 0.8rem; }
.w9234-logo-area img { width: 2.8rem; height: 2.8rem; border-radius: 0.4rem; }
.w9234-site-name { font-size: 1.5rem; font-weight: 700; color: var(--w9234-primary); white-space: nowrap; }
.w9234-header-actions { display: flex; gap: 0.6rem; align-items: center; }
.w9234-btn-register {
  background: var(--w9234-primary); color: var(--w9234-dark);
  font-weight: 700; font-size: 1.2rem; padding: 0.6rem 1.2rem;
  border: none; border-radius: var(--w9234-radius); cursor: pointer;
  transition: all 0.2s;
}
.w9234-btn-register:hover { background: var(--w9234-accent); transform: scale(1.05); }
.w9234-btn-login {
  background: transparent; color: var(--w9234-primary);
  font-weight: 600; font-size: 1.2rem; padding: 0.6rem 1rem;
  border: 1px solid var(--w9234-primary); border-radius: var(--w9234-radius);
  cursor: pointer; transition: all 0.2s;
}
.w9234-btn-login:hover { background: rgba(127,255,0,0.1); }
.w9234-menu-btn {
  background: none; border: none; color: var(--w9234-text);
  font-size: 2.2rem; cursor: pointer; padding: 0.4rem;
}

/* Mobile Menu */
.w9234-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); z-index: 9998;
}
.w9234-mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 75%;
  max-width: 280px; background: var(--w9234-card); z-index: 9999;
  transform: translateX(100%); transition: transform 0.3s ease;
  padding: 2rem 0; overflow-y: auto;
}
.w9234-mobile-menu a {
  display: block; padding: 1.2rem 2rem; color: var(--w9234-text);
  font-size: 1.4rem; border-bottom: 1px solid var(--w9234-border);
  transition: background 0.2s;
}
.w9234-mobile-menu a:hover { background: rgba(127,255,0,0.08); color: var(--w9234-primary); }
.w9234-menu-title { padding: 0 2rem 1.5rem; font-size: 1.6rem; color: var(--w9234-primary); font-weight: 700; }

/* Main Content */
.w9234-main { padding-top: 5.2rem; }
@media (max-width: 768px) { .w9234-main { padding-bottom: 7rem; } }

/* Carousel */
.w9234-carousel { position: relative; overflow: hidden; margin-top: 0.5rem; }
.pro452-slide { display: none; width: 100%; cursor: pointer; }
.pro452-slide img { width: 100%; height: auto; aspect-ratio: 16/7; object-fit: cover; border-radius: 0; }
.w9234-carousel-dots { text-align: center; padding: 0.6rem 0; }
.pro452-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--w9234-border); margin: 0 3px; cursor: pointer;
  transition: background 0.3s;
}
.pro452-dot-active { background: var(--w9234-primary); width: 20px; border-radius: 4px; }

/* Section */
.w9234-section { padding: 2rem 1.2rem; }
.w9234-section-title {
  font-size: 1.7rem; font-weight: 700; color: var(--w9234-primary);
  margin-bottom: 1.2rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--w9234-primary);
}

/* Game Grid */
.w9234-cat-title {
  font-size: 1.5rem; font-weight: 700; color: var(--w9234-accent);
  margin: 1.5rem 0 1rem; padding-left: 0.5rem;
  border-left: 3px solid var(--w9234-primary);
}
.w9234-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem; margin-bottom: 1rem;
}
.w9234-game-card { text-align: center; cursor: pointer; transition: transform 0.2s; }
.w9234-game-card:hover { transform: scale(1.05); }
.w9234-game-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--w9234-radius); border: 1px solid var(--w9234-border);
}
.w9234-game-card span {
  display: block; font-size: 1.05rem; color: var(--w9234-text);
  margin-top: 0.3rem; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; padding: 0 0.2rem;
}

/* Content Blocks */
.w9234-content-block {
  background: var(--w9234-card); border-radius: var(--w9234-radius);
  padding: 1.5rem; margin-bottom: 1.2rem;
  border: 1px solid var(--w9234-border);
}
.w9234-content-block h3 {
  font-size: 1.5rem; color: var(--w9234-primary); margin-bottom: 0.8rem;
}
.w9234-content-block p {
  font-size: 1.3rem; color: var(--w9234-muted); line-height: 1.8;
  margin-bottom: 0.6rem;
}
.w9234-content-block strong { color: var(--w9234-accent); }
.w9234-content-block ul { padding-left: 1.5rem; margin-bottom: 0.6rem; }
.w9234-content-block li { font-size: 1.3rem; color: var(--w9234-muted); line-height: 1.8; }

/* Promo Text Link */
.w9234-promo-link {
  color: var(--w9234-primary); font-weight: 700; cursor: pointer;
  border-bottom: 1px dashed var(--w9234-primary);
  transition: color 0.2s;
}
.w9234-promo-link:hover { color: var(--w9234-accent); }

/* Promo Button */
.w9234-promo-btn {
  display: inline-block; background: linear-gradient(135deg, var(--w9234-primary), var(--w9234-secondary));
  color: var(--w9234-dark); font-weight: 700; font-size: 1.4rem;
  padding: 1rem 2.4rem; border-radius: 3rem; cursor: pointer;
  border: none; transition: all 0.3s; text-align: center;
}
.w9234-promo-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px var(--w9234-glow); }
.w9234-promo-center { text-align: center; margin: 1.5rem 0; }

/* Winners Ticker */
.w9234-winners {
  background: var(--w9234-dark); border-radius: var(--w9234-radius);
  padding: 1rem 1.2rem; margin-bottom: 1.2rem;
  border: 1px solid var(--w9234-border);
}
.w9234-winner-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0; border-bottom: 1px solid var(--w9234-border);
  font-size: 1.2rem;
}
.w9234-winner-item:last-child { border-bottom: none; }
.w9234-winner-name { color: var(--w9234-accent); font-weight: 600; }
.w9234-winner-amount { color: var(--w9234-primary); font-weight: 700; }

/* Payment */
.w9234-payment-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin: 1rem 0; }
.w9234-payment-item {
  background: var(--w9234-card); border: 1px solid var(--w9234-border);
  border-radius: var(--w9234-radius); padding: 0.8rem 1.2rem;
  font-size: 1.2rem; color: var(--w9234-text); font-weight: 600;
}

/* App Download */
.w9234-app-cta {
  background: linear-gradient(135deg, #0D1117 0%, #1a2332 100%);
  border: 1px solid var(--w9234-primary); border-radius: var(--w9234-radius);
  padding: 1.5rem; text-align: center; margin: 1.5rem 0;
}
.w9234-app-cta h3 { color: var(--w9234-primary); font-size: 1.6rem; margin-bottom: 0.8rem; }
.w9234-app-cta p { color: var(--w9234-muted); font-size: 1.2rem; margin-bottom: 1rem; }

/* Footer */
.w9234-footer {
  background: var(--w9234-dark); border-top: 1px solid var(--w9234-border);
  padding: 2rem 1.2rem 1rem; text-align: center;
}
.w9234-footer-desc { font-size: 1.2rem; color: var(--w9234-muted); line-height: 1.6; margin-bottom: 1.2rem; }
.w9234-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1.2rem; }
.w9234-footer-links a {
  color: var(--w9234-accent); font-size: 1.1rem; padding: 0.4rem 0.8rem;
  background: var(--w9234-card); border-radius: 4px;
  border: 1px solid var(--w9234-border); transition: all 0.2s;
}
.w9234-footer-links a:hover { border-color: var(--w9234-primary); color: var(--w9234-primary); }
.w9234-site-links { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; }
.w9234-site-links a { color: var(--w9234-muted); font-size: 1.1rem; }
.w9234-site-links a:hover { color: var(--w9234-primary); }
.w9234-copyright { font-size: 1.1rem; color: var(--w9234-muted); border-top: 1px solid var(--w9234-border); padding-top: 1rem; }

/* Bottom Navigation */
.w9234-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--w9234-dark); border-top: 1px solid var(--w9234-border);
  max-width: 430px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center;
  height: 6rem; padding: 0 0.3rem;
}
.w9234-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-width: 60px; min-height: 60px;
  background: none; border: none; color: var(--w9234-muted);
  cursor: pointer; transition: all 0.25s; border-radius: 0.6rem;
  padding: 0.4rem 0;
}
.w9234-bottom-nav-btn:hover,
.w9234-bottom-nav-btn:focus { color: var(--w9234-primary); background: rgba(127,255,0,0.06); }
.w9234-bottom-nav-btn.active { color: var(--w9234-primary); }
.w9234-bottom-nav-btn .w9234-nav-icon { font-size: 2.2rem; line-height: 1; }
.w9234-bottom-nav-btn .w9234-nav-label { font-size: 1rem; margin-top: 0.2rem; white-space: nowrap; }
@media (min-width: 769px) { .w9234-bottom-nav { display: none; } }

/* FAQ */
.w9234-faq-item { margin-bottom: 1rem; }
.w9234-faq-q { font-size: 1.3rem; color: var(--w9234-primary); font-weight: 600; margin-bottom: 0.3rem; }
.w9234-faq-a { font-size: 1.2rem; color: var(--w9234-muted); line-height: 1.6; padding-left: 1rem; }

/* Testimonials */
.w9234-testimonial {
  background: var(--w9234-card); border-radius: var(--w9234-radius);
  padding: 1rem; margin-bottom: 0.8rem; border-left: 3px solid var(--w9234-primary);
}
.w9234-testimonial p { font-size: 1.2rem; color: var(--w9234-muted); font-style: italic; }
.w9234-testimonial cite { font-size: 1.1rem; color: var(--w9234-accent); display: block; margin-top: 0.4rem; }

/* Utility */
.w9234-mt-1 { margin-top: 0.8rem; }
.w9234-mb-1 { margin-bottom: 0.8rem; }
.w9234-text-center { text-align: center; }
.w9234-hidden { display: none; }

/* Responsive */
@media (max-width: 360px) {
  .w9234-game-grid { grid-template-columns: repeat(3, 1fr); }
  .w9234-header-inner { padding: 0 0.8rem; }
}
