/* ============================================================
   amuly.fr - STYLES GLOBAUX
   ============================================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f0f2f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

a { color: #0066cc; text-decoration: none; }
a:hover { text-decoration: underline; }

/* CARD CENTRALE */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

/* LOGO */
.logo {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -1px;
    margin-bottom: 8px;
}
.logo span {
    color: #0066cc;
}

/* TEXTES */
.tagline {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 24px;
}
.description {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* SEPARATEUR */
.separator {
    width: 50px;
    height: 3px;
    background: #0066cc;
    margin: 20px auto;
    border-radius: 2px;
}

/* FOOTER */
.footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #aaa;
}

/* ============================================================
   PAGE 404
   ============================================================ */

.error-code {
    font-size: 4rem;
    color: #dc3545;
    font-weight: 800;
    margin-bottom: 10px;
}
.error-message {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 10px auto;
    color: #666;
}
