        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');


        body {
            font-family: 'Poppins', sans-serif;
            background: #f9f9fb;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            color: #333;
        }

        .redirect-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            font-family: "Poppins", sans-serif;
        }

        .redirect-text {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 500;
            color: #333;
        }

        .loader-bar {
            width: 120px;
            height: 6px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .loader-fill {
            height: 100%;
            width: 40%;
            background: linear-gradient(90deg, #3498db, #8e44ad, #3498db);
            background-size: 200% 100%;
            animation: load-slide 1.2s infinite ease-in-out;
            border-radius: 10px;
        }

        @keyframes load-slide {
            0% {
                transform: translateX(-100%);
                background-position: 0 0;
            }

            50% {
                background-position: 200% 0;
            }

            100% {
                transform: translateX(300%);
            }
        }

        /* Container */
        .fallback-container,
        .notfound-container {
            max-width: 500px;
            margin: 60px auto;
            padding: 25px;
            text-align: center;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            font-family: 'Poppins', sans-serif;
            animation: fadeIn 0.6s ease-in-out;
        }

        /* Icon */
        .fallback-icon,
        .notfound-icon {
            font-size: 50px;
            color: #e74c3c;
            margin-bottom: 15px;
        }

        .fallback-text,
        .notfound-title {
            font-size: 22px;
            font-weight: 700;
            color: #e74c3c;
            margin-bottom: 10px;
        }


        .fallback-desc,
        .notfound-desc {
            font-size: 15px;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        /* Buttons row */
        .btn-row,
        .notfound-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 10px 16px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-primary,
        .btn-home {
            background: #3498db;
            color: white;
        }

        .btn-primary:hover,
        .btn-home:hover {
            background: #2980b9;
        }

        .btn-success,
        .btn-contact {
            background: #2ecc71;
            color: white;
        }

        .btn-success:hover,
        .btn-contact:hover {
            background: #27ae60;
        }


        .cta-text {
            font-size: 15px;
            color: #777;
            margin-top: 12px;
        }

        .retry-text {
            font-size: 13px;
            color: #777;
            margin-top: 5px;
        }


        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Responsive */
        @media (max-width: 500px) {

            .fallback-container,
            .notfound-container {
                margin: 20px;
                padding: 20px;
            }

            .fallback-text,
            .notfound-title {
                font-size: 20px;
            }

            .btn {
                display: block;
                width: 100%;
                text-align: center;
                font-size: 14px;
                box-sizing: border-box;
                border-radius: 6px;
                margin-bottom: 0px;
            }
        }