/* css/style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(to bottom, #000000, #031f0f);
  color: white;
  padding-bottom: 80px;
}

/* HEADER */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b2d17;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 10px #00ff88;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #00ff88;
  text-shadow: 0 0 10px #00ff88;
}

.menu-btn, .user-btn {
  font-size: 24px;
  cursor: pointer;
}

/* APK BAR */
.apk-bar {
  background: #00aa55;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  font-weight: bold;
}

/* SLIDER */
.slider-container {
  width: 100%;
  overflow: hidden;
}

.slider img {
  width: 100%;
  display: none;
  border-radius: 10px;
}

.slider img.active {
  display: block;
}

/* MARQUEE */
.marquee {
  background: #111;
  color: gold;
  padding: 8px;
  font-size: 14px;
}

/* AUTH */
.auth-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px;
}

.login-btn, .register-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.login-btn {
  background: #00aa55;
  color: white;
}

.register-btn {
  background: gold;
  color: black;
}

/* CATEGORY */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 15px;
}

.cat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid #00ff88;
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,255,136,0.4);
}

.cat-card span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

/* JACKPOT */
.jackpot-box {
  margin: 20px;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(45deg, #004d26, #00aa55);
  box-shadow: 0 0 15px gold;
}

.jackpot-box h2 {
  color: gold;
  margin-bottom: 10px;
}

#jackpot {
  font-size: 22px;
  font-weight: bold;
}

/* PROVIDERS */
.providers {
  padding: 20px;
}

.providers h3 {
  margin-bottom: 15px;
  color: gold;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.provider {
  background: #111;
  border: 1px solid #00ff88;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
}

/* HOT GAMES */
.hot-games {
  padding: 20px;
}

.hot-games h3 {
  margin-bottom: 15px;
  color: gold;
}

.game-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
}

.game-card {
  min-width: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #00ff88;
}

.game-card img {
  width: 100%;
  display: block;
}

/* PROMO */
.promo-banner {
  margin: 20px;
  padding: 20px;
  background: #111;
  border: 1px solid gold;
  border-radius: 12px;
  text-align: center;
}

/* FLOATING MENU */
.floating-menu {
  position: fixed;
  right: 15px;
  bottom: 100px;
  background: #00aa55;
  padding: 15px;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 0 15px #00ff88;
}

/* LIVE CHAT */
.live-chat {
  position: fixed;
  left: 15px;
  bottom: 100px;
  background: gold;
  color: black;
  padding: 15px;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 0 15px gold;
}

/* FOOTER */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #0b2d17;
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  box-shadow: 0 -2px 10px #00ff88;
}

.bottom-nav div {
  text-align: center;
  font-size: 12px;
}

.bottom-nav span {
  display: block;
  margin-top: 4px;
}