/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; background: #0b0d17; color: #fff; }

/* Header */
.topbar {
  background: #0d1b2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}
.logo amp-img { max-width: 120px; }
.menu-icons a { margin-left: 12px; }

/* Banner */
.banner {
  width: 100%;
  margin: 0 auto;
  border-bottom: 3px solid #1e90ff;
}

/* Menu Icons */
.menu {
  display: flex;
  justify-content: space-around;
  background: #111827;
  padding: 12px 0;
  border-bottom: 2px solid #1e90ff;
}
.menu a {
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}
.menu a span {
  display: block;
  margin-top: 5px;
}

/* Jackpot */
.jackpot {
  text-align: center;
  padding: 15px;
  background: #0d1b2a;
  border-top: 3px solid #1e90ff;
  border-bottom: 3px solid #1e90ff;
}
.jackpot h2 {
  color: #1e90ff;
  font-size: 16px;
  margin-bottom: 8px;
}
.jackpot-box {
  font-size: 22px;
  font-weight: bold;
  color: #00ffcc;
  background: #000;
  padding: 10px;
  border-radius: 6px;
  display: inline-block;
  min-width: 250px;
}

/* Games Section */
.games {
  padding: 15px;
}
.games h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #ffd700;
}
.game-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.game-list amp-img {
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
}

/* Payment */
.payment {
  background: #0d1b2a;
  padding: 15px;
  text-align: center;
  border-top: 2px solid #1e90ff;
  border-bottom: 2px solid #1e90ff;
}
.payment h3 {
  color: #ffd700;
  margin-bottom: 12px;
}
.pay-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
footer {
  background: #111827;
  text-align: center;
  padding: 20px 10px;
  border-top: 3px solid #1e90ff;
}
footer .social {
  margin-bottom: 10px;
}
footer .social a { margin: 0 6px; }
footer p {
  font-size: 12px;
  color: #aaa;
}
