/* ==========================================================================
   Error Pages (404, 500, etc.)
   ========================================================================== */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px;
}

.error-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

/* Mascot */
.error-mascot {
    flex-shrink: 0;
}

.mascot-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Message */
.error-message {
    text-align: left;
}

.error-message h1 {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-message h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 8px 0 16px;
    color: var(--text-primary);
}

.error-message p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 400px;
}

.error-actions {
    display: flex;
    gap: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .error-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .error-message {
        text-align: center;
    }

    .error-message h1 {
        font-size: 5rem;
    }

    .error-message h2 {
        font-size: 1.5rem;
    }

    .mascot-image {
        width: 200px;
        height: 200px;
    }

    .error-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}
