        :root {
            --bg-1: #fff7e7;
            --bg-2: #eef6ff;
            --ink: #1b2b58;
            --muted: #4d6188;
            --brand: #ff9f1c;
            --brand-2: #2f7de1;
            --card: rgba(255, 255, 255, 0.88);
            --line: rgba(27, 43, 88, 0.14);
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            min-height: 100vh;
            font-family: "Jost", sans-serif;
            color: var(--ink);
            background: linear-gradient(135deg, var(--bg-1) 0%, #ffffff 35%, var(--bg-2) 100%);
            overflow-x: hidden;
        }

        .bg-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(2px);
            pointer-events: none;
            opacity: 0.6;
            animation: drift 16s ease-in-out infinite;
        }

        .bg-orb.one {
            width: 260px;
            height: 260px;
            top: -70px;
            left: -60px;
            background: radial-gradient(circle, rgba(255, 159, 28, 0.5), rgba(255, 159, 28, 0));
        }

        .bg-orb.two {
            width: 320px;
            height: 320px;
            right: -90px;
            bottom: -80px;
            background: radial-gradient(circle, rgba(47, 125, 225, 0.35), rgba(47, 125, 225, 0));
            animation-delay: 2s;
        }

        .wrap {
            min-height: 100vh;
            display: grid;
            place-items: center;
            padding: 28px 14px;
        }

        .panel {
            width: min(900px, 100%);
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(24, 47, 95, 0.15);
            padding: 34px 28px;
            position: relative;
            overflow: hidden;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1px solid rgba(255, 159, 28, 0.35);
            color: #bf6f00;
            border-radius: 999px;
            padding: 7px 14px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.2px;
        }

        .title {
            margin: 14px 0 8px;
            font-family: "Baloo 2", cursive;
            font-size: clamp(36px, 6vw, 62px);
            line-height: 1.02;
            letter-spacing: 0.4px;
        }

        .title span {
            display: inline-block;
            animation: lift 2.2s ease-in-out infinite;
        }

        .title span:nth-child(2) {
            animation-delay: 0.12s;
        }

        .title span:nth-child(3) {
            animation-delay: 0.24s;
        }

        .title span:nth-child(4) {
            animation-delay: 0.36s;
        }

        .subtitle {
            margin: 0;
            color: var(--muted);
            font-size: clamp(17px, 2.5vw, 22px);
            line-height: 1.6;
            max-width: 760px;
        }

        .loader {
            margin: 26px 0 24px;
            height: 12px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid var(--line);
            overflow: hidden;
            position: relative;
        }

        .loader::before {
            content: "";
            position: absolute;
            inset: 0;
            width: 36%;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--brand), var(--brand-2));
            animation: loading 2.8s ease-in-out infinite;
        }

        .note {
            font-size: 15px;
            color: #52658f;
            margin-bottom: 22px;
        }

        .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 18px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            transition: transform 0.22s ease, box-shadow 0.22s ease;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--brand), #ff7b00);
            color: #fff;
            box-shadow: 0 10px 24px rgba(255, 123, 0, 0.35);
        }

        .btn-secondary {
            border: 1px solid var(--line);
            color: var(--ink);
            background: #fff;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        @keyframes loading {
            0% {
                transform: translateX(-110%);
            }
            50% {
                transform: translateX(160%);
            }
            100% {
                transform: translateX(-110%);
            }
        }

        @keyframes lift {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        @keyframes drift {
            0%,
            100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(12px) scale(1.04);
            }
        }

        @media (max-width: 575px) {
            .panel {
                padding: 24px 16px;
                border-radius: 18px;
            }

            .actions {
                flex-direction: column;
            }
        }
    
