/* 404 and 500 Page Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #183a5b;
    color: #ffffff;
}

.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.error-content {
    z-index: 1;
    color: #ffffff;
}

.error-content h1 {
    font-size: 10rem;
    margin: 0;
    color: #007bff;
}

.error-content h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    color: #ffffff;
}

.error-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.error-content .btn {
    background-color: #007bff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.error-content .btn:hover {
    background-color: #0056b3;
}

/* Background Effect */
.error-background {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #007bff 0%, #0056b3 80%);
    clip-path: circle(60% at center);
    z-index: 0;
    animation: float 15s infinite linear;
    opacity: 0.15;
}

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

