body {
  margin: 0;
  font-family: 'Lexend', sans-serif;
  background-color: #150025;
  color: #f0e9ff;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.title {
  font-size: 3rem;
  color: #c299ff;
  margin-bottom: 2rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.coin-image {
  width: 220px;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.jackpot-section {
  text-align: center;
}

.jackpot-subtext {
  font-size: 1.1rem;
  color: #d5aaff;
  margin-bottom: 0.5rem;
}

.jackpot-label {
  font-size: 0.9rem;
  color: #bbb;
  text-transform: uppercase;
}

.jackpot-amount {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0.5rem 0;
}

.play-button {
  background: linear-gradient(145deg, #9f4dff, #c266ff);
  color: white;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.05);
}

.stats-box {
  display: flex;
  justify-content: space-around;
  background-color: #22003c;
  padding: 1.5rem;
  border-radius: 16px;
  margin: 2rem 0;
}

.stat {
  text-align: center;
}

.stat-label {
  font-size: 0.8rem;
  color: #b8a1d9;
  text-transform: uppercase;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.socials img {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.legal-link {
  font-size: 0.9rem;
  color: #a57fff;
  text-decoration: none;
}

.legal-link:hover {
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 0, 20, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #22003c;
  border: 2px solid #a55eff;
  color: #f0e9ff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 80%;
  box-shadow: 0 0 20px #a55eff80;
  animation: popup 0.3s ease-out;
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
  color: #d3a2ff;
  font-size: 1.8rem;
}

.modal-content p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #ccc;
}

.modal-content button {
  margin-top: 1.2rem;
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.modal-content button:first-of-type {
  background-color: #a55eff;
  color: #150025;
}

.modal-content button:first-of-type:hover {
  background-color: #c266ff;
}

.modal-content button:last-of-type {
  background-color: #ff5e5e;
  color: #fff;
}

.modal-content button:last-of-type:hover {
  background-color: #ff7a7a;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
}

@keyframes popup {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
  .stats-box {
    flex-direction: column;
    gap: 1rem;
  }
}
