body {
  background: linear-gradient(135deg, #1e1e2f, #2e2e4e);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  min-height: 100vh;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  animation: fadeIn 2s ease forwards;
  opacity: 0;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

button {
  background-color: #ff5e57;
  color: white;
  padding: 12px 28px;
  font-size: 1em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s;
}

button:hover {
  background-color: #ff3c36;
  transform: scale(1.05);
}

.site-footer {
  text-align: center;
  font-size: 0.9em;
  color: #ccc;
  margin-top: 80px; /* <-- augmenté ici */
}


@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}
