/* 404 Page Styles */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #fff, var(--color-slot-bg));
}

.page-404 .error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--color-highlight);
    margin-bottom: 20px;
    animation: bounce 1.5s infinite;
}

.page-404 .error-message {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-black);
}

.page-404 .error-description {
    font-size: 16px;
    color: var(--color-secondary);
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}

.page-404 .animated-apron img {
    max-width: 250px;
    margin-top: 40px;
    animation: float 3s ease-in-out infinite;
}

/* Button spacing */
.page-404 .btn {
    margin-top: 20px;
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-404 .error-code {
        font-size: 80px;
    }

    .page-404 .error-message {
        font-size: 24px;
    }

    .page-404 .error-description {
        font-size: 14px;
    }

    .page-404 .animated-apron img {
        max-width: 180px;
    }
}
