/* =========================================
   404 Page – MM Stimme Modern
   ========================================= */

.error-404 {
    text-align: center;
    padding: 120px 20px;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease forwards;
}

/* Title */
.error-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--ci-primary);
    margin-bottom: 20px;
}

/* Message */
.error-message {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Button */
.error-button {
    display: inline-block;
    padding: 14px 28px;
    background: var(--ci-accent);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}

.error-button:hover {
    background: var(--ci-accent-dark);
    transform: translateY(-2px);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 480px) {
    .error-title {
        font-size: 36px;
    }
    .error-message {
        font-size: 18px;
    }
    .error-button {
        font-size: 16px;
        padding: 12px 24px;
    }
}
