body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

h1 {
  font-size: 2em;
  color: #fff;
  margin-bottom: 10px;
}

p {
  color: #d0f0ff;
  margin-bottom: 20px;
}

.instructions {
  text-align: left;
  padding-left: 20px;
  color: #e0f7fa;
  margin-bottom: 30px;
}

.instructions li {
  margin-bottom: 10px;
}

.buttons {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
}

.red {
  background: #f44336;
}

.red:hover {
  background: #d32f2f;
}

.green {
  background: #4caf50;
}

.green:hover {
  background: #388e3c;
}

.date-note {
  color: #b2ebf2;
  font-size: 0.9em;
}

footer {
  text-align: center;
  font-size: 0.8em;
  color: #ccc;
  margin-top: 40px;
  padding-bottom: 20px;
}

.winner-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.winner-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255,255,255,0.06);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.winner-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  filter: blur(1px);
  object-fit: cover;
}

.winner-info h3 {
  margin: 0;
  color: #fff;
}

.winner-info p {
  margin: 4px 0;
  font-size: 0.95em;
  color: #b2ebf2;
}

.winner-info blockquote {
  font-style: italic;
  font-size: 0.9em;
  color: #e0f7fa;
  margin: 6px 0 0 0;
}
