body {
  margin: 0;
  background: #0f0f1b;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}

.main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2 {
  text-align: center;
  color: cyan;
  text-shadow: 0 0 8px cyan;
  margin-bottom: 10px;
}

.section {
  background: #1a1a2e;
  border-radius: 12px;
  box-shadow: 0 0 10px cyan;
  margin: 20px 0;
  padding: 20px;
  transition: transform 0.3s;
}

.section:hover {
  transform: scale(1.01);
}

iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: 0 0 8px #00ffc3;
}

/* Bet Slips */
#bet-slips ul {
  list-style: none;
  padding: 0;
}

#bet-slips li {
  background: #29293d;
  margin: 5px 0;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 6px #00ffc3;
}

/* Buttons */
button {
  background: #00ffc3;
  color: #000;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px #00ffc3;
  transition: all 0.3s ease;
}

button:hover {
  background: cyan;
  box-shadow: 0 0 20px cyan;
  transform: scale(1.05);
}

/* Filter Buttons */
.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filters button {
  font-weight: bold;
  padding: 8px 14px;
}

.game-card {
  background: #29293d;
  margin: 10px 0;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 8px #00ffc3;
  transition: transform 0.2s;
}

.game-card:hover {
  transform: scale(1.02);
}

.balance {
  margin-top: 10px;
  text-align: center;
  font-size: 1.1rem;
  color: #00ffc3;
}

.footer {
  text-align: center;
  margin-top: 20px;
  color: #00ffc3;
}

.footer a {
  margin: 0 10px;
  color: #00ffc3;
  font-weight: bold;
  text-decoration: none;
}

.footer a:hover {
  text-shadow: 0 0 8px cyan;
}

@media (max-width: 768px) {
  .section {
    margin: 15px;
    padding: 15px;
  }
  iframe {
    height: 200px;
  }
  .neon-button {
  background: linear-gradient(135deg, #00f5ff, #007cf0);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 15px #00f5ff;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  margin-top: 15px;
}

.neon-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00f5ff, 0 0 50px #007cf0;
}
}
