body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #fffde7, #fff9c4);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #000;
}

.container {
  width: 90%;
  max-width: 1000px;
  text-align: center;
  background: #fffde7;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #fbc02d;
}

.leaderboard-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.user-card {
  border: 1px solid #ffe082;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  background: #e2da7b;
  box-shadow: 2px 2px 12px rgba(255, 235, 59, 0.2);
  transition: transform 0.2s ease;
}

.user-card:hover {
  transform: translateY(-5px);
  box-shadow: 2px 2px 20px rgba(242, 242, 42, 0.641);
}

.user-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #f1ea19;
}

.user-card p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #6d4c41;
}

.user-card a {
  color: #fdd835;
  text-decoration: none;
  font-weight: 500;
}

.user-card a:hover {
  text-decoration: underline;
}
