/* 
 * NotFound.css - Premium 404 Page Styles
 * Prox'Wide Network Aesthetic
 */

.not-found-premium {
    --primary: #2563eb;
    --primary-rgb: 37, 99, 235;
    --bg-dark: #020617;
}

.not-found-premium {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    color: white;
    overflow: hidden;
    z-index: 9999;
}

/* Animated Background Mesh */
.not-found-premium .mesh-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    opacity: 0.6;
}

.not-found-premium .mesh-ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: mesh-move 20s infinite alternate ease-in-out;
}

.not-found-premium .ball-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.not-found-premium .ball-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

.not-found-premium .ball-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes mesh-move {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

/* Premium Content Container */
.not-found-premium .premium-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

/* Focal Point: The Animated 404 */
.not-found-premium .vocal-point {
    margin-bottom: 4rem;
}

.not-found-premium .floating-404 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 15rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -8px;
}

.not-found-premium .digit {
    background: linear-gradient(180deg, white 40%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    line-height: 0.8;
}

.not-found-premium .orb-container {
    position: relative;
    width: 140px;
    height: 140px;
}

.not-found-premium .orb-glow {
    position: absolute;
    inset: -20px;
    background: var(--primary);
    filter: blur(40px);
    opacity: 0.4;
    animation: pulse-glow 3s infinite ease-in-out;
}

.not-found-premium .orb-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: orb-bounce 4s infinite ease-in-out;
}

.not-found-premium .orb-inner i {
    transform: translate(-2px, 2px);
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

@keyframes orb-bounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
    transform: scale(0.95);
    }
}

/* Typography */
.not-found-premium .text-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    background: linear-gradient(to right, white, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.not-found-premium .text-content p {
    font-size: 1.4rem;
    color: #94a3b8;
    font-weight: 300;
    margin-bottom: 3.5rem;
    max-width: 500px;
    line-height: 1.5;
}

/* Luxe Buttons */
.not-found-premium .action-wrap {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.not-found-premium .btn-luxe {
    background: white;
    color: #020617;
    padding: 1.2rem 2.8rem;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.not-found-premium .btn-luxe:hover {
    
    box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.4);
    background: var(--primary);
    color: white;
}

/* Footer Info */
.not-found-premium .mini-links {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    justify-content: center;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 20;
}

.not-found-premium .centered-log {
    display: block;
    text-align: center;
    min-width: 300px;
}

.not-found-premium .sep {
    color: #1e293b;
}

/* 
 * PROJECTILE MOTION (Real Physics Approach)
 */
.not-found-premium .jumping-boxes-area {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.not-found-premium .jumping-box-track {
    position: absolute;
    bottom: -150px;
    width: 120px;
    height: 120px;
    will-change: transform;
    animation: box-x var(--jump-duration, 3s) linear forwards;
}

.not-found-premium .jumping-box-physic {
    width: 100%;
    height: 100%;
    will-change: transform;
    animation: box-y var(--jump-duration, 3s) linear forwards;
}

.not-found-premium .jumping-box-spin {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    animation: box-spin var(--jump-duration, 3s) linear forwards;
}

.not-found-premium .jumping-box-spin img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

@keyframes box-x {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--jump-x, 0));
    }
}

@keyframes box-y {
    0% {
        transform: translateY(0) scale(0.6);
        opacity: 0;
        animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    }

    15% {
        opacity: 1;
    }

    50% {
        transform: translateY(var(--jump-y, -80vh)) scale(1.1);
        opacity: 1;
        animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
    }

    85% {
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(0.6);
        opacity: 0;
    }
}

@keyframes box-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(var(--jump-rot, 360deg));
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .not-found-premium .floating-404 {
        font-size: 8rem;
    }

    .not-found-premium .orb-container {
        width: 80px;
        height: 80px;
    }

    .not-found-premium .orb-inner {
        font-size: 2rem;
    }

    .not-found-premium .text-content h1 {
        font-size: 2.5rem;
    }

    .not-found-premium .action-wrap {
        flex-direction: column;
        width: 100%;
    }

    .not-found-premium .btn-luxe {
        width: 100%;
        justify-content: center;
    }
}

