/* Définition des variables */
:root {
    --background-color:#1e1d1c;
    --body-color:#fff;
    --link-color: #95a9e6;
    --card-bg-color: #333;
    --card-hover-bg-color: #444;
  }
  
  /* Reset simple */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    padding: 1rem;
    color: var(--body-color);
  }
  
  .container {
    max-width: 600px;
    margin: auto;
    text-align: center;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 5vh;
    margin: 1.5rem auto;
  }
  
  h1 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .new-domain {
    font-weight: bold;
    color: var(--link-color);
    text-decoration: none;
    font-size: 1.8rem;
  }
    
  .alert {
    margin: 1.5rem 0;
    font-style: italic;
  }
  
  h2 {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .social-links a {
    background-color: var(--card-bg-color);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    color: var(--link-color);
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .social-links a:hover {
    background-color: var(--card-hover-bg-color);
  }
  
  /* Responsive pour petits écrans */
  @media (max-width: 480px) {
    h1 {
      font-size: 1.4rem;
    }
  
    h2 {
      font-size: 1.2rem;
    }
  
    .social-links {
      flex-direction: column;
      align-items: center;
    }
  
    .social-links a {
      width: 80%;
      text-align: center;
    }
  }
  