* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    /* Dégradé orange Latoo */
    background: linear-gradient(135deg, #ffdc95, #fb5a02);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 500px;
    padding: 40px 30px;
    background: rgba(94, 22, 0, 0.62);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.logo {
    max-width: 180px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    font-size: 1.3rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .logo {
        max-width: 140px;
        margin-bottom: 25px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    .logo {
        max-width: 120px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.5;
    }
}
