/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    /*background: url('') no-repeat center center/cover; /* Remplacez par une image adaptée */
    background-color: black;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-blend-mode: overlay;
    overflow-y: auto;
    /*background-color: rgba(0, 0, 0, 0.8); /* Ajoute une teinte sombre pour lisibilité */
  }
  
  /* Container Styles */
  .container {
    max-width: 333px;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    width:90%;
  }
  
  /* Heading Styles */
  h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    color: #fff; /* Accentue le texte */
    text-shadow: #fff; /* Ajoute un effet néon */
  }
  
  /* Input Field Styles */
  input[type="password"] {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #444;
    border-radius: 5px;
    background: rgba(30, 30, 30, 0.95);
    color: #fff;
    font-size: 1rem;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  }
  
  /* Button Styles */
  button {
    padding: 3px 10px;
    background:black;
    border: none;
    color: rgb(255, 255, 255);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  }
  
  button:hover {
    background: linear-gradient(45deg, #c03e1b, #f04e23);
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(240, 78, 35, 0.5);
  }
  
  /* Error Message Styles */
  .error {
    color: #f04e23;
    font-size: 0.9rem;
    margin-top: 10px;
    text-shadow: 1px 1px 5px rgba(240, 78, 35, 0.6);
  }
  
  #password-section, #waitlist-section {
    width: 300px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 5px;
  }
  
  .countainer {
    max-width: 222px;
    padding: 20px;
    background:black;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
  }
  
  h4{
    font-family: 'Courier New', monospace;
  }
  
  h2{
    font-family: 'Courier New', monospace;
  }
  
  input[type="email"],#name {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #444;
    border-radius: 5px;
    background: rgba(30, 30, 30, 0.95);
    color: #fff;
    font-size: 1rem;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  }
  
  
  /* Cinematic Intro Container */
  .intro {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    animation: fadeOut 3s ease-in-out 120s forwards; /* 120s delay */
  
  }
  
  /* Creative, Modern Text */
  .intro-text {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
    position: relative;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards, textGlow 2s ease-in-out 1s forwards;
  }
  
  
  /* Soft Grey Glow and Underline Animation */
  @keyframes textGlow {
    0% { text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #b0b0b0, 0 0 20px #b0b0b0; }
    100% { text-shadow: 0 0 10px #ffffff, 0 0 20px #a0a0a0, 0 0 30px #a0a0a0, 0 0 40px #a0a0a0; }
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Logo Styling */
  .intro-logo {
    width: 180px; /* Larger logo */
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 1s forwards; /* Add delay to logo */
  }
  
  /* Fade Out Effect */
  @keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
  }
  
  /* Hide Main Content Initially */
  .hidden {
    display: none;
  }
  
  .enter-btn {
    font-family: 'Lato', sans-serif;
    font-size: 0.6rem;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: absolute;
    bottom: 170px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    padding: 6px 12px;
    transition: 0.3s;
    opacity: 1;
    background: transparent;
    border-radius: 6px;
  }
  
  .enter-btn:hover {
    background: white;
    color: black;
  }
  
  /* ✅ Ajout pour petits écrans */
  @media (max-height: 600px), (max-width: 400px) {
    .enter-btn {
      position: static;
      margin-top: 20px;
      transform: none;
    }
  }
  
  