/* 404 Page Styles */

.not-found-main {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B090A 0%, #161A1D 50%, #660708 100%);
}
.not-found-section {
    text-align: center;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    color: #fff;
    max-width: 100vw;
}
.not-found-title {
    font-size: 6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
.not-found-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}
.not-found-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #fff;
}
.not-found-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: none;
    border: 2px solid rgba(255,255,255,0.15);
}
.not-found-btn:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
    box-shadow: none;
}
