/* © [Michael Ronoubigouwa Ambouroue Avaro, PhD ], [juin 2026] - Tous droits réservés. */
#splash-screen {
    position: fixed;
    inset: 0;
    background: #0a1612;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease-out;
    font-family: 'Inter', sans-serif;
  }

  .splash-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    animation: pulse-logo 2s infinite ease-in-out;
  }

  .splash-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(82, 183, 136, 0.1);
    border-top-color: #52b788;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

  .splash-text {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  @keyframes pulse-logo {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
  }
