body {
  background: linear-gradient(180deg, #0A0F2C, #1A0033);
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  border-bottom: 2px solid #00FFFF;
}
.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  color: #FF00FF;
  text-shadow: 0 0 15px #FF00FF;
}
.balance span {
  margin-left: 15px;
  font-size: 18px;
  text-shadow: 0 0 10px #39FF14;
}
.signup-btn {
  margin-left: 20px;
  padding: 8px 15px;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px #FFD700;
}

/* Banner */
.banner h1 {
  margin: 30px 0;
  font-size: 36px;
  color: #00FFFF;
  text-shadow: 0 0 20px #00FFFF;
}
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.game-card {
  background: rgba(255,255,255,0.1);
  border: 2px solid #00FFFF;
  border-radius: 12px;
  padding: 20px;
  margin: 15px;
  width: 160px;
  box-shadow: 0 0 20px #00FFFF;
  transition: all 0.3s ease;
}
.game-card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #FF00FF;
}
.game-card h3 {
  margin: 0;
  color: #FFD700;
  text-shadow: 0 0 10px #FFD700;
}
.game-card button {
  margin-top: 10px;
  padding: 10px;
  background: linear-gradient(90deg, #00FFFF, #39FF14);
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

/* Trust Section */
.trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.trust-item {
  margin: 15px;
  padding: 15px 25px;
  border: 2px solid #FFD700;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #FFD700;
  font-weight: bold;
  text-shadow: 0 0 10px #FFD700;
  box-shadow: 0 0 20px #FFD700;
}

/* Footer */
footer {
  background: rgba(0,0,0,0.6);
  padding: 15px;
  border-top: 2px solid #00FFFF;
}
footer nav a {
  margin: 0 15px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 10px #FFD700;
}
