/* Import Font Chakra Petch dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&display=swap');

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-left: none;
    border-right: none;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    border: none;
    outline: none;
}

/* Page Background */
body {
    background-color: #0c0026 !important;
    background-image: none !important;
    border: none;
    outline: none;
}

/* Remove borders from all elements */
header, nav, div, section, article, aside, footer {
    border: none;
    outline: none;
    border-left: none;
    border-right: none;
}

/* Reset CSS for this page */
.notfound-section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Not Found Section */
.notfound-section {
    width: 100%;
    min-height: 100vh;
    padding: 120px 20px 50px;
    background-color: #0c0026;
    background-image: none;
    position: relative;
    display: block;
}

.notfound-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Not Found Content */
.notfound-content {
    padding: 50px 40px;
    animation: fadeIn 0.6s ease-out;
}

.notfound-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.notfound-image {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notfound-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

.notfound-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.notfound-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #01c6f3;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(1, 198, 243, 0.5);
}

.notfound-message {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.notfound-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #01c6f3 0%, #128bd1 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(1, 198, 243, 0.3);
}

.notfound-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 198, 243, 0.4);
    background: linear-gradient(135deg, #128bd1 0%, #01c6f3 100%);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .notfound-section {
        padding: 100px 15px 30px;
    }

    .notfound-content {
        padding: 40px 30px;
    }

    .notfound-title {
        font-size: 42px;
    }

    .notfound-message {
        font-size: 18px;
    }

    .notfound-btn {
        font-size: 18px;
        padding: 14px 30px;
    }
}

@media (max-width: 768px) {
    .notfound-section {
        padding: 80px 10px 30px;
    }

    .notfound-content {
        padding: 30px 25px;
    }

    .notfound-image {
        width: 280px;
        height: 280px;
    }

    .notfound-title {
        font-size: 38px;
    }

    .notfound-message {
        font-size: 17px;
        line-height: 1.6;
    }

    .notfound-btn {
        font-size: 17px;
        padding: 12px 28px;
    }
}

@media (max-width: 576px) {
    .notfound-section {
        padding: 70px 10px 30px;
    }

    .notfound-content {
        padding: 25px 20px;
    }

    .notfound-image {
        width: 240px;
        height: 240px;
    }

    .notfound-title {
        font-size: 32px;
    }

    .notfound-message {
        font-size: 16px;
        line-height: 1.5;
    }

    .notfound-btn {
        font-size: 16px;
        padding: 12px 26px;
    }
}