/* =========================
   GACOR87 PREMIUM STYLE.CSS
   ========================= */

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

body {
  background: linear-gradient(to bottom, #061a40, #000814);
  color: #fff;
  max-width: 480px;
  margin: auto;
  min-height: 100vh;
  padding-bottom: 90px;
}

/* HEADER */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #0b2a5c;
  position: sticky;
  top: 0;
  z-index: 999;
}

.top-header i {
  font-size: 22px;
  color: #fff;
}

.logo img {
  height: 42px;
}

/* DOWNLOAD BAR */
.download-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #103b7a;
  padding: 8px 15px;
  font-size: 13px;
}

.download-bar button {
  background: #ffd60a;
  color: #000;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
}

/* HERO SLIDER */
.hero-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

.hero-slider img.active {
  display: block;
}

.slider-dots {
  text-align: center;
  padding: 8px 0;
}

.slider-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #777;
  border-radius: 50%;
}

.slider-dots .active {
  background: #ffd60a;
}

/* LOGIN REGISTER */
.auth-bar {
  display: flex;
}

.login-btn,
.register-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
}

.login-btn {
  background: #ffd60a;
  color: #000;
}

.register-btn {
  background: #d62828;
  color: #fff;
}

/* ANNOUNCEMENT */
.announcement {
  background: #001d3d;
  padding: 8px;
  font-size: 13px;
  color: #ffd60a;
}

/* CATEGORY */
.category-menu {
  display: flex;
  justify-content: space-around;
  padding: 14px 5px;
  background: #0b2a5c;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #fff;
}

.category-item i {
  font-size: 20px;
  margin-bottom: 5px;
}

.hot {
  color: #ffd60a;
}

/* JACKPOT */
.jackpot-section {
  padding: 15px;
}

.jackpot-box {
  background: #000;
  border: 2px solid gold;
  border-radius: 12px;
  text-align: center;
  padding: 18px;
  box-shadow: 0 0 15px gold;
}

.jackpot-title {
  font-size: 18px;
  color: gold;
  margin-bottom: 8px;
}

.jackpot-amount {
  font-size: 22px;
  font-weight: bold;
  color: #00ffea;
}

/* DASHBOARD */
.member-dashboard {
  padding: 15px;
}

.balance-card {
  background: rgba(255,255,255,0.05);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 15px;
}

.balance-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.balance-card p {
  font-size: 24px;
  color: #ffd60a;
  font-weight: bold;
}

.dashboard-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.dashboard-actions button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #1d4ed8;
  color: #fff;
  font-weight: bold;
}

/* PROVIDERS */
.providers-section {
  padding: 15px;
}

.providers-section h2 {
  margin-bottom: 12px;
  font-size: 18px;
}

.provider-list {
  display: flex;
  overflow-x: auto;
  gap: 10px;
}

.provider-card {
  min-width: 90px;
  background: rgba(255,255,255,0.05);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.provider-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 5px;
}

/* POPULAR GAMES */
.popular-games {
  padding: 15px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.section-title a {
  color: #ffd60a;
  text-decoration: none;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.game-card {
  background: rgba(255,255,255,0.05);
  padding: 8px;
  border-radius: 10px;
  text-align: center;
}

.game-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
}

/* REFERRAL */
.referral-program {
  padding: 20px 15px;
  text-align: center;
}

.referral-program button {
  margin-top: 12px;
  padding: 12px 20px;
  border: none;
  background: #ffd60a;
  color: #000;
  border-radius: 10px;
  font-weight: bold;
}

/* PROMO */
.promo-section {
  padding: 15px;
}

.promo-card {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* FLOATING MENU */
.floating-menu {
  position: fixed;
  left: 15px;
  bottom: 90px;
}

.floating-menu button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: red;
  color: #fff;
  font-size: 22px;
}

/* BOTTOM NAV */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #0b2a5c;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  z-index: 999;
}

.bottom-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-nav i {
  font-size: 20px;
  margin-bottom: 4px;
}

.deposit-btn {
  background: #ffd60a;
  color: #000 !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  justify-content: center;
  margin-top: -25px;
  font-size: 24px;
  display: flex;
  align-items: center;
}

/* RESPONSIVE */
@media(max-width: 480px) {
  body {
    width: 100%;
  }
}