/* RESET COMPLET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Empêche la sélection de texte accidentelle */
    -webkit-tap-highlight-color: transparent;
    user-select: none; 
}

html, body {
    width: 100%;
    height: 100%;
    /* INTERDICTION STRICTE DU SCROLL */
    overflow: hidden; 
    font-family: sans-serif;
    /* Couleur de fond hors de la zone mobile (pour écran PC) */
    background-color: #111; 
}

/* Centre le contenu sur écran PC */
body {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Conteneur principal */
.mobile-container {
    width: 100%;
    /* Largeur max d'un gros smartphone */
    max-width: 480px; 
    
    /* Utilise 100% de la hauteur dispo, ou 100dvh pour gérer les barres de nav mobiles */
    height: 100%; 
    height: 100dvh; 
    
    background: linear-gradient(to bottom, #001a33, #004080);
    
    /* Positionnement */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* Coupe tout ce qui dépasse du cadre */
    overflow: hidden; 
    
    /* Ombre portée seulement visible sur PC */
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

/* --- Styles du Logo --- */
.logo-wrapper {
    flex-grow: 1; /* Le logo prend l'espace central */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 90px;
    height: 90px;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1.1); opacity: 0.9; box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* --- Styles du Pied de page --- */
footer {
    width: 100%;
    text-align: center;
    padding-bottom: 20px; /* Marge interne pour ne pas coller au bord bas */
    /* Assure que le footer reste en bas sans position absolute qui pourrait sortir du flux */
    flex-shrink: 0; 
}

footer p {
    color: white;
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}