/* 404 Error Page Styles */
.error-page {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #2d3748 0%, #1a202c 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(0, 177, 207, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
}

.error-page::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(0, 177, 207, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
}

.error-page__container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.error-page__code {
    font-size: clamp(8rem, 15vw, 12rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -1rem;
    letter-spacing: -0.05em;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.error-page__content {
    max-width: 600px;
}

.error-page__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.error-page__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.error-page__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-page__button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.error-page__button--primary {
    background: #00b1cf;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 177, 207, 0.3);
}

.error-page__button--primary:hover {
    background: #0097ad;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 177, 207, 0.4);
}

.error-page__button--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.error-page__button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.error-page__image {
    margin-top: 3rem;
    opacity: 0.8;
    filter: drop-shadow(0 0 30px rgba(0, 177, 207, 0.2));
}

@media (max-width: 768px) {
    .error-page {
        min-height: 60vh;
        padding: 6rem 1.5rem 4rem;
    }

    .error-page__actions {
        flex-direction: column;
        width: 100%;
    }

    .error-page__button {
        width: 100%;
        text-align: center;
    }
}