:root {
            --bg-gradient-start: #050816;
            --bg-gradient-end: #141b2d;
            --accent: #ff7a1a;
            --accent-soft: rgba(255, 122, 26, 0.15);
            --text-primary: #f7f7ff;
            --text-secondary: #adb2c8;
            --card-bg: rgba(10, 16, 32, 0.9);
            --card-border: rgba(255, 255, 255, 0.05);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: radial-gradient(120% 120% at 0% 0%, #1f2937 0%, #020617 45%, #020617 100%);
            color: var(--text-primary);
        }

        .background-orbits {
            position: fixed;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: -1;
        }

        .orbit {
            position: absolute;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.12);
            mix-blend-mode: screen;
        }

        .orbit.orbit-1 {
            width: 520px;
            height: 520px;
            top: -140px;
            right: -60px;
        }

        .orbit.orbit-2 {
            width: 420px;
            height: 420px;
            bottom: -160px;
            left: -40px;
        }

        .glow {
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 999px;
            background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 60%),
                        radial-gradient(circle at 80% 80%, rgba(255, 122, 26, 0.55), transparent 65%);
            filter: blur(22px);
            opacity: 0.7;
            top: 10%;
            right: 8%;
        }

        .container {
            width: 100%;
            max-width: 460px;
        }

        .card {
            position: relative;
            background: var(--card-bg);
            border-radius: 24px;
            padding: 24px 22px 22px;
            border: 1px solid var(--card-border);
            box-shadow:
                    0 22px 45px rgba(15, 23, 42, 0.75),
                    0 0 0 1px rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(18px);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(148, 163, 184, 0.35);
            color: var(--text-secondary);
            font-size: 11px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: #22c55e;
            box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
        }

        .header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }

        .logo-wrapper {
            width: 52px;
            height: 52px;
            border-radius: 15px;
            background: radial-gradient(circle at 0% 0%, #f97316, #ea580c 40%, #020617 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                    0 14px 28px rgba(15, 23, 42, 0.9),
                    0 0 0 1px rgba(248, 250, 252, 0.06);
            overflow: hidden;
        }

        .logo-wrapper img {
            max-width: 65%;
            max-height: 65%;
            object-fit: contain;
        }

        .title-group {
            flex: 1;
            min-width: 0;
        }

        .title {
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 0.02em;
            margin-bottom: 2px;
        }

        .subtitle {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .message {
            margin-top: 12px;
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        .message strong {
            color: var(--text-primary);
            font-weight: 500;
        }

        .actions {
            margin-top: 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .btn-primary,
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            padding: 10px 16px;
            text-decoration: none;
            transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, color 0.12s ease-out;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: #0b1120;
            box-shadow:
                    0 14px 30px rgba(248, 113, 22, 0.45),
                    0 0 0 1px rgba(248, 250, 252, 0.15);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow:
                    0 18px 40px rgba(248, 113, 22, 0.55),
                    0 0 0 1px rgba(248, 250, 252, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid rgba(148, 163, 184, 0.5);
        }

        .btn-secondary:hover {
            color: var(--text-primary);
            border-color: rgba(248, 250, 252, 0.7);
            background: rgba(15, 23, 42, 0.7);
        }

        .btn-icon {
            width: 18px;
            height: 18px;
            border-radius: 999px;
            border: 1px solid rgba(15, 23, 42, 0.6);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            background: rgba(15, 23, 42, 0.2);
        }

        .helper {
            margin-top: 16px;
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .helper-pill {
            padding: 2px 8px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.45);
            font-size: 11px;
            text-transform: uppercase;
            opacity: 0.9;
        }

        @media (min-width: 480px) {
            .actions {
                flex-direction: row;
            }
        }
