.notfound-wrapper {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    padding: 20px;
}

/* Inner content */
.notfound-container {
    text-align: center;
    max-width: 500px;
    width: 100%;
    animation: fadeIn 1s ease-in;
}

/* Floating 404 */
.notfound-container h1 {
    font-size: 8rem;
    color: var(--color-blue);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

/* Message */
.notfound-container p {
    font-size: 1.3rem;
    color: var(--color-gray);
    margin-bottom: 30px;
    animation: fadeInText 2s ease-in forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

/* Home button */
.notfound-container .btn-home {
    padding: 12px 30px;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed);
    display: inline-block;
    animation: fadeInText 2s ease-in forwards;
    opacity: 0;
    animation-delay: 1s;
}

.notfound-container .btn-home:hover {
    background-color: var(--color-dark-blue);
    transform: scale(1.05);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeInText {
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .notfound-container h1 {
        font-size: 5rem;
    }
    .notfound-container p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .notfound-container h1 {
        font-size: 3.5rem;
    }
    .notfound-container p {
        font-size: 1rem;
    }
    .notfound-container .btn-home {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}
