/* 404 Page Styles */
.error-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(90deg, rgba(0,123,255,0.08) 0%, rgba(102,16,242,0.08) 100%);
    position: relative;
}

.error-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.error-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

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

.error-text {
    flex: 1 1 0;
    min-width: 0;
}

.error-text h1 {
    font-family: var(--ff-accent);
    font-size: 8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}


.error-image {
    max-width: 320px;
    flex: 0 0 320px;
    margin: 0;
}

.error-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.error-image img:hover {
    transform: translateY(-5px);
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

/* CTA Section */
.cta {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,123,255,0.1) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-family: var(--ff-accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .error-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .error-image {
        max-width: 400px;
        flex: none;
        margin: 2rem auto;
    }
    .error-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .error-hero {
        padding: 60px 20px;
    }

    .error-text h1 {
        font-size: 6rem;
    }

    .error-text h2 {
        font-size: 2rem;
    }

    .error-text p {
        font-size: 1.1rem;
    }

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

    .cta {
        padding: 60px 20px;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }
} 