/* Dégradé orangé */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff6f00, #f4cf61);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Conteneur principal */
.container {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeIn 1.5s ease-in-out;
    max-width: 500px;
}

/* Icône */
.container i {
    font-size: 60px;
    color: white;
    animation: rotate 2s infinite alternate ease-in-out;
}

/* Texte */
h1 {
    font-size: 30px;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Bouton */
.button {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Effet au survol */
.button:hover {
    background: #4a4a4a;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(-10deg);
    }
    to {
        transform: rotate(10deg);
    }
}
