/* Premium 404 Page Styles */
.page-404 {
    background-color: #ffffff !important;
    min-height: 70vh !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d6efd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 12rem;
    line-height: 1;
    letter-spacing: -5px;
    text-shadow: 0px 10px 30px rgba(13, 110, 253, 0.15);
    display: inline-block;
}

.error-title {
    color: #102044;
    letter-spacing: -0.5px;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .text-gradient { font-size: 8rem; }
}
