.not-found-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 24px;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
    margin-bottom: 24px;
}

.not-found-container h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.not-found-container p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.astronaut-box {
    margin: 40px 0;
    position: relative;
    height: 150px;
    width: 200px;
}

.astronaut {
    position: absolute;
    top: 40%;
    left: 50%;
    animation: float-astro 4s ease-in-out infinite;
}

@keyframes float-astro {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-5deg);
    }

    50% {
        transform: translate(-50%, -60%) rotate(5deg);
    }
}

.helmet {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: inset -5px -5px 0px #e0e0e0;
}

.helmet::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    width: 40px;
    height: 30px;
    background: #333;
    border-radius: 15px;
}

.body {
    width: 50px;
    height: 60px;
    background: #e0e0e0;
    border-radius: 20px;
    position: absolute;
    top: 55px;
    left: 5px;
    z-index: 1;
}

.arm-l,
.arm-r {
    width: 15px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 60px;
}

.arm-l {
    left: -10px;
    transform: rotate(20deg);
}

.arm-r {
    right: -15px;
    transform: rotate(-20deg);
}

.leg-l,
.leg-r {
    width: 18px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 110px;
}

.leg-l {
    left: 5px;
    transform: rotate(10deg);
}

.leg-r {
    right: 25px;
    transform: rotate(-10deg);
}

.redirect-msg {
    font-size: 14px;
    margin-top: 24px;
    opacity: 0.7;
}

#countdown {
    font-weight: 700;
    color: var(--accent-primary);
}