/* --- CONFIGURATION GLOBALE ET FIXATION DU ZOOM --- */
html, body {
    overflow-x: hidden; /* Empêche le défilement horizontal */
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    background: radial-gradient(circle, #ffdee9 0%, #b591fe 100%);
    font-family: 'Dancing Script', cursive;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Empêche le dézoom dû aux cœurs qui sortent */
}

.content { 
    text-align: center; 
}

#message {
    font-size: 80px;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in;
}

#heart-container {
    font-size: 120px;
    cursor: pointer;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.floating-heart {
    position: absolute;
    font-size: 24px;
    pointer-events: none;
}

/* --- AJUSTEMENTS POUR TELEPHONES --- */
@media screen and (max-width: 600px) {
    body {
        overflow-x: hidden;
        height: 100vh;
        padding: 0;
    }

    .content {
        padding: 0 10px;
        width: 90%;
        margin: auto;
    }

    #message {
        font-size: 50px; 
        line-height: 1.1;
        margin-bottom: 30px;
    }

    #heart-container {
        font-size: 80px;
    }

    .floating-heart {
        font-size: 18px;
    }
}