*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --cyan:  #00D2FF;
            --green: #00E676;
            --blue:  #007AFF;
            --surface: rgba(12, 16, 24, 0.55);
            --surface-hover: rgba(20, 28, 42, 0.70);
            --border: rgba(255, 255, 255, 0.10);
            --border-accent: rgba(0, 210, 255, 0.30);
            --text: #F0F4F8;
            --muted: rgba(240, 244, 248, 0.45);
            --radius: 18px;
            --font: 'Outfit', sans-serif;
            --mono: 'Fira Code', monospace;
        }

        html, body { height: 100%; }

        body {
            font-family: var(--font);
            background: #000;
            color: var(--text);
            height: 100vh;
            overflow-x: hidden;
            overflow-y: auto;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── LIQUID BACKGROUND ───────────────────────────────── */
        #liquid-bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        /* SVG displacement filter for true liquid morphing */
        #liquid-bg svg { position: absolute; width: 0; height: 0; }

        /* Aurora shimmer: animated conic gradient layer */
        #aurora {
            position: absolute;
            inset: -50%;
            width: 200%; height: 200%;
            background: conic-gradient(
                from 0deg at 40% 50%,
                rgba(0,210,255,0.07) 0deg,
                rgba(0,230,118,0.09) 60deg,
                rgba(120,60,220,0.06) 120deg,
                rgba(255,60,180,0.05) 180deg,
                rgba(0,210,255,0.07) 240deg,
                rgba(0,230,118,0.06) 300deg,
                rgba(0,210,255,0.07) 360deg
            );
            animation: aurora-spin 28s linear infinite;
            will-change: transform;
        }

        @keyframes aurora-spin {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }

        /* Individual orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            will-change: transform;
            filter: url(#liquid-warp);
        }

        .orb-1 {
            width: 500px; height: 500px;
            background: radial-gradient(circle at 40% 40%, rgba(0,210,255,0.75), rgba(0,210,255,0.10) 70%);
            top: 5%; left: 2%;
            animation: o1 22s ease-in-out infinite;
        }
        .orb-2 {
            width: 420px; height: 420px;
            background: radial-gradient(circle at 60% 30%, rgba(0,230,118,0.70), rgba(0,230,118,0.08) 70%);
            bottom: 5%; right: 2%;
            animation: o2 18s ease-in-out infinite;
        }
        .orb-3 {
            width: 300px; height: 300px;
            background: radial-gradient(circle at 50% 50%, rgba(120,60,255,0.65), rgba(120,60,255,0.05) 70%);
            top: 50%; left: 40%;
            animation: o3 25s ease-in-out infinite;
        }
        .orb-4 {
            width: 240px; height: 240px;
            background: radial-gradient(circle at 50% 50%, rgba(255,60,200,0.60), rgba(255,60,200,0.05) 70%);
            top: 15%; right: 20%;
            animation: o4 14s ease-in-out infinite;
        }
        .orb-5 {
            width: 350px; height: 350px;
            background: radial-gradient(circle at 50% 60%, rgba(0,180,255,0.50), rgba(0,255,200,0.05) 70%);
            bottom: 30%; left: 25%;
            animation: o5 30s ease-in-out infinite;
        }

        @keyframes o1 {
            0%   { transform: translate(0,0) scale(1); }
            20%  { transform: translate(100px, 80px) scale(1.08); }
            45%  { transform: translate(60px, 180px) scale(0.94); }
            70%  { transform: translate(-80px, 100px) scale(1.05); }
            100% { transform: translate(0,0) scale(1); }
        }
        @keyframes o2 {
            0%   { transform: translate(0,0) scale(1); }
            25%  { transform: translate(-90px,-70px) scale(1.10); }
            55%  { transform: translate(-40px,-150px) scale(0.92); }
            80%  { transform: translate(70px,-60px) scale(1.06); }
            100% { transform: translate(0,0) scale(1); }
        }
        @keyframes o3 {
            0%   { transform: translate(0,0) scale(1); }
            30%  { transform: translate(120px,-90px) scale(1.12); }
            60%  { transform: translate(-60px,-120px) scale(0.90); }
            85%  { transform: translate(-100px,60px) scale(1.04); }
            100% { transform: translate(0,0) scale(1); }
        }
        @keyframes o4 {
            0%   { transform: translate(0,0) scale(1); }
            35%  { transform: translate(-110px,90px) scale(1.15); }
            65%  { transform: translate(80px,130px) scale(0.88); }
            90%  { transform: translate(50px,-50px) scale(1.08); }
            100% { transform: translate(0,0) scale(1); }
        }
        @keyframes o5 {
            0%   { transform: translate(0,0) scale(1); }
            40%  { transform: translate(90px,-80px) scale(1.07); }
            70%  { transform: translate(-70px,-100px) scale(0.95); }
            90%  { transform: translate(30px,50px) scale(1.03); }
            100% { transform: translate(0,0) scale(1); }
        }

        /* Parallax wrapper — moved by JS on mousemove */
        #orb-layer {
            position: absolute;
            inset: 0;
            transition: transform 0.12s ease-out;
            will-change: transform;
        }

        /* Heavy blur diffusion layer */
        #liquid-blur {
            position: fixed;
            inset: 0;
            z-index: 1;
            backdrop-filter: blur(80px);
            -webkit-backdrop-filter: blur(80px);
            pointer-events: none;
        }

        /* ─── LAYOUT ──────────────────────────────────────────── */
        #app {
            position: relative;
            z-index: 2;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 0;
            box-sizing: border-box;
        }

        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* ─── NAV ─────────────────────────────────────────────── */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(0, 0, 0, 0.40);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border);
        }

        .nav-logo {
            display: flex; align-items: center; gap: 10px;
            font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em;
            color: var(--text);
        }

        .nav-logo svg { color: var(--cyan); }

        .log-entry {
            display: flex; align-items: flex-start; gap: 10px;
            font-family: var(--mono); font-size: 0.8rem;
            line-height: 1.5; padding: 6px 0;
            border-bottom: 1px solid rgba(255,255,255,0.02);
            transition: background-color 0.2s ease, padding-left 0.2s ease;
        }
        .log-entry:last-child { border-bottom: none; }
        .log-entry:hover { background-color: rgba(255,255,255,0.03); padding-left: 8px; border-radius: 4px; }

        .nav-right { display: flex; align-items: center; gap: 10px; }

        /* ─── GLASS ───────────────────────────────────────────── */
        .glass {
            background: var(--surface);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: 0 12px 40px rgba(0,0,0,0.25);
            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .glass:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 15px var(--border-accent);
        }

        /* ─── BUTTONS ─────────────────────────────────────────── */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 7px;
            padding: 9px 18px;
            border-radius: 12px;
            font-size: 0.9rem; font-weight: 600;
            border: none; outline: none;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative; overflow: hidden;
            letter-spacing: 0.3px;
        }
        .btn:active:not(:disabled) { transform: scale(0.97); }
        .btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
        .btn:disabled { opacity: 0.5; cursor: not-allowed; }

        .btn-primary {
            background: var(--blue);
            color: #fff;
        }
        .btn-primary:hover:not(:disabled) { background: #2190ff; box-shadow: 0 0 20px rgba(0,122,255,0.4); }

        .btn-danger {
            background: rgba(239, 68, 68, 0.85);
            color: #fff;
        }
        .btn-danger:hover:not(:disabled) { background: #ef4444; }

        .btn-ghost {
            background: rgba(255,255,255,0.07);
            color: var(--text);
            border: 1px solid var(--border);
        }
        .btn-ghost:hover:not(:disabled) { background: rgba(255,255,255,0.12); }

        .btn-icon {
            width: 44px; height: 44px; padding: 0;
            border-radius: 12px;
            background: rgba(255,255,255,0.04);
            color: var(--muted); border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .btn-icon:active:not(:disabled) { transform: scale(0.92); }
        .btn-icon:hover:not(:disabled) { background: rgba(255,255,255,0.12); color: var(--text); }
        .btn-icon.run:hover:not(:disabled) { background: rgba(0,230,118,0.20); color: var(--green); border-color: rgba(0,230,118,0.30); }
        .btn-icon.edit:hover:not(:disabled) { background: rgba(0,122,255,0.20); color: var(--cyan); border-color: rgba(0,122,255,0.30); }
        .btn-icon.del:hover:not(:disabled) { background: rgba(239,68,68,0.20); color: #f87171; border-color: rgba(239,68,68,0.30); }

        /* ─── INPUTS ──────────────────────────────────────────── */
        .input {
            width: 100%;
            background: rgba(0,0,0,0.25);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 10px 14px;
            color: #fff;
            font-family: var(--font); font-size: 0.95rem;
            outline: none;
            transition: all 0.2s ease;
        }
        .input::placeholder { color: var(--muted); }
        .input:focus { border-color: var(--cyan); background: rgba(0,0,0,0.4); box-shadow: 0 0 10px rgba(0,210,255,0.15); }
        .input:disabled { opacity: 0.5; cursor: not-allowed; }

        /* ─── BADGES ──────────────────────────────────────────── */
        .badge {
            display: inline-flex; align-items: center;
            padding: 3px 10px; border-radius: 99px;
            font-size: 0.72rem; font-weight: 700;
            letter-spacing: 0.02em;
        }

        /* tier colors */
        .t1 { --tc: #2dd4bf; }
        .t2 { --tc: #60a5fa; }
        .t3 { --tc: #22d3ee; }
        .t4 { --tc: #a78bfa; }
        .t5 { --tc: #f472b6; }
        .t6 { --tc: #fbbf24; }

        .tier-bar { height: 3px; border-radius: 3px 3px 0 0; background: var(--tc); }

        .badge-tier {
            background: color-mix(in srgb, var(--tc) 15%, transparent);
            color: var(--tc);
            border: 1px solid color-mix(in srgb, var(--tc) 35%, transparent);
        }

        /* ─── PROGRESS ────────────────────────────────────────── */
        .prog-track {
            background: rgba(255,255,255,0.07);
            border-radius: 99px;
            height: 5px;
            overflow: hidden;
        }
        .prog-fill {
            height: 100%;
            border-radius: 99px;
            background: var(--tc);
            transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
        }
        .prog-fill-goal {
            height: 100%;
            border-radius: 99px;
            background: linear-gradient(90deg, #a78bfa, #f472b6);
            transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
        }

        /* ─── STATUS PILLS ────────────────────────────────────── */
        .status-pill {
            display: inline-flex; align-items: center; gap: 5px;
            padding: 4px 10px; border-radius: 99px;
            font-size: 0.72rem; font-weight: 600;
        }
        .status-running { background: rgba(0,122,255,0.18); color: #60a5fa; border: 1px solid rgba(0,122,255,0.30); }
        .status-ok      { background: rgba(0,230,118,0.14); color: #4ade80; border: 1px solid rgba(0,230,118,0.28); }
        .status-fail    { background: rgba(239,68,68,0.14); color: #f87171; border: 1px solid rgba(239,68,68,0.28); }

        /* ─── PROXY BADGE ─────────────────────────────────────── */
        .proxy-ok   { background: rgba(0,230,118,0.12); color: #4ade80; border: 1px solid rgba(0,230,118,0.25); }
        .proxy-fail { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }

        /* ─── SEPARATOR ───────────────────────────────────────── */
        hr.divider { border: none; border-top: 1px solid var(--border); }

        /* ─── OVERLAY ─────────────────────────────────────────── */
        .overlay {
            position: fixed; inset: 0; z-index: 200;
            background: rgba(0,0,0,0.65);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex; align-items: center; justify-content: center;
            padding: 20px;
        }
        .modal {
            width: 100%; max-width: 500px;
            max-height: 90vh;
            display: flex; flex-direction: column;
        }
        .modal-header {
            padding: 22px 24px 18px;
            display: flex; align-items: center; justify-content: space-between;
            border-bottom: 1px solid var(--border);
        }
        .modal-body { padding: 22px 24px; overflow-y: auto; flex: 1; }
        .modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 10px; }

        /* ─── FORM HELPERS ────────────────────────────────────── */
        label.form-label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 6px; font-weight: 500; }

        .tier-btn {
            flex: 1; min-width: 44px;
            padding: 8px 4px;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.04);
            color: var(--muted);
            font-family: var(--font);
            font-size: 0.78rem;
            font-weight: 600;
            cursor: pointer;
            display: flex; flex-direction: column; align-items: center;
            gap: 1px;
            transition: all 0.18s ease;
        }
        .tier-btn:hover { background: rgba(255,255,255,0.10); color: var(--text); }
        .tier-btn.active { background: var(--blue); color: #fff; border-color: transparent; box-shadow: 0 0 14px rgba(0,122,255,0.35); }
        .tier-btn span.lbl { font-size: 0.65rem; font-weight: 400; opacity: 0.7; }

        .reward-chip {
            padding: 5px 13px;
            border-radius: 99px;
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.05);
            color: var(--muted);
            font-size: 0.78rem;
            cursor: pointer;
            transition: all 0.18s ease;
        }
        .reward-chip:hover { background: rgba(255,255,255,0.10); color: var(--text); }
        .reward-chip.active { background: rgba(167,139,250,0.20); color: #c4b5fd; border-color: rgba(167,139,250,0.40); }

        /* ─── EMPTY STATE ─────────────────────────────────────── */
        .empty-state {
            text-align: center; padding: 60px 20px;
            color: var(--muted);
        }
        .empty-state svg { opacity: 0.25; margin-bottom: 16px; }

        /* ─── SPINNER ─────────────────────────────────────────── */
        @keyframes spin { to { transform: rotate(360deg); } }
        .spinner { animation: spin 0.8s linear infinite; }

        /* ─── TOAST ───────────────────────────────────────────── */
        .toasts-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 500; display: flex; flex-direction: column; gap: 8px; }
        .toast {
            display: flex; align-items: center; gap: 10px;
            padding: 12px 18px; border-radius: 12px;
            font-size: 0.85rem; font-weight: 500;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.5);
            min-width: 240px;
        }
        .toast-success { background: rgba(0,230,118,0.18); border: 1px solid rgba(0,230,118,0.30); color: #4ade80; }
        .toast-error   { background: rgba(239,68,68,0.18); border: 1px solid rgba(239,68,68,0.30); color: #f87171; }

        /* ─── TRANSITIONS ─────────────────────────────────────── */
        .fade-enter-active, .fade-leave-active { transition: opacity 0.25s ease, transform 0.25s ease; }
        .fade-enter-from, .fade-leave-to { opacity: 0; transform: scale(0.97); }

        .toast-enter-active, .toast-leave-active { transition: all 0.28s ease; }
        .toast-enter-from, .toast-leave-to { opacity: 0; transform: translateY(10px) scale(0.96); }

        /* ─── UTILITY ─────────────────────────────────────────── */
        .mono { font-family: var(--mono); }
        .muted { color: var(--muted); }
        .green { color: var(--green); }
        .cyan { color: var(--cyan); }
        .red { color: #f87171; }
        .yellow { color: #fbbf24; }

        /* ─── LOGIN ───────────────────────────────────────────── */
        .login-wrap {
            display: flex; align-items: center; justify-content: center;
            min-height: calc(100vh - 70px);
        }
        .login-card { width: 100%; max-width: 400px; padding: 36px; }
        .login-icon {
            width: 60px; height: 60px; border-radius: 50%;
            background: rgba(0,210,255,0.12);
            border: 1px solid rgba(0,210,255,0.25);
            display: flex; align-items: center; justify-content: center;
            color: var(--cyan);
            margin: 0 auto 20px;
        }

        /* ─── USER CARDS ──────────────────────────────────────── */
        .user-card { overflow: hidden; cursor: default; }
        .action-row { display: flex; gap: 6px; }
        .card-row { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; }

        @media (max-width: 640px) {
            .action-row { opacity: 1; }
        }

        @media (min-width: 641px) {
            .action-row { opacity: 0; transition: opacity 0.2s ease; }
            .user-card:hover .action-row { opacity: 1; }
        }

        /* ─── SCROLLBAR ───────────────────────────────────────── */
        /* Scrollbars (Sliders) */
        ::-webkit-scrollbar { width: 8px; height: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg); border-radius: 4px; }
        ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Extracted from inline styles */
.stat-card {
    background: rgba(0,0,0,0.3); 
    border: 1px solid rgba(255,255,255,0.06); 
    border-radius: 16px; 
    padding: 16px 20px; 
    transition: transform 0.2s, background 0.2s; 
    cursor: default;
}
.stat-card:hover {
    background: rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.extracted-style-1 {
    position: fixed; top: 20px; left: 20px; z-index: 100;
}

.extracted-style-2 {
    padding: 10px 16px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
}

.extracted-style-3 {
    font-size: 0.85rem; font-weight: 600;
}

.extracted-style-4 {
    text-align:center;font-size:1.3rem;font-weight:700;margin-bottom:32px;
}

.extracted-style-5 {
    margin-bottom:16px;
}

.extracted-style-6 {
    width:100%;padding:12px;
}

.extracted-style-7 {
    display:flex;align-items:center;justify-content:space-between;margin-bottom:24px;flex-wrap:wrap;gap:12px;
}

.extracted-style-8 {
    font-size:1.5rem;font-weight:800;letter-spacing:-0.03em;
}

.extracted-style-9 {
    font-size:0.82rem;margin-top:3px;
}

.extracted-style-10 {
    font-size:1rem;font-weight:600;
}

.extracted-style-11 {
    font-size:0.82rem;margin-top:4px;
}

.extracted-style-12 {
    display:grid;grid-template-columns:repeat(auto-fill,minmax(310px,1fr));gap:18px;
}

.extracted-style-13 {
    padding:18px 20px 20px;
}

.extracted-style-14 {
    display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:14px;
}

.extracted-style-15 {
    font-size:1rem;font-weight:700;line-height:1.3;
}

.extracted-style-16 {
    margin-top:5px;
}

.extracted-style-17 {
    margin-bottom:12px;
}

.extracted-style-18 {
    display:flex;flex-direction:column;gap:8px;margin-bottom:16px;
}

.extracted-style-19 {
    color:var(--cyan);flex-shrink:0;
}

.extracted-style-20 {
    color:var(--text);font-weight:500;
}

.extracted-style-21 {
    margin-left:auto;font-size:0.76rem;display:flex;align-items:center;gap:2px;
}

.extracted-style-22 {
    color:var(--green);flex-shrink:0;
}

.extracted-style-23 {
    color:var(--muted);flex-shrink:0;
}

.extracted-style-24 {
    font-size:0.76rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}

.extracted-style-25 {
    font-size:0.76rem;
}

.extracted-style-26 {
    width:22px;height:22px;border-radius:6px;margin-left:auto;
}

.extracted-style-27 {
    flex-shrink:0;
}

.extracted-style-29 {
    margin-left:auto; font-size:0.72rem; background:rgba(255,255,255,0.04); padding:3px 8px; border-radius:12px; display:flex; align-items:center; gap:4px; color:var(--text); border: 1px solid rgba(255,255,255,0.03); font-weight: 500; letter-spacing: 0.2px;
}

.extracted-style-30 {
    margin-right:2px;
}

.extracted-style-31 {
    display:flex;flex-direction:column;gap:10px;
}

.extracted-style-32 {
    display:flex;justify-content:space-between;font-size:0.72rem;margin-bottom:5px;
}

.extracted-style-35 {
    font-size:0.75rem;font-weight:600;color:#fbbf24;
}

.extracted-style-36 {
    font-size:0.75rem;font-weight:600;color:var(--green);
}

.extracted-style-37 {
    margin-top: 40px;
}

.extracted-style-38 {
    display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;
}

.extracted-style-39 {
    font-size:1.3rem;font-weight:700;
}

.extracted-style-40 {
    padding: 6px 12px; font-size: 0.8rem;
}

.extracted-style-41 {
    margin-right: 4px;
}

.extracted-style-42 {
    padding: 16px; border-radius: 12px; max-height: 400px; overflow-y: auto;
}

.extracted-style-43 {
    text-align: center; padding: 20px;
}

.extracted-style-44 {
    font-family: var(--mono); font-size: 0.8rem; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px;
}

.extracted-style-45 {
    color: var(--muted); margin-right: 8px;
}

.extracted-style-47 {
    color: var(--text);
}

.extracted-style-48 {
    position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: radial-gradient(circle, var(--cyan) 0%, transparent 70%); opacity: 0.15; filter: blur(40px); pointer-events: none;
}

.extracted-style-49 {
    position: absolute; bottom: -50px; left: -50px; width: 200px; height: 200px; background: radial-gradient(circle, var(--blue) 0%, transparent 70%); opacity: 0.15; filter: blur(40px); pointer-events: none;
}

.extracted-style-50 {
    display:flex; justify-content:space-between; align-items:flex-start; flex-wrap: wrap; gap: 16px; position: relative; z-index: 1;
}

.extracted-style-51 {
    font-size:2rem; font-weight:800; letter-spacing:-0.04em; margin-bottom:4px;
}

.extracted-style-52 {
    font-size:0.95rem;
}

.extracted-style-53 {
    display: flex; gap: 8px; align-items: center;
}

.extracted-style-54 {
    padding: 10px 14px; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; font-weight: 600;
}

.extracted-style-55 {
    margin-right: 6px;
}

.extracted-style-56 {
    padding: 10px 18px; font-weight: 600; border-radius: 10px;
}

.extracted-style-57 {
    position: relative; z-index: 1;
}

.extracted-style-58 {
    font-size: 0.9rem; padding: 6px 14px;
}

.extracted-style-59 {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 8px; position: relative; z-index: 1;
}

.extracted-style-60 {
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}

.extracted-style-61 {
    display: flex; align-items: center; gap: 10px;
}

.extracted-style-62 {
    color:var(--cyan);
}

.extracted-style-63 {
    font-size: 1.25rem; font-weight: 700; color: white;
}

.extracted-style-64 {
    margin-top: 16px;
}

.extracted-style-65 {
    font-size: 0.85rem; padding: 6px 12px;
}

.extracted-style-67 {
    font-size: 1.25rem; font-weight: 700;
}

.extracted-style-68 {
    font-size:0.85rem; background:rgba(255,255,255,0.06); padding:6px 12px; border-radius:12px; display:inline-flex; align-items:center; gap:6px; color:var(--text); border: 1px solid rgba(255,255,255,0.04); font-weight: 600;
}

.extracted-style-69 {
    background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 20px; margin-top: 4px; position: relative; z-index: 1;
}

.extracted-style-70 {
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}

.extracted-style-71 {
    display: flex; flex-direction: column; gap: 20px;
}

.extracted-style-72 {
    display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:10px;
}

.extracted-style-73 {
    font-size: 1.15rem; font-weight: 700; color: white;
}

.extracted-style-74 {
    font-size: 0.95rem; font-weight: 600;
}

.extracted-style-75 {
    height: 12px; border-radius: 6px; background: rgba(0,0,0,0.4);
}

.extracted-style-77 {
    font-size: 1.05rem; font-weight: 700; color: white;
}

.extracted-style-79 {
    font-size:1rem; font-weight:700; color:#fbbf24; display: flex; align-items: center; gap: 10px; padding: 16px; background: rgba(251,191,36,0.1); border-radius: 12px; border: 1px solid rgba(251,191,36,0.2);
}

.extracted-style-80 {
    font-size:1rem; font-weight:700; color:var(--green); display: flex; align-items: center; gap: 10px; padding: 16px; background: rgba(16,185,129,0.1); border-radius: 12px; border: 1px solid rgba(16,185,129,0.2);
}

.extracted-style-81 {
    background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 20px; display: flex; align-items: center; justify-content: space-between; margin-top: 4px; flex-wrap: wrap; gap: 16px; position: relative; z-index: 1;
}

.extracted-style-82 {
    display: flex; align-items: center; gap: 14px;
}

.extracted-style-83 {
    width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
}

.extracted-style-84 {
    font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 3px;
}

.extracted-style-85 {
    font-size: 0.9rem;
}

.extracted-style-86 {
    display: flex; align-items: center; gap: 14px; background: rgba(0,0,0,0.4); padding: 10px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.08);
}

.extracted-style-87 {
    font-size: 0.95rem; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.extracted-style-88 {
    width:32px; height:32px; border-radius:8px; background: rgba(255,255,255,0.12);
}

.extracted-style-89 {
    font-size:1.05rem;font-weight:700;
}

.extracted-style-90 {
    width:32px;height:32px;border-radius:8px;
}

.extracted-style-91 {
    display:flex;flex-direction:column;gap:18px;
}

.extracted-style-92 {
    color:var(--cyan);font-size:0.74rem;
}

.extracted-style-93 {
    display:flex;gap:6px;
}

.extracted-style-94 {
    display:flex;flex-wrap:wrap;gap:7px;padding:12px;background:rgba(0,0,0,0.25);border-radius:12px;border:1px solid var(--border);min-height:52px;
}

.extracted-style-95 {
    display:flex;align-items:center;gap:10px;
}

.extracted-style-96 {
    width:16px;height:16px;cursor:pointer;accent-color:var(--blue);
}

.extracted-style-97 {
    font-size:0.85rem;cursor:pointer;
}

.extracted-style-99 {
    width:100%;max-width:380px;padding:32px;text-align:center;border-color:rgba(239,68,68,0.25);
}

.extracted-style-100 {
    width:56px;height:56px;border-radius:50%;background:rgba(239,68,68,0.12);border:1px solid rgba(239,68,68,0.30);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;color:#f87171;
}

.extracted-style-101 {
    font-size:1.1rem;font-weight:700;margin-bottom:8px;
}

.extracted-style-102 {
    font-size:0.83rem;margin-bottom:24px;
}

.extracted-style-103 {
    color:var(--text);
}

.extracted-style-104 {
    display:flex;gap:10px;
}

.extracted-style-105 {
    flex:1;
}
