body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(180deg, #0a2a5e 0%, #123f8c 100%);
  color: #1a1a1a;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* ================= HEADER ================= */

header {
  text-align: center;
  margin-bottom: 30px;
}

.logo-wrapper {
  width: 160px;
  height: 160px;
  background: white;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 5px solid #d4af37; /* Goldrand */
}

.logo-wrapper img {
  max-width: 120px;
}

h1 {
  color: #0a2a5e;
  margin-bottom: 5px;
}

h2 {
  font-weight: normal;
  color: #555;
  margin-top: 0;
}

.jubilee {
  color: #d4af37;
  font-weight: bold;
}

/* ================= INFO BOX ================= */

.info-box {
  background: #f4f8ff;
  padding: 25px;
  border-left: 6px solid #d4af37;
  border-radius: 10px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ================= PROGRESS ================= */

.progress-container {
  background: #e5ecfa;
  border-radius: 30px;
  overflow: hidden;
  height: 35px;
}

.progress-bar {
  background: linear-gradient(90deg, #d4af37, #f1d06b);
  height: 100%;
  width: 0%;
  text-align: center;
  line-height: 35px;
  color: #0a2a5e;
  font-weight: bold;
  transition: width 1.5s ease;
}

.amount-text {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  color: #0a2a5e;
}

/* ================= LEADERBOARD ================= */

.leaderboard-section {
  margin-top: 40px;
}

.leaderboard-section h3 {
  text-align: center;
  color: #0a2a5e;
}

#leaderboardList {
  list-style: none;
  padding: 0;
}

#leaderboardList li {
  background: #f4f8ff;
  margin: 12px 0;
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  border-left: 5px solid #0a2a5e;
  font-weight: 500;

  opacity: 0;
  transform: translateX(-60px);
  animation: slideIn 0.6s forwards;
}

#leaderboardList li span {
  font-weight: bold;
  color: #d4af37;
}

/* Animationsverzögerung */
#leaderboardList li:nth-child(1) { animation-delay: 0.2s; }
#leaderboardList li:nth-child(2) { animation-delay: 0.4s; }
#leaderboardList li:nth-child(3) { animation-delay: 0.6s; }
#leaderboardList li:nth-child(4) { animation-delay: 0.8s; }
#leaderboardList li:nth-child(5) { animation-delay: 1s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= MOBILE OPTIMIERUNG ================= */

@media (max-width: 768px) {

  body {
    padding: 0 10px;
  }

  .container {
    margin: 20px auto;
    padding: 25px;
    border-radius: 14px;
  }

  .logo-wrapper {
    width: 120px;
    height: 120px;
  }

  .logo-wrapper img {
    max-width: 85px;
  }

  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 16px;
  }

  .info-box {
    padding: 18px;
    font-size: 15px;
  }

  .progress-container {
    height: 28px;
  }

  .progress-bar {
    line-height: 28px;
    font-size: 14px;
  }

  .amount-text {
    font-size: 15px;
  }

  #leaderboardList li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 15px;
  }

  #leaderboardList li span {
    align-self: flex-end;
  }

}
