

/* Structure globale */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #000000;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.65;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 22px 26px;
  background: rgba(28, 28, 30, 0.6);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

/* Titres */
h1, h2 {
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}

h1 {
  font-size: 2.8rem;
  text-align: center;
  margin-top: 0;
}

h2 {
  font-size: 1.7rem;
  margin-top: 44px;
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 8px;
}

/* Paragraphes */
p {
  font-size: 1.12rem;
  color: #e0e0e0;
  margin-bottom: 22px;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}



/* Textes en gras */
strong {
  color: #ff375f;
}

/* Liens */
a {
  color: #5ac8fa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease-in-out;
}

a:hover,
a:focus {
  color: #ff375f;
  text-decoration: underline;
  outline-offset: 2px;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 24px 0 42px;
  font-size: 0.95rem;
  color: #b0b0b0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.site-footer a {
  font-weight: 600;
  color: #b0b0b0;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #ff375f;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    margin: 40px 20px 60px 20px;
    padding: 25px 20px;
  }
  h1 {
    font-size: 2.3rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  p {
    font-size: 1rem;
  }
}
