* {
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  height: 100vh;
}

.sorteo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}

.sorteo-card {
  background: #ffffff;
  max-width: 420px;
  width: 100%;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.6s ease;
}

.icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.sorteo-card h1 {
  margin: 0 0 15px;
  color: #333;
  font-size: 26px;
}

.sorteo-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.footer-text {
  display: block;
  font-size: 14px;
  color: #888;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
