/* Reset basique */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-45deg, #4B0082, #4169E1, #6A5ACD, #7B68EE);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #fff;
  text-align: center;
  padding: 20px;
}

@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.container {
  background: rgba(0, 0, 0, 0.5);
  padding: 60px 40px;
  border-radius: 20px;
  max-width: 700px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #DA70D6, #87CEFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 1.7rem;
  margin-bottom: 35px;
  color: #f0f0f0;
}

ul {
  list-style: none;
  margin-bottom: 35px;
}

ul li {
  font-size: 1.3rem;
  margin: 12px 0;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  transition: transform 0.3s, background 0.3s;
}

ul li:hover {
  transform: translateX(12px);
  background: rgba(255,255,255,0.2);
}

.wip {
  font-size: 1.1rem;
  font-style: italic;
  color: #FFD700;
}

/* Fade-in animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.fade-in.delay-1 { animation-delay: 0.3s; }
.fade-in.delay-2 { animation-delay: 0.6s; }
.fade-in.delay-3 { animation-delay: 0.9s; }
.fade-in.delay-4 { animation-delay: 1.2s; }
.fade-in.delay-5 { animation-delay: 1.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.3rem; }
  ul li { font-size: 1rem; }
}
