        :root {
            --bg-1: #090c11;
            --bg-2: #10151d;
            --card: rgba(18, 24, 34, 0.88);
            --border: rgba(255, 255, 255, 0.08);
            --text: #f5f7fb;
            --muted: #9ba8bb;
            --accent: #c0161f;
            --accent-soft: rgba(192, 22, 31, 0.18);
            --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
            --radius: 26px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            min-height: 100%;
        }

        body {
            font-family: "Poppins", sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at 20% 20%, rgba(192, 22, 31, 0.16), transparent 28%),
                radial-gradient(circle at 80% 30%, rgba(57, 78, 115, 0.12), transparent 26%),
                linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
            overflow: hidden;
        }

        h1, h2, h3, h4 {
    font-family: "Rajdhani", sans-serif;
}

        body::before,
        body::after {
            content: "";
            position: fixed;
            inset: auto;
            border-radius: 999px;
            filter: blur(80px);
            pointer-events: none;
            opacity: 0.8;
        }

        body::before {
            width: 320px;
            height: 320px;
            top: 10%;
            left: -60px;
            background: rgba(192, 22, 31, 0.22);
            animation: floatOne 9s ease-in-out infinite alternate;
        }

        body::after {
            width: 280px;
            height: 280px;
            right: -40px;
            bottom: 8%;
            background: rgba(255, 255, 255, 0.05);
            animation: floatTwo 11s ease-in-out infinite alternate;
        }

        .page {
            position: relative;
            min-height: 100vh;
            display: grid;
            place-items: center;
            padding: 24px;
        }

        .card {
            position: relative;
            width: min(100%, 720px);
            padding: 42px 34px;
            border-radius: var(--radius);
            background: var(--card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            backdrop-filter: blur(16px);
            text-align: center;
            overflow: hidden;
        }

        .card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(192, 22, 31, 0.08), transparent 42%),
                linear-gradient(315deg, rgba(255, 255, 255, 0.03), transparent 32%);
            pointer-events: none;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 22px;
            padding: 10px 18px;
            border-radius: 999px;
            background: var(--accent-soft);
            border: 1px solid rgba(192, 22, 31, 0.24);
            color: #ff8f95;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .badge-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #ff5059;
            box-shadow: 0 0 0 8px rgba(255, 80, 89, 0.12);
            animation: pulse 1.5s ease-in-out infinite;
        }

        h1 {
            position: relative;
            z-index: 1;
            font-size: clamp(2.1rem, 5vw, 3.4rem);
            line-height: 1.03;
            letter-spacing: -0.04em;
            font-weight: 900;
            margin-bottom: 18px;
        }

        .description {
            position: relative;
            z-index: 1;
            max-width: 620px;
            margin: 0 auto 28px;
            color: var(--muted);
            font-size: 1.02rem;
            line-height: 1.9;
        }

        .highlight {
            color: var(--text);
            font-weight: 800;
        }

        .loader-wrap {
            position: relative;
            z-index: 1;
            max-width: 520px;
            margin: 0 auto 20px;
            padding: 22px 20px;
            border-radius: 22px;
            background: rgba(12, 17, 24, 0.86);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .loader-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 14px;
        }

        .loader-label {
            font-size: 0.96rem;
            font-weight: 800;
            color: var(--text);
        }

        .loader-time {
            font-size: 0.92rem;
            font-weight: 700;
            color: #ff8f95;
        }

        .progress {
            width: 100%;
            height: 14px;
            padding: 3px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.05);
            overflow: hidden;
        }

        .bottom-text {
            position: relative;
            z-index: 1;
            color: var(--muted);
            font-size: 0.94rem;
            line-height: 1.8;
        }

        .manual-link {
            margin-top: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 50px;
            padding: 0 22px;
            border-radius: 999px;
            background: linear-gradient(135deg, #a90f17 0%, #d81c26 100%);
            color: #fff;
            font-size: 0.92rem;
            font-weight: 800;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 14px 30px rgba(192, 22, 31, 0.26);
        }

        .manual-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 36px rgba(192, 22, 31, 0.34);
        }

        @keyframes fillBar {
            from {
                width: 0%;
            }
            to {
                width: 100%;
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.15);
                opacity: 0.85;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes floatOne {
            from {
                transform: translate(0, 0);
            }
            to {
                transform: translate(50px, 35px);
            }
        }

        @keyframes floatTwo {
            from {
                transform: translate(0, 0);
            }
            to {
                transform: translate(-40px, -30px);
            }
        }

        @media (max-width: 640px) {
            .card {
                padding: 30px 18px;
                border-radius: 22px;
            }

            .loader-wrap {
                padding: 18px 16px;
                border-radius: 18px;
            }

            .loader-top {
                flex-direction: column;
                align-items: flex-start;
            }

            .description,
            .bottom-text {
                font-size: 0.94rem;
                line-height: 1.8;
            }

            .manual-link {
                width: 100%;
            }
        }