@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

html, body, body *  {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: url('casino.jpg') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.content {
  max-width: 700px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.sub {
  font-size: 1rem;
  color: #7fff00;
  margin-bottom: 20px;
}

.bonus-box {
  background: linear-gradient(90deg, #ffcc00, #ff8800);
  color: #000;
  font-weight: 600;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 25px;
  box-shadow: 0 0 25px rgba(255, 200, 0, 0.8);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 15px rgba(255, 200, 0, 0.5);
  }
  to {
    box-shadow: 0 0 35px rgba(255, 200, 0, 0.9);
  }
}

.icons {
  font-size: 2rem;
  margin-bottom: 20px;
}

.desc {
  font-size: 1rem;
  margin-bottom: 25px;
}

.whatsapp-btn {
  display: inline-block;
  background: linear-gradient(90deg, #25d366, #128c7e);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.9);
}

.footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ccc;
}

.copy {
  font-size: 0.8rem;
  color: #888;
  margin-top: 5px;
}
.whatsapp-btn, .platform-btn {
  display: block;
  margin: 10px auto; /* espacio entre botones */
  width: 100%;
  max-width: 400px;
}
.platform-btn {
  display: block;
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.6);
  margin-top: 15px;
}

.platform-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0, 123, 255, 0.9);
}
