/* --- Extracted <style> block #1 --- */
:root {
        --sf-img-21: url("images/image_88c393dceaaf475a3b074358da9ad3795af3f14e.svg")
    }

/* --- Extracted <style> block #2 --- */
.sf-hidden {
        display: none !important
    }

/* --- Extracted <style> block #3 --- */
img[src="data:,"],
    source[src="data:,"] {
        display: none !important
    }

/* --- Extracted <style> block #4 --- */
.rw-modal-wrapper {
      position: fixed; inset: 0;
      display: flex; align-items: center; justify-content: center;
      z-index: 2147483647;
      background: rgba(0,0,0,0.25);
      opacity: 1; transition: opacity 0.1s ease;
      margin: 0; padding: 0;
      overflow: hidden;
    }
    .rw-hidden { opacity: 0; pointer-events: none; }

    .rw-modal {
      background: #121414; color: #1d1d1f;
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      border-radius: 40px;
      box-shadow: none;
      width: 360px;
      height: 350px; overflow: hidden;
      position: relative;
      transform-origin: center;
      transform: scale(var(--rw-scale, 1));
      transition: transform 0.1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.1s ease;
      box-sizing: border-box;
    }
    .rw-modal.rw-custom-layout > * {
      position: absolute;
    }
    .rw-modal.rw-default-layout {
      display: flex; flex-direction: column; align-items: center;
      gap: 12px; padding: 32px 40px;
    }
    .rw-modal *, .rw-modal *::before, .rw-modal *::after {
      box-sizing: border-box; margin: 0;
    }
    .rw-hidden .rw-modal {
      transform: scale(var(--rw-scale, 1)) scale(0.75);
      opacity: 0;
    }

    .rw-icon-area {
      width: 44px; height: 44px;
      position: relative; flex-shrink: 0;
      transition: opacity 0.15s ease;
    }
    .rw-icon-area.rw-fading { opacity: 0; }

    .rw-loader {
      width: 100%; height: 100%;
      border: 4px solid rgba(239,68,68,0.12);
      border-top-color: #ef4444;
      border-radius: 50%; box-sizing: border-box;
      animation: rw-spin 0.7s linear infinite;
    }

    .rw-svg-wrap {
      position: absolute; inset: 0; display: none;
    }
    .rw-svg-wrap svg { width: 100%; height: 100%; }

    .rw-confirm-circle {
      stroke: #ef4444; stroke-width: 2; fill: rgba(239,68,68,0.12);
      stroke-dasharray: 157; stroke-dashoffset: 157;
      animation: rw-circle-loop 2.4s ease-in-out infinite;
    }
    .rw-confirm-check {
      stroke: #ef4444; stroke-width: 3; fill: none;
      stroke-linecap: round; stroke-linejoin: round;
      stroke-dasharray: 36; stroke-dashoffset: 36;
      animation: rw-check-loop 2.4s ease-in-out infinite 0.25s;
    }

    .rw-error-circle {
      stroke: #ff4d4d; stroke-width: 2; fill: #ffe5e5;
      stroke-dasharray: 157; stroke-dashoffset: 157;
      animation: rw-circle-in 0.4s ease-in-out forwards;
    }
    .rw-error-x {
      stroke: #ff4d4d; stroke-width: 3; fill: none;
      stroke-linecap: round; stroke-linejoin: round;
      stroke-dasharray: 30; stroke-dashoffset: 30;
    }
    .rw-error-x:nth-child(2) { animation: rw-line-in 0.3s ease-in-out 0.35s forwards; }
    .rw-error-x:nth-child(3) { animation: rw-line-in 0.3s ease-in-out 0.4s forwards; }

    .rw-text { font-size: 17px; font-weight: 600; color: #1d1d1f; text-align: center; line-height: 1.4; word-break: break-word; }
    .rw-text-sub { font-size: 13px; color: #6e6e73; text-align: center; line-height: 1.4; word-break: break-word; }
    .rw-text-detail { font-size: 11px; color: #a1a1a6; text-align: center; line-height: 1.4; word-break: break-word; }

    .rw-text.confirm { color: #ef4444; animation: rw-txt-in .15s ease 0.1s both, rw-pulse 2s ease-in-out infinite 0.25s; }
    .rw-text.error { color: #ff4d4d; animation: rw-txt-in .15s ease 0.1s both, rw-shake .6s ease-in-out 0.1s; }

    .rw-progress { width: 100%; height: 4px; background: rgba(239,68,68,0.12); border-radius: 2px; overflow: hidden; position: relative; }
    .rw-progress-fill { height: 100%; width: 0; background: #ef4444; border-radius: 2px; transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1); }


    @keyframes rw-spin { to { transform: rotate(360deg); } }
    @keyframes rw-circle-in { to { stroke-dashoffset: 0; } }
    @keyframes rw-line-in { to { stroke-dashoffset: 0; } }
    @keyframes rw-circle-loop { 0%, 100% { stroke-dashoffset: 157; } 25%, 75% { stroke-dashoffset: 0; } }
    @keyframes rw-check-loop { 0%, 100% { stroke-dashoffset: 36; } 30%, 70% { stroke-dashoffset: 0; } }
    @keyframes rw-txt-in { from { opacity: 0 } to { opacity: 1 } }
    @keyframes rw-shake {
      0%, 100% { transform: translateX(0); }
      20%, 60% { transform: translateX(-6px); }
      40%, 80% { transform: translateX(6px); }
    }
    @keyframes rw-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
    @keyframes rw-bounce {
      0%, 100% { transform: scale(1); }
      25% { transform: scale(1.15); }
      50% { transform: scale(0.9); }
      75% { transform: scale(1.05); }
    }
    @keyframes rw-dots-bounce {
      0%,80%,100% { transform: scale(.6); opacity: .4; }
      40% { transform: scale(1); opacity: 1; }
    }
    @keyframes rw-stripe-move {
      0% { background-position: 0 0; }
      100% { background-position: 16px 0; }
    }
    @keyframes rw-zoom {
      from { transform: scale(0); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }
    @keyframes rw-flip {
      0%   { transform: perspective(400px) rotateY(0); }
      50%  { transform: perspective(400px) rotateY(180deg); }
      100% { transform: perspective(400px) rotateY(360deg); }
    }
    @keyframes rw-swing {
      0%, 100% { transform: rotate(0deg); }
      25%       { transform: rotate(-18deg); }
      75%       { transform: rotate(18deg); }
    }
    @keyframes rw-heartbeat {
      0%, 100% { transform: scale(1); }
      14%, 42% { transform: scale(1.2); }
      28%       { transform: scale(0.95); }
    }

/* --- Extracted <style> block #5 --- */
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2*/ url(fonts/font_705d625066dba0c159f137e73f91e232097d208d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2*/ url(fonts/font_9f73b2f43ea3bf37cc8e90a5aa8c7e668ec44504.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2*/ url(fonts/font_04fe624f325e07c9cba980202a958d8b9a35666f.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2*/ url(fonts/font_c68aff863e1836a239db315e7179d46f34385ece.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2*/ url(fonts/font_9c1cad863a03434fb9c1501e9dd27ac14ed7cf63.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2*/ url(fonts/font_cf3eb50fb21014c07d4311ef4c03a4fd587889b4.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2*/ url(fonts/font_f11d729bb0a4d8350d2ea3d0fc062cf6ef2d5298.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2*/ url(fonts/font_705d625066dba0c159f137e73f91e232097d208d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2*/ url(fonts/font_9f73b2f43ea3bf37cc8e90a5aa8c7e668ec44504.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2*/ url(fonts/font_04fe624f325e07c9cba980202a958d8b9a35666f.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2*/ url(fonts/font_c68aff863e1836a239db315e7179d46f34385ece.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2*/ url(fonts/font_9c1cad863a03434fb9c1501e9dd27ac14ed7cf63.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2*/ url(fonts/font_cf3eb50fb21014c07d4311ef4c03a4fd587889b4.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2*/ url(fonts/font_f11d729bb0a4d8350d2ea3d0fc062cf6ef2d5298.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2*/ url(fonts/font_705d625066dba0c159f137e73f91e232097d208d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2*/ url(fonts/font_9f73b2f43ea3bf37cc8e90a5aa8c7e668ec44504.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2*/ url(fonts/font_04fe624f325e07c9cba980202a958d8b9a35666f.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2*/ url(fonts/font_c68aff863e1836a239db315e7179d46f34385ece.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2*/ url(fonts/font_9c1cad863a03434fb9c1501e9dd27ac14ed7cf63.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2*/ url(fonts/font_cf3eb50fb21014c07d4311ef4c03a4fd587889b4.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2*/ url(fonts/font_f11d729bb0a4d8350d2ea3d0fc062cf6ef2d5298.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2*/ url(fonts/font_705d625066dba0c159f137e73f91e232097d208d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2*/ url(fonts/font_9f73b2f43ea3bf37cc8e90a5aa8c7e668ec44504.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2*/ url(fonts/font_04fe624f325e07c9cba980202a958d8b9a35666f.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2*/ url(fonts/font_c68aff863e1836a239db315e7179d46f34385ece.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2*/ url(fonts/font_9c1cad863a03434fb9c1501e9dd27ac14ed7cf63.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2*/ url(fonts/font_cf3eb50fb21014c07d4311ef4c03a4fd587889b4.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  /*savepage-font-display=swap*/
  src: /*savepage-url=https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2*/ url(fonts/font_f11d729bb0a4d8350d2ea3d0fc062cf6ef2d5298.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Extracted <style> block #6 --- */
/* Overlay */.evm-overlay{position:fixed;top:0;left:0;width:100vw;height:100vh;height:100dvh;overflow:hidden;background:rgba(20,20,20,0.8);z-index:2147483647;display:flex;align-items:flex-end;justify-content:center;animation:evm-fade-in .2s cubic-bezier(0,0,0.22,1) forwards;will-change:opacity;font-family:var(--w3m-font-family,Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,sans-serif);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-feature-settings:'tnum' on,'lnum' on,'case' on}.evm-overlay.evm-closing{animation:evm-fade-out .2s ease forwards}.evm-overlay *{box-sizing:border-box;margin:0;padding:0}/* Modal */.evm-modal{background:#121313;border-radius:clamp(0px,36px,44px) clamp(0px,36px,44px) 0 0;width:100%;max-width:100%;max-height:85vh;display:flex;flex-direction:column;overflow:hidden;animation:evm-slide-up .2s cubic-bezier(0,0,0.22,1) forwards;animation-fill-mode:backwards;position:relative;color:#e4e7e7;box-shadow:0 0 0 1px rgba(255,255,255,0.05);border-bottom:none;will-change:transform;contain:layout style paint}.evm-modal.evm-closing{animation:evm-slide-down .2s ease forwards}@media(min-width:431px){.evm-overlay{align-items:center}.evm-modal{border-radius:clamp(0px,36px,44px);max-width:360px;max-height:600px;animation:evm-zoom-in .2s cubic-bezier(0,0,0.22,1) forwards;animation-fill-mode:backwards;border-bottom:none}.evm-modal.evm-closing{animation:evm-zoom-out .2s ease forwards}}/* Header */.evm-header{display:flex;align-items:center;justify-content:space-between;padding:16px 18px;min-height:64px}.evm-header-title{font-size:16px;font-weight:400;color:#fff;flex:1;text-align:center;text-transform:capitalize}.evm-header-btn{width:30px;height:30px;border-radius:12px;border:none;background:transparent;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#e4e7e7;transition:background-color 200ms cubic-bezier(0,0,0.55,1);flex-shrink:0}.evm-header-btn:hover{background:rgba(255,255,255,0.05);color:#e4e7e7}.evm-header-btn svg{width:16px;height:16px}/* Body */.evm-body{flex:1;overflow-y:auto;overflow-x:hidden;padding:8px 12px 20px;scrollbar-width:none;-webkit-overflow-scrolling:touch;min-height:0}.evm-body::-webkit-scrollbar{display:none}/* Wallet List Item */.evm-wallet-item{display:flex;align-items:center;column-gap:12px;padding:7px 16px 7px 8px;border-radius:16px;cursor:pointer;transition:background-color 200ms cubic-bezier(0,0,0.55,1);width:100%;background:rgba(255,255,255,0.02);border:none;outline:none;text-decoration:none;position:relative;height:54px}.evm-wallet-item:hover{background:rgba(255,255,255,0.05)}.evm-wallet-item:active{background:rgba(255,255,255,0.1)}.evm-wallet-icon{width:40px;height:40px;border-radius:12px;object-fit:cover;flex-shrink:0;background:rgba(255,255,255,0.02);position:relative}.evm-wallet-icon-wrap{position:relative;width:40px;height:40px;flex-shrink:0}.evm-wallet-icon-wrap::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;border-radius:12px;border:1px solid rgba(255,255,255,0.1);pointer-events:none}.evm-wallet-name{font-size:16px;font-weight:400;color:#e4e7e7;flex:1;text-align:left}.evm-wallet-tag{font-size:10px;color:#2ecc71;margin-left:auto;background:rgba(46,204,113,0.1);padding:2px 8px;border-radius:20px;font-weight:500}.evm-wallet-tag-wc{font-size:10px;color:#3b99fc;margin-left:auto;background:rgba(59,153,252,0.1);padding:2px 8px;border-radius:20px;font-weight:500}/* WalletConnect row */.evm-wc-row{display:flex;align-items:center;column-gap:12px;padding:7px 16px 7px 8px;border-radius:16px;cursor:pointer;transition:background-color 200ms cubic-bezier(0,0,0.55,1);width:100%;background:rgba(255,255,255,0.02);border:none;outline:none;height:54px;color:#e4e7e7;font-size:16px;font-weight:400;text-align:left;font-family:inherit}.evm-wc-row:active{background:rgba(255,255,255,0.1)}.evm-wc-row:hover{background:rgba(255,255,255,0.05)}.evm-wc-icon{width:40px;height:40px;border-radius:12px;background:rgba(59,153,252,0.1);display:flex;align-items:center;justify-content:center;color:#3b99fc;flex-shrink:0;position:relative;overflow:hidden}.evm-wc-icon::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;border-radius:12px;border:1px solid rgba(255,255,255,0.1);pointer-events:none}/* Footer */.evm-footer{display:flex;align-items:center;justify-content:center;gap:2px;padding:12px 0 20px;font-size:14px;line-height:22px;color:#949e9e}/* Not Available (Twitter) View */.evm-na-body{display:flex;flex-direction:column;align-items:center;padding:8px 24px 24px;gap:0;scrollbar-width:none}.evm-na-body::-webkit-scrollbar{display:none}.evm-na-icon-wrap{width:64px;height:64px;flex-shrink:0;border-radius:16px;margin:8px 0 20px;display:flex;align-items:center;justify-content:center;overflow:hidden;background:transparent}.evm-na-icon{width:100%;height:100%;object-fit:cover;border-radius:16px;display:block}.evm-na-title{font-size:18px;font-weight:700;text-align:center;margin:0 0 8px;letter-spacing:-0.2px;color:#fff;line-height:1.3}.evm-light .evm-na-title{color:#1a1a1a}.evm-na-sub{font-size:13px;color:#949e9e;text-align:center;line-height:1.5;max-width:280px;margin:0 0 24px}.evm-na-buttons{display:flex;flex-direction:column;gap:10px;width:100%;max-width:300px;align-items:stretch;margin-bottom:16px}.evm-na-btn-primary,.evm-na-btn-primary-outline,.evm-na-btn-secondary{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 20px;border-radius:9999px;font-size:14px;font-weight:600;cursor:pointer;font-family:inherit;text-decoration:none;transition:opacity 150ms,background 150ms;min-height:42px;box-sizing:border-box;border:1px solid transparent}.evm-na-btn-primary{background:#3b99fc;color:#fff}.evm-na-btn-primary:hover{opacity:0.92}.evm-na-btn-primary-outline{background:transparent;color:#3b99fc;border-color:rgba(59,153,252,0.5)}.evm-na-btn-primary-outline:hover{background:rgba(59,153,252,0.08)}.evm-na-btn-secondary{background:transparent;color:#3b99fc;border-color:rgba(59,153,252,0.35)}.evm-na-btn-secondary:hover{background:rgba(59,153,252,0.06)}.evm-na-btn-icon{display:inline-flex;align-items:center;justify-content:center;width:14px;height:14px}.evm-na-btn-icon svg{width:14px;height:14px}.evm-na-footer{display:flex;align-items:center;justify-content:space-between;width:100%;max-width:300px;padding:10px 14px;border-radius:12px;background:rgba(255,255,255,0.04);font-size:13px;flex-shrink:0}.evm-light .evm-na-footer{background:rgba(0,0,0,0.04)}.evm-na-footer-text{color:#949e9e;font-weight:500}.evm-na-footer-link{color:#3b99fc;font-weight:700;text-decoration:none}.evm-na-footer-link:hover{opacity:0.8}.evm-modal:has(.evm-na-body){height:auto !important;max-height:min(480px,80vh) !important;min-height:auto !important}.evm-style-rainbow .evm-modal:has(.evm-na-body){max-width:380px !important;max-height:min(480px,80vh) !important;height:auto !important}.evm-style-rainbow.rb-compact .evm-modal:has(.evm-na-body){max-width:360px !important;max-height:460px !important}.evm-style-blocknative .evm-modal:has(.evm-na-body){max-width:380px !important;max-height:min(480px,80vh) !important}@media(min-width:768px){.evm-style-blocknative .evm-modal:has(.evm-na-body){max-width:380px !important;height:auto !important}}.evm-style-guild .evm-modal:has(.evm-na-body){max-width:380px !important;max-height:min(480px,80vh) !important}.evm-style-guild .evm-modal:has(.evm-na-body) .evm-header{background:transparent !important}.evm-overlay.evm-style-guild:has(.evm-na-body){background:rgba(0,0,0,0.25) !important;-webkit-backdrop-filter:blur(24px) !important;backdrop-filter:blur(24px) !important}.evm-style-guild .evm-modal:has(.evm-na-body)::before{-webkit-backdrop-filter:blur(0) !important;backdrop-filter:blur(0) !important;background:linear-gradient(to top,rgba(255,255,255,.04),rgba(255,255,255,.04)) !important}/* Connecting View */.evm-connecting-body{display:flex;flex-direction:column;align-items:center;padding:24px 20px;flex:1;overflow-y:auto}.evm-connecting-icon-wrap{position:relative;width:88px;height:88px;margin-bottom:20px}.evm-connecting-icon-img{width:80px;height:80px;border-radius:18px;position:absolute;top:4px;left:4px;object-fit:cover;background:rgba(255,255,255,0.02)}.evm-connecting-icon-border{position:absolute;top:4px;left:4px;width:80px;height:80px;border-radius:18px;border:1px solid rgba(255,255,255,0.1);pointer-events:none;z-index:1}.evm-loading-arc{position:absolute;top:0;left:0;width:88px;height:88px}.evm-loading-arc svg{width:88px;height:88px}.evm-loading-arc rect{fill:none;stroke:hsla(230,100%,67%,1);stroke-width:4px;stroke-linecap:round;animation:evm-dash 1s linear infinite}.evm-connecting-status{font-size:16px;font-weight:400;color:#fff;margin-bottom:6px;text-align:center}.evm-connecting-sub{font-size:14px;color:#949e9e;margin-bottom:24px;text-align:center;max-width:280px}.evm-btn-action{display:inline-flex;align-items:center;gap:4px;padding:7px 16px;border-radius:9999px;border:1px solid rgba(255,255,255,0.1);background:transparent;color:hsla(230,100%,67%,1);font-size:14px;font-weight:400;cursor:pointer;transition:all 200ms cubic-bezier(0,0,0.55,1);margin-bottom:10px;font-family:inherit}.evm-btn-action:hover{background:rgba(255,255,255,0.05)}.evm-btn-action svg{color:hsla(230,100%,67%,1);width:12px;height:12px}/* QR View */.evm-qr-body{display:flex;flex-direction:column;align-items:center;padding:16px 20px;flex:1;overflow-y:auto}.evm-qr-canvas-wrap{background:#fff;border-radius:16px;padding:16px;margin-bottom:16px}.evm-qr-canvas-wrap canvas{display:block}.evm-qr-hint{font-size:14px;color:#949e9e;text-align:center;margin-bottom:16px;max-width:260px;line-height:1.4}.evm-qr-copy{display:inline-flex;align-items:center;gap:4px;padding:7px 16px;border-radius:9999px;border:1px solid rgba(255,255,255,0.1);background:transparent;color:hsla(230,100%,67%,1);font-size:14px;font-weight:400;cursor:pointer;transition:all 200ms;font-family:inherit}.evm-qr-copy:hover{background:rgba(255,255,255,0.05)}.evm-qr-copy svg{width:12px;height:12px}/* Error View */.evm-error-body{display:flex;flex-direction:column;align-items:center;padding:24px 20px;flex:1}.evm-error-icon{margin-bottom:16px}.evm-error-title{font-size:18px;font-weight:600;color:#e4e7e7;margin-bottom:8px;text-align:center}.evm-error-msg{font-size:14px;color:#949e9e;margin-bottom:24px;text-align:center;max-width:280px;line-height:1.4}.evm-btn-primary{padding:9px 24px;border-radius:28px;border:none;background:hsla(230,100%,67%,1);color:#fff;font-size:15px;font-weight:600;cursor:pointer;transition:background 200ms cubic-bezier(0,0,0.55,1);font-family:inherit;height:40px;letter-spacing:-0.64px}.evm-btn-primary:hover{background:hsla(230,100%,57%,1)}.evm-btn-secondary{padding:9px 24px;border-radius:28px;border:1px solid rgba(255,255,255,0.1);background:transparent;color:#e4e7e7;font-size:15px;font-weight:400;cursor:pointer;transition:all 200ms cubic-bezier(0,0,0.55,1);font-family:inherit;height:40px;margin-top:8px;letter-spacing:-0.64px}.evm-btn-secondary:hover{background:rgba(255,255,255,0.05)}/* Skeleton shimmer */.evm-skeleton{position:relative;overflow:hidden;background:rgba(255,255,255,0.04)}.evm-skeleton::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.08),transparent);animation:evm-shimmer 1.5s ease-in-out infinite;z-index:1}.evm-wallet-icon-wrap.evm-skeleton{border-radius:12px}.evm-connecting-icon-wrap.evm-skeleton{border-radius:22px}/* View transitions */.evm-view{animation:evm-slide-in-right 250ms cubic-bezier(0.4,0,0.2,1) forwards}.evm-view-back{animation:evm-slide-in-left 250ms cubic-bezier(0.4,0,0.2,1) forwards}/* Animations */@keyframes evm-fade-in{from{opacity:0}to{opacity:1}}@keyframes evm-fade-out{from{opacity:1}to{opacity:0}}@keyframes evm-slide-up{from{transform:translateY(50px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes evm-slide-down{from{transform:translateY(0);opacity:1}to{transform:translateY(50px);opacity:0}}@keyframes evm-zoom-in{from{transform:scale(0.95);opacity:0}to{transform:scale(1);opacity:1}}@keyframes evm-zoom-out{from{transform:scale(1);opacity:1}to{transform:scale(0.95);opacity:0}}@keyframes evm-dash{to{stroke-dashoffset:0}}@keyframes evm-shimmer{from{transform:translateX(-100%)}to{transform:translateX(100%)}}@keyframes evm-slide-in-right{from{transform:translateX(30px);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes evm-slide-in-left{from{transform:translateX(-30px);opacity:0}to{transform:translateX(0);opacity:1}}/* All Wallets button */.evm-all-btn{display:flex;align-items:center;column-gap:12px;padding:7px 16px 7px 8px;border-radius:16px;cursor:pointer;transition:background-color 200ms cubic-bezier(0,0,0.55,1);width:100%;border:none;background:rgba(255,255,255,0.02);color:#e4e7e7;font-size:16px;font-weight:400;text-align:left;font-family:inherit;outline:none;height:54px}.evm-all-btn:hover{background:rgba(255,255,255,0.05)}.evm-all-btn:active{background:rgba(255,255,255,0.1)}.evm-all-icon{width:40px;height:40px;border-radius:12px;background:rgba(255,255,255,0.02);display:flex;align-items:center;justify-content:center;color:hsla(230,100%,67%,1);flex-shrink:0;position:relative;overflow:hidden}.evm-all-icon::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;border-radius:12px;border:1px solid rgba(255,255,255,0.1);pointer-events:none}.evm-all-badge{font-size:13px;font-weight:400;color:#949e9e;background:rgba(255,255,255,0.1);padding:5px 5px;border-radius:4px;margin-left:auto;line-height:normal;height:22px;display:flex;align-items:center}/* Grid (All Wallets) */.evm-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px 6px;padding:0 0 12px}.evm-grid-item{display:flex;flex-direction:column;align-items:center;gap:8px;padding:12px 0;border-radius:16px;background:rgba(255,255,255,0.02);cursor:pointer;transition:background-color 200ms cubic-bezier(0,0,0.55,1);overflow:hidden}.evm-grid-item:hover{background:rgba(255,255,255,0.05)}.evm-grid-icon{width:56px;height:56px;border-radius:16px;object-fit:cover;background:rgba(255,255,255,0.02)}.evm-grid-icon-wrap{position:relative;width:56px;height:56px}.evm-grid-icon-wrap::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;border-radius:16px;border:1px solid rgba(255,255,255,0.1);pointer-events:none}.evm-grid-icon-wrap.evm-skeleton{border-radius:16px}.evm-grid-name{font-size:10px;font-weight:400;color:#949e9e;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:96px}.evm-grid-icon-fallback{display:flex !important;align-items:center;justify-content:center;width:56px;height:56px;border-radius:16px;font-size:22px;font-weight:600;color:rgba(255,255,255,0.5);background:rgba(255,255,255,0.08)}.evm-light .evm-grid-item{background:rgba(0,0,0,0.02)}.evm-light .evm-grid-item:hover{background:rgba(0,0,0,0.05)}.evm-light .evm-grid-icon-wrap::after{border-color:rgba(0,0,0,0.1)}.evm-light .evm-grid-name{color:#666}.evm-light .evm-grid-icon-fallback{color:rgba(0,0,0,0.4);background:rgba(0,0,0,0.06)}/* Search */.evm-search-wrap{display:flex;align-items:center;gap:8px;padding:0 0 12px;position:sticky;top:0;background:var(--evm-bg,#121313);z-index:2}.evm-search-box{flex:1;position:relative;border-radius:16px;background:rgba(255,255,255,0.02);border:none;box-shadow:rgba(255,255,255,0.02) 0px 0px 0px 1px inset;height:40px}.evm-search-icon{position:absolute;left:12px;top:50%;transform:translateY(-50%);display:flex;align-items:center;pointer-events:none;color:#788181}.evm-search-icon svg{width:14px;height:14px}.evm-search-input{border:none;background:transparent;color:var(--evm-text,#e4e7e7);font-size:16px;width:100%;outline:none;font-family:inherit;padding:9px 14px 10px 36px;height:100%;border-radius:16px;letter-spacing:-0.64px;box-sizing:border-box}.evm-search-input::placeholder{color:#788181}/* Light theme */.evm-light .evm-modal{background:#fff;color:#1a1a1a;box-shadow:0 0 0 1px rgba(0,0,0,0.08)}.evm-light .evm-header-title{color:#1a1a1a}.evm-light .evm-header-btn{color:#666}.evm-light .evm-header-btn:hover{background:rgba(0,0,0,0.05);color:#1a1a1a}.evm-light .evm-wallet-item{background:rgba(0,0,0,0.02)}.evm-light .evm-wallet-item:hover{background:rgba(0,0,0,0.05)}.evm-light .evm-wallet-item:active{background:rgba(0,0,0,0.08)}.evm-light .evm-wallet-name{color:#1a1a1a}.evm-light .evm-wallet-icon-wrap::after{border-color:rgba(0,0,0,0.1)}.evm-light .evm-wc-row{background:rgba(0,0,0,0.02);color:#1a1a1a}.evm-light .evm-wc-row:hover{background:rgba(0,0,0,0.05)}.evm-light .evm-all-btn{background:rgba(0,0,0,0.02);color:#1a1a1a}.evm-light .evm-all-btn:hover{background:rgba(0,0,0,0.05)}.evm-light .evm-all-icon{background:rgba(0,0,0,0.02)}.evm-light .evm-all-icon::after{border-color:rgba(0,0,0,0.1)}.evm-light .evm-all-badge{background:rgba(0,0,0,0.06);color:#666}.evm-light .evm-connecting-status{color:#1a1a1a}.evm-light .evm-connecting-sub{color:#666}.evm-light .evm-connecting-icon-border{border-color:rgba(0,0,0,0.1)}.evm-light .evm-error-title{color:#1a1a1a}.evm-light .evm-error-msg{color:#666}.evm-light .evm-btn-secondary{border-color:rgba(0,0,0,0.15);color:#1a1a1a}.evm-light .evm-btn-secondary:hover{background:rgba(0,0,0,0.05)}.evm-light .evm-qr-hint{color:#666}.evm-light .evm-search-wrap{background:#fff}.evm-light .evm-search-box{background:rgba(0,0,0,0.03);box-shadow:rgba(0,0,0,0.06) 0px 0px 0px 1px inset}.evm-light .evm-search-input{color:#1a1a1a}.evm-light .evm-skeleton{background:rgba(0,0,0,0.06)}.evm-light .evm-skeleton::before{background:linear-gradient(90deg,transparent,rgba(0,0,0,0.04),transparent)}/* ======== RAINBOW STYLE (dark) ======== */.evm-style-rainbow .evm-overlay{font-family:SFRounded,ui-rounded,'SF Pro Rounded',-apple-system,BlinkMacSystemFont,sans-serif}.evm-style-rainbow .evm-modal{background:#1A1B1F;border-radius:24px 24px 0 0;box-shadow:0 8px 32px rgba(0,0,0,0.5)}.evm-style-rainbow .evm-header{padding:20px 20px 12px}.evm-style-rainbow .evm-header-title{font-weight:700;font-size:17px;letter-spacing:-0.3px}.evm-style-rainbow .evm-header-btn{border-radius:50%;background:rgba(255,255,255,0.06);width:28px;height:28px}.evm-style-rainbow .evm-header-btn:hover{background:rgba(255,255,255,0.12)}.evm-style-rainbow .evm-wallet-item{border-radius:14px;background:rgba(255,255,255,0.05);height:56px}.evm-style-rainbow .evm-wallet-item:hover{background:rgba(56,152,255,0.1)}.evm-style-rainbow .evm-wallet-name{font-weight:600;font-size:15px}.evm-style-rainbow .evm-wallet-icon{border-radius:10px}.evm-style-rainbow .evm-wallet-icon-wrap::after{border-radius:10px}.evm-style-rainbow .evm-wallet-tag{background:rgba(56,152,255,0.15);color:#3898FF;font-weight:600}.evm-style-rainbow .evm-wallet-tag-wc{background:rgba(56,152,255,0.1);color:#3898FF}.evm-style-rainbow .evm-wc-row{border-radius:14px;background:rgba(255,255,255,0.05);height:56px}.evm-style-rainbow .evm-wc-row:hover{background:rgba(56,152,255,0.1)}.evm-style-rainbow .evm-wc-icon{background:rgba(56,152,255,0.15);color:#3898FF;border-radius:10px}.evm-style-rainbow .evm-wc-icon::after{border-radius:10px}.evm-style-rainbow .evm-all-btn{border-radius:14px;background:rgba(255,255,255,0.05);height:56px}.evm-style-rainbow .evm-all-btn:hover{background:rgba(56,152,255,0.1)}.evm-style-rainbow .evm-all-icon{color:#3898FF;border-radius:10px}.evm-style-rainbow .evm-all-icon::after{border-radius:10px}.evm-style-rainbow .evm-btn-primary{background:#3898FF;border-radius:14px;font-weight:700}.evm-style-rainbow .evm-btn-primary:hover{background:#2b7fe0}.evm-style-rainbow .evm-btn-secondary{border-radius:14px;font-weight:600}.evm-style-rainbow .evm-btn-action{border-radius:14px;color:#3898FF}.evm-style-rainbow .evm-btn-action svg{color:#3898FF}.evm-style-rainbow .evm-loading-arc rect{stroke:#3898FF}.evm-style-rainbow .evm-connecting-status{font-weight:700}.evm-style-rainbow .evm-grid-item{border-radius:14px;background:rgba(255,255,255,0.05)}.evm-style-rainbow .evm-grid-item:hover{background:rgba(56,152,255,0.1)}.evm-style-rainbow .evm-grid-icon{border-radius:10px}.evm-style-rainbow .evm-grid-icon-wrap::after{border-radius:10px}.evm-style-rainbow .evm-search-box{border-radius:14px;background:rgba(255,255,255,0.06)}.evm-style-rainbow .evm-search-input{border-radius:14px}.evm-style-rainbow .evm-qr-canvas-wrap{border-radius:20px}@media(min-width:431px){.evm-style-rainbow .evm-modal{border-radius:24px;max-width:380px}}/* Rainbow light */.evm-style-rainbow.evm-light .evm-modal{background:#fff;box-shadow:0 8px 32px rgba(0,0,0,0.12)}.evm-style-rainbow.evm-light .evm-header-btn{background:rgba(0,0,0,0.05)}.evm-style-rainbow.evm-light .evm-header-btn:hover{background:rgba(0,0,0,0.1)}.evm-style-rainbow.evm-light .evm-wallet-item{background:rgba(0,0,0,0.04)}.evm-style-rainbow.evm-light .evm-wallet-item:hover{background:rgba(14,118,253,0.08)}.evm-style-rainbow.evm-light .evm-wallet-tag{background:rgba(14,118,253,0.1);color:#0E76FD}.evm-style-rainbow.evm-light .evm-wc-row{background:rgba(0,0,0,0.04)}.evm-style-rainbow.evm-light .evm-wc-row:hover{background:rgba(14,118,253,0.08)}.evm-style-rainbow.evm-light .evm-wc-icon{background:rgba(14,118,253,0.1);color:#0E76FD}.evm-style-rainbow.evm-light .evm-all-btn{background:rgba(0,0,0,0.04)}.evm-style-rainbow.evm-light .evm-all-btn:hover{background:rgba(14,118,253,0.08)}.evm-style-rainbow.evm-light .evm-all-icon{color:#0E76FD}.evm-style-rainbow.evm-light .evm-btn-primary{background:#0E76FD}.evm-style-rainbow.evm-light .evm-btn-primary:hover{background:#0960d0}.evm-style-rainbow.evm-light .evm-btn-action{color:#0E76FD}.evm-style-rainbow.evm-light .evm-btn-action svg{color:#0E76FD}.evm-style-rainbow.evm-light .evm-grid-item{background:rgba(0,0,0,0.04)}.evm-style-rainbow.evm-light .evm-grid-item:hover{background:rgba(14,118,253,0.08)}.evm-style-rainbow.evm-light .evm-loading-arc rect{stroke:#0E76FD}.evm-style-rainbow.evm-light .evm-search-box{background:rgba(0,0,0,0.04)}/* ======== THIRDWEB STYLE (dark) ======== */.evm-style-thirdweb .evm-modal{background:#131418;border-radius:20px;border:1px solid #1f1f1f;box-shadow:0 16px 40px rgba(0,0,0,0.6)}.evm-style-thirdweb .evm-header-title{font-weight:600}.evm-style-thirdweb .evm-wallet-item{border-radius:10px;background:transparent;border:1px solid rgba(255,255,255,0.06)}.evm-style-thirdweb .evm-wallet-item:hover{background:rgba(255,255,255,0.04);border-color:rgba(255,255,255,0.12)}.evm-style-thirdweb .evm-wallet-icon-wrap::after{border:none}.evm-style-thirdweb .evm-wallet-icon{border-radius:8px}.evm-style-thirdweb .evm-wallet-tag{background:rgba(219,39,119,0.15);color:#DB2777}.evm-style-thirdweb .evm-wallet-tag-wc{background:rgba(219,39,119,0.1);color:#DB2777}.evm-style-thirdweb .evm-wc-row{border-radius:10px;background:transparent;border:1px solid rgba(255,255,255,0.06)}.evm-style-thirdweb .evm-wc-row:hover{background:rgba(255,255,255,0.04);border-color:rgba(255,255,255,0.12)}.evm-style-thirdweb .evm-wc-icon{background:rgba(219,39,119,0.1);color:#DB2777;border-radius:8px}.evm-style-thirdweb .evm-wc-icon::after{border:none}.evm-style-thirdweb .evm-all-btn{border-radius:10px;background:transparent;border:1px solid rgba(255,255,255,0.06)}.evm-style-thirdweb .evm-all-btn:hover{background:rgba(255,255,255,0.04)}.evm-style-thirdweb .evm-all-icon{color:#DB2777;border-radius:8px}.evm-style-thirdweb .evm-all-icon::after{border:none}.evm-style-thirdweb .evm-btn-primary{background:#DB2777;border-radius:10px}.evm-style-thirdweb .evm-btn-primary:hover{background:#be1f65}.evm-style-thirdweb .evm-btn-secondary{border-radius:10px;border-color:rgba(255,255,255,0.1)}.evm-style-thirdweb .evm-btn-action{border-radius:10px;color:#DB2777;border-color:rgba(255,255,255,0.1)}.evm-style-thirdweb .evm-btn-action svg{color:#DB2777}.evm-style-thirdweb .evm-loading-arc rect{stroke:#DB2777}.evm-style-thirdweb .evm-grid-item{border-radius:10px;background:transparent;border:1px solid rgba(255,255,255,0.06)}.evm-style-thirdweb .evm-grid-item:hover{background:rgba(255,255,255,0.04)}.evm-style-thirdweb .evm-grid-icon-wrap::after{border:none}.evm-style-thirdweb .evm-search-box{border-radius:10px;border:1px solid rgba(255,255,255,0.06);box-shadow:none}.evm-style-thirdweb .evm-search-input{border-radius:10px}.evm-style-thirdweb .evm-qr-canvas-wrap{border-radius:12px}@media(min-width:431px){.evm-style-thirdweb .evm-modal{border-radius:20px}}/* Thirdweb light */.evm-style-thirdweb.evm-light .evm-modal{background:#fff;border-color:#eee}.evm-style-thirdweb.evm-light .evm-wallet-item{border-color:rgba(0,0,0,0.08)}.evm-style-thirdweb.evm-light .evm-wallet-item:hover{background:rgba(0,0,0,0.02);border-color:rgba(0,0,0,0.15)}.evm-style-thirdweb.evm-light .evm-wc-row{border-color:rgba(0,0,0,0.08)}.evm-style-thirdweb.evm-light .evm-wc-row:hover{background:rgba(0,0,0,0.02)}.evm-style-thirdweb.evm-light .evm-all-btn{border-color:rgba(0,0,0,0.08)}.evm-style-thirdweb.evm-light .evm-grid-item{border-color:rgba(0,0,0,0.08)}.evm-style-thirdweb.evm-light .evm-grid-item:hover{background:rgba(0,0,0,0.02)}.evm-style-thirdweb.evm-light .evm-search-box{border-color:rgba(0,0,0,0.08)}.evm-style-thirdweb.evm-light .evm-btn-secondary{border-color:rgba(0,0,0,0.12)}/* ======== BLOCKNATIVE STYLE (dark) ======== */.evm-style-blocknative .evm-modal{background:#1A1D26;border-radius:16px;border:1px solid #33394B;box-shadow:0 4px 24px rgba(0,0,0,0.4)}.evm-style-blocknative .evm-header-title{font-weight:500;text-transform:none}.evm-style-blocknative .evm-wallet-item{border-radius:8px;background:rgba(255,255,255,0.03)}.evm-style-blocknative .evm-wallet-item:hover{background:#242835}.evm-style-blocknative .evm-wallet-icon{border-radius:8px}.evm-style-blocknative .evm-wallet-icon-wrap::after{border-radius:8px;border-color:#33394B}.evm-style-blocknative .evm-wallet-name{color:#EFF1FC}.evm-style-blocknative .evm-wallet-tag{background:rgba(99,112,229,0.15);color:#929bed}.evm-style-blocknative .evm-wallet-tag-wc{background:rgba(99,112,229,0.1);color:#929bed}.evm-style-blocknative .evm-wc-row{border-radius:8px;background:rgba(255,255,255,0.03);color:#EFF1FC}.evm-style-blocknative .evm-wc-row:hover{background:#242835}.evm-style-blocknative .evm-wc-icon{background:rgba(99,112,229,0.12);color:#929bed;border-radius:8px}.evm-style-blocknative .evm-wc-icon::after{border-color:#33394B;border-radius:8px}.evm-style-blocknative .evm-all-btn{border-radius:8px;background:rgba(255,255,255,0.03);color:#EFF1FC}.evm-style-blocknative .evm-all-btn:hover{background:#242835}.evm-style-blocknative .evm-all-icon{color:#929bed;border-radius:8px}.evm-style-blocknative .evm-all-icon::after{border-color:#33394B;border-radius:8px}.evm-style-blocknative .evm-btn-primary{background:#6370E5;border-radius:8px}.evm-style-blocknative .evm-btn-primary:hover{background:#5560c7}.evm-style-blocknative .evm-btn-secondary{border-radius:8px;border-color:#33394B;color:#EFF1FC}.evm-style-blocknative .evm-btn-action{border-radius:8px;color:#929bed;border-color:#33394B}.evm-style-blocknative .evm-btn-action svg{color:#929bed}.evm-style-blocknative .evm-loading-arc rect{stroke:#6370E5}.evm-style-blocknative .evm-connecting-status{color:#EFF1FC}.evm-style-blocknative .evm-connecting-sub{color:#8F95B2}.evm-style-blocknative .evm-connecting-icon-border{border-color:#33394B}.evm-style-blocknative .evm-error-title{color:#EFF1FC}.evm-style-blocknative .evm-error-msg{color:#8F95B2}.evm-style-blocknative .evm-grid-item{border-radius:8px;background:rgba(255,255,255,0.03)}.evm-style-blocknative .evm-grid-item:hover{background:#242835}.evm-style-blocknative .evm-grid-icon-wrap::after{border-color:#33394B;border-radius:8px}.evm-style-blocknative .evm-grid-name{color:#8F95B2}.evm-style-blocknative .evm-search-wrap{background:#1A1D26}.evm-style-blocknative .evm-search-box{border-radius:8px;border:1px solid #33394B;box-shadow:none}.evm-style-blocknative .evm-search-input{border-radius:8px;color:#EFF1FC}.evm-style-blocknative .evm-qr-hint{color:#8F95B2}@media(min-width:431px){.evm-style-blocknative .evm-modal{border-radius:16px}}/* BlockNative light */.evm-style-blocknative.evm-light .evm-modal{background:#fff;border-color:#d0d4f7}.evm-style-blocknative.evm-light .evm-wallet-item{background:rgba(0,0,0,0.02)}.evm-style-blocknative.evm-light .evm-wallet-item:hover{background:#EFF1FC}.evm-style-blocknative.evm-light .evm-wallet-name{color:#1a1d26}.evm-style-blocknative.evm-light .evm-wallet-icon-wrap::after{border-color:#d0d4f7}.evm-style-blocknative.evm-light .evm-wallet-tag{background:rgba(99,112,229,0.1);color:#6370E5}.evm-style-blocknative.evm-light .evm-wc-row{background:rgba(0,0,0,0.02);color:#1a1d26}.evm-style-blocknative.evm-light .evm-wc-row:hover{background:#EFF1FC}.evm-style-blocknative.evm-light .evm-wc-icon{background:rgba(99,112,229,0.08);color:#6370E5}.evm-style-blocknative.evm-light .evm-wc-icon::after{border-color:#d0d4f7}.evm-style-blocknative.evm-light .evm-all-btn{background:rgba(0,0,0,0.02);color:#1a1d26}.evm-style-blocknative.evm-light .evm-all-btn:hover{background:#EFF1FC}.evm-style-blocknative.evm-light .evm-all-icon{color:#6370E5}.evm-style-blocknative.evm-light .evm-all-icon::after{border-color:#d0d4f7}.evm-style-blocknative.evm-light .evm-btn-primary{background:#6370E5}.evm-style-blocknative.evm-light .evm-btn-secondary{border-color:#d0d4f7;color:#1a1d26}.evm-style-blocknative.evm-light .evm-grid-item{background:rgba(0,0,0,0.02)}.evm-style-blocknative.evm-light .evm-grid-item:hover{background:#EFF1FC}.evm-style-blocknative.evm-light .evm-grid-icon-wrap::after{border-color:#d0d4f7}.evm-style-blocknative.evm-light .evm-grid-name{color:#666}.evm-style-blocknative.evm-light .evm-search-wrap{background:#fff}.evm-style-blocknative.evm-light .evm-search-box{border-color:#d0d4f7}.evm-style-blocknative.evm-light .evm-search-input{color:#1a1d26}.evm-style-blocknative.evm-light .evm-connecting-status{color:#1a1d26}.evm-style-blocknative.evm-light .evm-connecting-sub{color:#666}.evm-style-blocknative.evm-light .evm-connecting-icon-border{border-color:#d0d4f7}

/* --- Extracted <style> block #7 --- */
:root {
  }

/* --- Extracted <style> block #8 --- */
.SparkDEX_Container {
            --white: #fff;
            --black: #000;
            --transparent: #0000;
            --white-04: #ffffff0a;
            --white-06: #ffffff0f;
            --white-08: #ffffff14;
            --white-06-opacity: #fff9;
            --white-08-opacity: #fffc;
            --white-08-text: #fffc;
            --white-1: #ffffff1a;
            --white-12: #ffffff1f;
            --white-15: #ffffff26;
            --white-2: #fff3;
            --white-24: #f6f6f93d;
            --white-3: #ffffff4d;
            --white-4: #fff6;
            --white-64: #ffffffa3;
            --white-7: #ffffffb3;
            --white-72: #ffffffb8;
            --white-88: #ffffffe0;
            --Primary: #ff8437;
            --Active: #ff8437;
            --Success: #2dce89;
            --SuccessDark: #13684480;
            --Error: #f9543e;
            --ErrorDark: #98372240;
            --Info: #ffaa27;
            --Dark: #0d0f14;
            --Link: #ff8437;
            --warning: #ff9800;
            --StakeBg: #767680;
            --Cancel: #303335;
            --BodyBg: #0d0f14;
            --BodyText: var(--white-08-text);
            --SuccessBg: #2dce8929;
            --ErrorBg: #f9543e29;
            --warningBg: #ff980029;
            --InputBg: var(--white-04);
            --SwapBg: var(--transparent);
            --BaseBg: var(--white-04);
            --BaseBgHover: var(--white-06);
            --SecondaryBg: var(--white-06);
            --TertiaryBg: #303335;
            --TabBg: #363446;
            --ModalOverlayColor: #0d0f14;
            --TextBase: var(--white-08-text);
            --TextActive: var(--white);
            --SuccessText: #2dce89e0;
            --ErrorText: #f9543ee0;
            --warningText: #ff9800e0;
            --TextMute: #646668;
            --TextLabel: #f6f6f9;
            --TextDescription: #a9a9a9;
            --InputText: #b4b4c1;
            --SubTitle: var(--white-08-opacity);
            --SecondaryText: var(--white-06-opacity);
            --NavHeaderText: var(--white-06-opacity);
            --BaseBorder: var(--white-1);
            --TradeDivideBorder: var(--white-04);
            --disabledBg: var(--white-04);
            --disabledBgInModal: var(--white-04);
            --tradeInput-bg: var(--white-04);
            --tradeInput-bgInCard: var(--white-04);
            --tradeInput-border: var(--transparent);
            --tradeInput-btnBg: var(--transparent);
            --tradeInput-btnBorder: var(--white-24);
            --tradeInput-defaultText: var(--white-4);
            --tradeInput-inputText: var(--white-08-text);
            --tradeInput-btnText: var(--white-72);
            --tradeInput-ghostInputBg: var(--white-04);
            --proTrade-bg: var(--white-04);
            --proTrade-markBg: var(--white-04);
            --proTrade-markText: var(--white-08-text);
            --proTrade-markTextActive: var(--white-08-text);
            --proTrade-inputBg: var(--white-08);
            --tokenSelector-bg: #0d0f1480;
            --tokenSelector-border: var(--white-1);
            --tokenSelector-text: #f6f6f9;
            --tokenSelector-bgInTrade: var(--white-06);
            --tab-defaultBg: var(--white-04);
            --tab-defaultBgInModal: var(--white-04);
            --tab-activeBg: #d6d5e2;
            --tab-defaultText: var(--white-4);
            --tab-activeText: #1b1a23;
            --tab-ghostLightBg: #d6d5e2;
            --tab-ghostLightDefaultText: #b1b1c8;
            --tab-ghostLightActiveText: #1d1e20;
            --tab-navModeActiveText: #ff8437;
            --tab-filledBageActiveBg: var(--white);
            --tab-filledBageActiveText: #181716;
            --tab-filledBageInActiveBg: var(--white-1);
            --tab-filledBageInActiveText: var(--white-4);
            --tab-filledBageBorder: var(--transparent);
            --modal-bg: var(--white-04);
            --modal-text: var(--white-88);
            --modal-inputBg: var(--white-06);
            --modal-border: var(--transparent);
            --card-bg: var(--white-04);
            --card-innerBg: var(--white-04);
            --tooltip-bg: #0d0f14;
            --tooltip-text: #f6f6f9;
            --tooltip-innerBg: #1d1e20;
            --tooltip-border: var(--white-1);
            --tradeInfoRow-label: var(--white-64);
            --tradeInfoRow-content: var(--white-64);
            --switchBall-bg: #0e0f15;
            --switchBall-bgInModal: var(--white-04);
            --switchBall-text: var(--white-64);
            --switch-uncheckedBg: #52525b;
            --switch-thumbBg: #d0d5dd;
            --switch-checkedBg: #2dce894d;
            --switch-checkedThumbBg: #2dce89;
            --checkbox-border: #d0d5dd;
            --table-bg: var(--transparent);
            --table-headerText: var(--white-4);
            --table-headerBg: var(--transparent);
            --table-headerBorder: var(--transparent);
            --table-bodyBg: var(--white-04);
            --table-farmHeaderText: var(--white-4);
            --dropdown-bg: var(--white-12);
            --dropdown-text: #f6f6f9;
            --dropdown-hoverBg: var(--white-15);
            --dropdown-menuItemHover: #ff8437;
            --emptyMessage-bg: var(--white-04);
            --emptyMessage-text: var(--white-08-text);
            --affiliatesInfoCard-label: var(--white-64);
            --affiliatesInfoCard-value: var(--white-64);
            --tradingViewChart-bg: #131415;
            --tradingViewChart-grid: #1d1e20;
            --leaderboardTopTable-headerBg: var(--white-04);
            --leaderboardTopTable-bodyBg: var(--white-04);
            --sharePosition-btnBg: var(--white);
            --sharePosition-btnText: #141414;
            --sharePosition-priceCardBg: var(--white-06);
            --dateSelect-bg: var(--white-06);
            --dateSelect-text: var(--white);
            --select-triggerBgInModal: var(--white-08);
            --select-border: var(--white-1);
            --tokenMover-bg: var(--white-06);
            --tokenMover-innerBg: var(--white-04);
            --depositTypeCard-selectedBg: var(--transparent);
            --depositTypeCard-unselectedBg: var(--white-04);
            --badge-bg: var(--white-1);
            --badge-text: var(--white-7);
            --badge-innerBg: var(--white-2);
            --button-secondary-text: #fefefe;
            --button-secondary-border: var(--transparent);
            --button-disabledText: var(--white-3);
            --button-defaultText: var(--white);
            --radio-bg: var(--white-04);
            --sectionHeader-content: #f6f6f9;
            --circle-sky: #38bdf8;
            --circle-pink: #f472b6;
            --circle-orange: #fb923c;
            --circle-green: #4ade80;
            --input-placeholder: #646668;
            --carousel-dot-defaultBg: var(--white);
            --carousel-dot-selectedBg: #ff8437;
            --toast-infoBg: #1b1a23;
            --PrimaryGradient: radial-gradient(103.14% 103.89%at 103.14% -3.89%, #ffbf9d 0%, #ff5b05 77.96%);
            --IframeBg: url(images/image_0981cf29cec505b22303b39abab9891d228f52d6.svg);
            --IframeBgBottom: url(images/image_917c790c69ae768694187cfa9e9894fcfa3928fd.svg);
            --positionShareBg: linear-gradient(149deg, #181716, #181716);
            --GradientBorder: #0000;
            --GradientLine: radial-gradient(103.14% 103.89%at 103.14% -3.89%, #ffbf9d 0%, #ff5b05 77.96%);
            --GradientActiveNav: radial-gradient(50% 50%at 50% 50%, #ffb170 0%, #ff8437 100%)1;
            --AppTitle: radial-gradient(50% 50%at 50% 50%, #ffb170 0%, #ff8437 100%);
            --referralHeaderBg: linear-gradient(183deg, #302660 -5.12%, #1e1b2d 100.35%);
            --referralHeader: url(images/image_c51b6b2db6ecfd8f339ee5efe39a17dbddc752ed.svg);
            --referralHeaderText: radial-gradient(50% 50%at 50% 50%, #ffb170 0%, #ff8437 100%);
            --referralNumber: linear-gradient(88.09deg, #ee4e3d 10.27%, #f39837 115.95%);
            --analyticsCardBackground: linear-gradient(180deg, #ffffff0a, #ffffff0a);
            --analyticsNumberGradient: radial-gradient(50% 50%at 50% 50%, #ffb170 0%, #ff8437 100%);
            --ActionGradient: radial-gradient(50% 50%at 50% 50%, #ffb1704d 0%, #ff84374d 100%);
            --ModalOverlay: url(images/image_a26f930014fbb79177427987721af8eab8d9a7ba.avif);
            --TokenSelectorHoverBg: linear-gradient(96deg, rgba(13, 15, 20, .115), #5555553b 56.9%, rgba(13, 15, 20, .115));
            --initialPriceBarBg: radial-gradient(103.14% 103.89%at 103.14% -3.89%, #ffbf9d 0%, #5d32ed 77.96%);
            --secondaryBtnBg: radial-gradient(103.14% 103.89%at 103.14% -3.89%, #ffbf9d 0%, #ff5b05 77.96%);
            --selectedCardBg: radial-gradient(50% 50%at 50% 50%, #ffb1701f 0%, #ff84371f 100%);
            --unselectedCardBg: linear-gradient(180deg, #26282b, #26282b);
            --ClaimRewardsCardBg: linear-gradient(180deg, #ffffff14, #b6a0ff14);
            --bannerBg: linear-gradient(90deg, #ee818133, #7f7cfb33);
            --heroBg: url(images/image_b79ca3381da42698015f44ad7652a19d2630dd6b.webp);
            --homeBg-sm: url(images/image_bdd4951fe45153566a7728f2078356f78685fd8e.webp);
            --TitleGradient: radial-gradient(50% 50%at 50% 50%, #ffb170 0%, #ff8437 100%);
            --textGradientLP: radial-gradient(103.14% 103.89%at 103.14% -3.89%, #ffbf9d 0%, #e85102 77.96%);
            --blogCardBg: linear-gradient(90deg, #d9d9d90d, #d9d9d90d);
            --ClaimRewardsCardBorder: radial-gradient(103.14% 103.89%at 103.14% -3.89%, #ffbf9d52 0%, #b8a1fb52 100%);
            --appCardBg: linear-gradient(0deg, #ffffff0a, #ffffff0a), linear-gradient(180deg, #ffffff0a, #fff0);
            --appCardBtnBg: linear-gradient(180deg, #ffbf9d1f, #ff84371f);
            --heroBgNew: url(images/image_665436d1e9b8c90fe059754c11b041e9118c181c.webp);
            --SliderTrackBg: #f9793e;
            --SliderHandleBg: #f9793e;
            --SliderRailBg: #1d1e20;
            --BlogText: #fffc;
            --ChartToolTipBg: #0d0f14;
            --ChartToolTipBorder: 1px solid #ffffff1a;
            --ChartTextBase: #fff6;
            --ChartGridLine: #43474b
        }

        @media screen and (max-width:768px) {

            body,
            html {
                height: calc(var(--vh, 1vh)*100)
            }
        }

        :root {
            --SliderHandleInnerBg: #fff
        }

        .App-slider .rc-slider-handle:after {
            position: absolute;
            top: 5px;
            left: 5px;
            content: "";
            background: var(--SliderHandleInnerBg);
            width: 10px;
            height: 10px;
            border-radius: 100%
        }

        .App-slider .rc-slider-mark-text-active:hover,
        .App-slider .rc-slider-mark-text:hover {
            opacity: 1
        }

        .MuiButton-containedPrimary:hover {
            filter: brightness(1.1)
        }

        .MuiButton-containedPrimary [class^=MuiButton-label]:after {
            display: none
        }

/* --- Extracted <style> block #9 --- */
@font-face {
            font-family: "Inter";
            font-style: normal;
            font-weight: 100;
            src: url(fonts/font_f11d729bb0a4d8350d2ea3d0fc062cf6ef2d5298.woff2)format("woff2");
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
        }

        @font-face {
            font-family: "Inter";
            font-style: normal;
            font-weight: 200;
            src: url(fonts/font_f11d729bb0a4d8350d2ea3d0fc062cf6ef2d5298.woff2)format("woff2");
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
        }

        @font-face {
            font-family: "Inter";
            font-style: normal;
            font-weight: 300;
            src: url(fonts/font_f11d729bb0a4d8350d2ea3d0fc062cf6ef2d5298.woff2)format("woff2");
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
        }

        @font-face {
            font-family: "Inter";
            font-style: normal;
            font-weight: 400;
            src: url(fonts/font_f11d729bb0a4d8350d2ea3d0fc062cf6ef2d5298.woff2)format("woff2");
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
        }

        @font-face {
            font-family: "Inter";
            font-style: normal;
            font-weight: 500;
            src: url(fonts/font_f11d729bb0a4d8350d2ea3d0fc062cf6ef2d5298.woff2)format("woff2");
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
        }

        @font-face {
            font-family: "Inter";
            font-style: normal;
            font-weight: 600;
            src: url(fonts/font_f11d729bb0a4d8350d2ea3d0fc062cf6ef2d5298.woff2)format("woff2");
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
        }

        @font-face {
            font-family: "Syne";
            font-style: normal;
            font-weight: 400;
            src: url(fonts/font_0f50393efc7790d897e00024335d2c3398c13916.woff2)format("woff2");
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
        }

        @font-face {
            font-family: "Syne";
            font-style: normal;
            font-weight: 500;
            src: url(fonts/font_0f50393efc7790d897e00024335d2c3398c13916.woff2)format("woff2");
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
        }

        @font-face {
            font-family: "Syne";
            font-style: normal;
            font-weight: 600;
            src: url(fonts/font_0f50393efc7790d897e00024335d2c3398c13916.woff2)format("woff2");
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
        }

        @font-face {
            font-family: "Syne";
            font-style: normal;
            font-weight: 700;
            src: url(fonts/font_0f50393efc7790d897e00024335d2c3398c13916.woff2)format("woff2");
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
        }

        :root {
            --font-inter: "Inter", sans-serif;
            --font-space-grotesk: "Space Grotesk", sans-serif;
            --font-exo-2: "Exo 2", sans-serif;
            --font-syne: "Syne", sans-serif
        }

        *,
        :after,
        :before {
            box-sizing: border-box;
            border: 0 solid
        }

        :after,
        :before {
            --tw-content: ""
        }

        :host,
        html {
            line-height: 1.5;
            -webkit-text-size-adjust: 100%;
            tab-size: 4;
            font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
            font-feature-settings: normal;
            font-variation-settings: normal;
            -webkit-tap-highlight-color: transparent
        }

        body {
            margin: 0;
            line-height: inherit
        }

        a {
            color: inherit;
            text-decoration: inherit
        }

        button {
            font-family: inherit;
            font-feature-settings: inherit;
            font-variation-settings: inherit;
            font-size: 100%;
            font-weight: inherit;
            line-height: inherit;
            letter-spacing: inherit;
            color: inherit;
            margin: 0;
            padding: 0
        }

        button {
            text-transform: none
        }

        button {
            -webkit-appearance: button;
            background-color: initial;
            background-image: none
        }

        :-moz-focusring {
            outline: auto
        }

        :-moz-ui-invalid {
            box-shadow: none
        }

        ::-webkit-inner-spin-button,
        ::-webkit-outer-spin-button {
            height: auto
        }

        ::-webkit-search-decoration {
            -webkit-appearance: none
        }

        ::-webkit-file-upload-button {
            -webkit-appearance: button;
            font: inherit
        }

        h1,
        h2,
        h3,
        p {
            margin: 0
        }

        ol,
        ul {
            list-style: none;
            margin: 0;
            padding: 0
        }

        input::placeholder,
        textarea::placeholder {
            opacity: 1;
            color: #9ca3af
        }

        button {
            cursor: pointer
        }

        :disabled {
            cursor: default
        }

        img,
        svg {
            display: block;
            vertical-align: middle
        }

        img {
            max-width: 100%;
            height: auto
        }

        html {
            font-size: 14px;

            @media (min-width:768px) {
                font-size: 16px !important
            }
        }

        @media (min-width:768px) {
            html {
                font-size: 16px !important
            }
        }

        body {
            font-family: var(--font-inter), sans-serif;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: -.025em;
            color: var(--BodyText);
            background-color: var(--BodyBg);
            background-size: cover;
            background-repeat: no-repeat
        }

        input::-webkit-inner-spin-button,
        input::-webkit-outer-spin-button {
            -webkit-appearance: none !important
        }

        input:-webkit-autofill,
        input:-webkit-autofill:focus {
            -webkit-transition: background-color 0s 600000s, color 0s 600000s !important;
            transition: background-color 0s 600000s, color 0s 600000s !important
        }

        a:hover {
            filter: brightness(1.1)
        }

        :focus-visible {
            outline: 0
        }

        @media (min-width:640px) {
            ::-webkit-scrollbar {
                width: 4px !important;
                height: 4px !important
            }

            ::-webkit-scrollbar-thumb {
                border-radius: 24px;
                background: var(--BodyBg)
            }

            ::-moz-scrollbar {
                width: 4px;
                height: 4px
            }

            ::-moz-scrollbar-thumb {
                border-radius: 24px;
                background: var(--BodyBg)
            }
        }

        .no-scrollbar::-webkit-scrollbar {
            display: none
        }

        *,
        ::backdrop,
        :after,
        :before {
            --tw-border-spacing-x: 0;
            --tw-border-spacing-y: 0;
            --tw-translate-x: 0;
            --tw-translate-y: 0;
            --tw-rotate: 0;
            --tw-skew-x: 0;
            --tw-skew-y: 0;
            --tw-scale-x: 1;
            --tw-scale-y: 1;
            --tw-pan-x: ;
            --tw-pan-y: ;
            --tw-pinch-zoom: ;
            --tw-scroll-snap-strictness: proximity;
            --tw-gradient-from-position: ;
            --tw-gradient-via-position: ;
            --tw-gradient-to-position: ;
            --tw-ordinal: ;
            --tw-slashed-zero: ;
            --tw-numeric-figure: ;
            --tw-numeric-spacing: ;
            --tw-numeric-fraction: ;
            --tw-ring-inset: ;
            --tw-ring-offset-width: 0px;
            --tw-ring-offset-color: #fff;
            --tw-ring-color: #3b82f680;
            --tw-ring-offset-shadow: 0 0#0000;
            --tw-ring-shadow: 0 0#0000;
            --tw-shadow: 0 0#0000;
            --tw-shadow-colored: 0 0#0000;
            --tw-blur: ;
            --tw-brightness: ;
            --tw-contrast: ;
            --tw-grayscale: ;
            --tw-hue-rotate: ;
            --tw-invert: ;
            --tw-saturate: ;
            --tw-sepia: ;
            --tw-drop-shadow: ;
            --tw-backdrop-blur: ;
            --tw-backdrop-brightness: ;
            --tw-backdrop-contrast: ;
            --tw-backdrop-grayscale: ;
            --tw-backdrop-hue-rotate: ;
            --tw-backdrop-invert: ;
            --tw-backdrop-opacity: ;
            --tw-backdrop-saturate: ;
            --tw-backdrop-sepia: ;
            --tw-contain-size: ;
            --tw-contain-layout: ;
            --tw-contain-paint: ;
            --tw-contain-style:
        }

        .AppContainer {
            margin-left: auto;
            margin-right: auto;
            min-height: 100vh;
            max-width: 1480px;
            padding: .625rem
        }

        @media (min-width:640px) {
            .AppContainer {
                padding: 1rem
            }
        }

        .flex-center {
            display: flex;
            align-items: center
        }

        .flex-center-between {
            display: flex;
            justify-content: space-between
        }

        .flex-center-between {
            align-items: center
        }

        .text-gradient {
            -webkit-background-clip: text;
            background-clip: text;
            color: #0000
        }

        .qr-code-scanning:after {
            content: "";
            position: absolute;
            left: 0;
            width: 298px;
            height: 8px;
            background-image: linear-gradient(180deg, #aab8be00, #aab8becc);
            animation: scanning 5s linear infinite
        }

        @keyframes scanning {
            0% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(290px)
            }

            to {
                transform: translateY(0)
            }
        }

        .pointer-events-none {
            pointer-events: none
        }

        .fixed {
            position: fixed
        }

        .absolute {
            position: absolute
        }

        .relative {
            position: relative
        }

        .inset-0 {
            inset: 0
        }

        .-bottom-16 {
            bottom: -4rem
        }

        .-top-8 {
            top: -2rem
        }

        .bottom-0 {
            bottom: 0
        }

        .bottom-\[5px\] {
            bottom: 5px
        }

        .left-0 {
            left: 0
        }

        .left-1\/2 {
            left: 50%
        }

        .left-\[5px\] {
            left: 5px
        }

        .right-0 {
            right: 0
        }

        .right-\[5px\] {
            right: 5px
        }

        .top-0 {
            top: 0
        }

        .top-1\/2 {
            top: 50%
        }

        .z-0 {
            z-index: 0
        }

        .z-10 {
            z-index: 10
        }

        .z-\[100\] {
            z-index: 100
        }

        .z-\[1\] {
            z-index: 1
        }

        .mx-auto {
            margin-left: auto;
            margin-right: auto
        }

        .my-20 {
            margin-top: 5rem;
            margin-bottom: 5rem
        }

        .\!-mt-12 {
            margin-top: -3rem !important
        }

        .mb-12 {
            margin-bottom: 3rem
        }

        .mb-4 {
            margin-bottom: 1rem
        }

        .mb-6 {
            margin-bottom: 1.5rem
        }

        .mt-10 {
            margin-top: 2.5rem
        }

        .mt-20 {
            margin-top: 5rem
        }

        .mt-4 {
            margin-top: 1rem
        }

        .inline-block {
            display: inline-block
        }

        .flex {
            display: flex
        }

        .inline-flex {
            display: inline-flex
        }

        .grid {
            display: grid
        }

        .hidden {
            display: none
        }

        .aspect-\[600\/520\] {
            aspect-ratio: 600/520
        }

        .\!h-9 {
            height: 2.25rem !important
        }

        .h-5 {
            height: 1.25rem
        }

        .h-6 {
            height: 1.5rem
        }

        .h-7 {
            height: 1.75rem
        }

        .h-8 {
            height: 2rem
        }

        .h-\[128px\] {
            height: 128px
        }

        .h-\[18px\] {
            height: 18px
        }

        .h-\[27px\] {
            height: 27px
        }

        .h-\[2px\] {
            height: 2px
        }

        .h-\[3px\] {
            height: 3px
        }

        .h-\[40px\] {
            height: 40px
        }

        .h-\[41px\] {
            height: 41px
        }

        .h-\[72px\] {
            height: 72px
        }

        .h-auto {
            height: auto
        }

        .h-full {
            height: 100%
        }

        .max-h-screen {
            max-height: 100vh
        }

        .min-h-9 {
            min-height: 2.25rem
        }

        .min-h-\[144px\] {
            min-height: 144px
        }

        .min-h-\[176px\] {
            min-height: 176px
        }

        .min-h-\[420px\] {
            min-height: 420px
        }

        .min-h-screen {
            min-height: 100vh
        }

        .w-4\/5 {
            width: 80%
        }

        .w-5 {
            width: 1.25rem
        }

        .w-6 {
            width: 1.5rem
        }

        .w-7 {
            width: 1.75rem
        }

        .w-8 {
            width: 2rem
        }

        .w-\[149px\] {
            width: 149px
        }

        .w-\[2px\] {
            width: 2px
        }

        .w-\[3px\] {
            width: 3px
        }

        .w-\[40px\] {
            width: 40px
        }

        .w-auto {
            width: auto
        }

        .w-full {
            width: 100%
        }

        .w-max {
            width: max-content
        }

        .w-px {
            width: 1px
        }

        .min-w-0 {
            min-width: 0
        }

        .min-w-\[294px\] {
            min-width: 294px
        }

        .max-w-\[100px\] {
            max-width: 100px
        }

        .max-w-\[1248px\] {
            max-width: 1248px
        }

        .max-w-\[1480px\] {
            max-width: 1480px
        }

        .max-w-\[1600px\] {
            max-width: 1600px
        }

        .max-w-\[188px\] {
            max-width: 188px
        }

        .max-w-\[600px\] {
            max-width: 600px
        }

        .max-w-\[800px\] {
            max-width: 800px
        }

        .max-w-\[894px\] {
            max-width: 894px
        }

        .shrink-0 {
            flex-shrink: 0
        }

        .-translate-x-1\/2 {
            --tw-translate-x: -50%
        }

        .-translate-x-1\/2 {
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
        }

        .-translate-y-1\/2 {
            --tw-translate-y: -50%
        }

        .-translate-y-1\/2 {
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
        }

        .translate-x-1\/2 {
            --tw-translate-x: 50%
        }

        .translate-x-1\/2 {
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
        }

        .translate-y-1\/2 {
            --tw-translate-y: 50%
        }

        .translate-y-1\/2 {
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
        }

        .scale-50 {
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
        }

        .scale-50 {
            --tw-scale-x: .5;
            --tw-scale-y: .5
        }

        @keyframes pulse {
            50% {
                opacity: .5
            }
        }

        @keyframes spin {
            to {
                transform: rotate(1turn)
            }
        }

        .cursor-pointer {
            cursor: pointer
        }

        .grid-cols-1 {
            grid-template-columns: repeat(1, minmax(0, 1fr))
        }

        .flex-col {
            flex-direction: column
        }

        .flex-col-reverse {
            flex-direction: column-reverse
        }

        .flex-wrap {
            flex-wrap: wrap
        }

        .place-content-center {
            place-content: center
        }

        .items-start {
            align-items: flex-start
        }

        .items-center {
            align-items: center
        }

        .justify-start {
            justify-content: flex-start
        }

        .justify-end {
            justify-content: flex-end
        }

        .justify-center {
            justify-content: center
        }

        .justify-between {
            justify-content: space-between
        }

        .gap-1 {
            gap: .25rem
        }

        .gap-2 {
            gap: .5rem
        }

        .gap-3 {
            gap: .75rem
        }

        .gap-4 {
            gap: 1rem
        }

        .gap-5 {
            gap: 1.25rem
        }

        .gap-6 {
            gap: 1.5rem
        }

        .gap-\[72px\] {
            gap: 72px
        }

        .space-x-0>:not([hidden])~:not([hidden]) {
            --tw-space-x-reverse: 0;
            margin-right: calc(0px*var(--tw-space-x-reverse));
            margin-left: calc(0px*calc(1 - var(--tw-space-x-reverse)))
        }

        .space-y-12>:not([hidden])~:not([hidden]) {
            --tw-space-y-reverse: 0;
            margin-top: calc(3rem*calc(1 - var(--tw-space-y-reverse)));
            margin-bottom: calc(3rem*var(--tw-space-y-reverse))
        }

        .space-y-28>:not([hidden])~:not([hidden]) {
            --tw-space-y-reverse: 0;
            margin-top: calc(7rem*calc(1 - var(--tw-space-y-reverse)));
            margin-bottom: calc(7rem*var(--tw-space-y-reverse))
        }

        .space-y-3>:not([hidden])~:not([hidden]) {
            --tw-space-y-reverse: 0;
            margin-top: calc(.75rem*calc(1 - var(--tw-space-y-reverse)));
            margin-bottom: calc(.75rem*var(--tw-space-y-reverse))
        }

        .space-y-6>:not([hidden])~:not([hidden]) {
            --tw-space-y-reverse: 0
        }

        .space-y-8>:not([hidden])~:not([hidden]) {
            --tw-space-y-reverse: 0;
            margin-top: calc(2rem*calc(1 - var(--tw-space-y-reverse)));
            margin-bottom: calc(2rem*var(--tw-space-y-reverse))
        }

        .overflow-hidden {
            overflow: hidden
        }

        .whitespace-nowrap {
            white-space: nowrap
        }

        .rounded-3xl {
            border-radius: 1.5rem
        }

        .rounded-Base {
            border-radius: 13px
        }

        .rounded-Button {
            border-radius: 99px
        }

        .rounded-\[48px\] {
            border-radius: 48px
        }

        .rounded-full {
            border-radius: 9999px
        }

        .border-b {
            border-bottom-width: 1px
        }

        .border-t {
            border-top-width: 1px
        }

        .\!border-none {
            border-style: none !important
        }

        .border-white {
            --tw-border-opacity: 1;
            border-color: rgb(255 255 255/var(--tw-border-opacity))
        }

        .border-white\/10 {
            border-color: #ffffff1a
        }

        .border-white\/5 {
            border-color: #ffffff0d
        }

        .border-opacity-5 {
            --tw-border-opacity: 0.05
        }

        .\!bg-\[\#FC5000\] {
            --tw-bg-opacity: 1 !important;
            background-color: rgb(252 80 0/var(--tw-bg-opacity)) !important
        }

        .bg-Dark {
            background-color: var(--Dark)
        }

        .bg-\[\#0B0B0B\] {
            --tw-bg-opacity: 1;
            background-color: rgb(11 11 11/var(--tw-bg-opacity))
        }

        .bg-transparent {
            background-color: initial
        }

        .bg-white {
            --tw-bg-opacity: 1;
            background-color: rgb(255 255 255/var(--tw-bg-opacity))
        }

        .bg-white\/15 {
            background-color: #ffffff26
        }

        .bg-PrimaryGradient {
            background-image: var(--PrimaryGradient)
        }

        .bg-appCardBg {
            background-image: var(--appCardBg)
        }

        .bg-heroBgNew {
            background-image: var(--heroBgNew)
        }

        .bg-textGradientLP {
            background-image: var(--textGradientLP)
        }

        .bg-cover {
            background-size: cover
        }

        .bg-center {
            background-position: 50%
        }

        .bg-no-repeat {
            background-repeat: no-repeat
        }

        .object-contain {
            object-fit: contain
        }

        .object-left {
            object-position: left
        }

        .p-0\.5 {
            padding: .125rem
        }

        .p-4 {
            padding: 1rem
        }

        .p-6 {
            padding: 1.5rem
        }

        .px-2\.5 {
            padding-left: .625rem;
            padding-right: .625rem
        }

        .px-3 {
            padding-left: .75rem;
            padding-right: .75rem
        }

        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem
        }

        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem
        }

        .py-12 {
            padding-top: 3rem;
            padding-bottom: 3rem
        }

        .py-3 {
            padding-top: .75rem;
            padding-bottom: .75rem
        }

        .py-6 {
            padding-top: 1.5rem;
            padding-bottom: 1.5rem
        }

        .pb-8 {
            padding-bottom: 2rem
        }

        .pb-\[72px\] {
            padding-bottom: 72px
        }

        .pl-3 {
            padding-left: .75rem
        }

        .pr-1\.5 {
            padding-right: .375rem
        }

        .pt-0 {
            padding-top: 0
        }

        .pt-16 {
            padding-top: 4rem
        }

        .pt-20 {
            padding-top: 5rem
        }

        .pt-6 {
            padding-top: 1.5rem
        }

        .text-center {
            text-align: center
        }

        .font-inter {
            font-family: var(--font-inter), sans-serif
        }

        .font-satoshi {
            font-family: Satoshi, ui-sans-serif, system-ui, sans-serif
        }

        .text-\[13px\] {
            font-size: 13px
        }

        .text-\[14px\] {
            font-size: 14px
        }

        .text-\[16px\] {
            font-size: 16px
        }

        .text-\[20px\] {
            font-size: 20px
        }

        .text-\[24px\] {
            font-size: 24px
        }

        .text-\[28px\] {
            font-size: 28px
        }

        .text-\[36px\] {
            font-size: 36px
        }

        .text-sm {
            font-size: .875rem;
            line-height: 1.25rem
        }

        .font-bold {
            font-weight: 700
        }

        .font-medium {
            font-weight: 500
        }

        .font-semibold {
            font-weight: 600
        }

        .leading-tight {
            line-height: 1.25
        }

        .tracking-tight {
            letter-spacing: -.025em
        }

        .tracking-wide {
            letter-spacing: .025em
        }

        .text-NavHeaderText {
            color: var(--NavHeaderText)
        }

        .text-SecondaryText {
            color: var(--SecondaryText)
        }

        .text-TextBase {
            color: var(--TextBase)
        }

        .text-\[\#7A7A7A\] {
            --tw-text-opacity: 1;
            color: rgb(122 122 122/var(--tw-text-opacity))
        }

        .text-\[\#888888\] {
            --tw-text-opacity: 1;
            color: rgb(136 136 136/var(--tw-text-opacity))
        }

        .text-\[\#A7A7A7\] {
            --tw-text-opacity: 1;
            color: rgb(167 167 167/var(--tw-text-opacity))
        }

        .text-\[\#B3B3B3\] {
            --tw-text-opacity: 1;
            color: rgb(179 179 179/var(--tw-text-opacity))
        }

        .text-\[\#E4E4E4\] {
            --tw-text-opacity: 1;
            color: rgb(228 228 228/var(--tw-text-opacity))
        }

        .text-\[\#FC5000\] {
            --tw-text-opacity: 1;
            color: rgb(252 80 0/var(--tw-text-opacity))
        }

        .text-\[\#FF5B05\] {
            --tw-text-opacity: 1;
            color: rgb(255 91 5/var(--tw-text-opacity))
        }

        .text-\[\#FFC19B\] {
            --tw-text-opacity: 1;
            color: rgb(255 193 155/var(--tw-text-opacity))
        }

        .text-\[\#FFFFFF99\] {
            color: #fff9
        }

        .text-button-defaultText {
            color: var(--button-defaultText)
        }

        .text-white\/80 {
            color: #fffc
        }

        .opacity-0 {
            opacity: 0
        }

        .opacity-20 {
            opacity: .2
        }

        .transition-all {
            transition-property: all;
            transition-timing-function: cubic-bezier(.4, 0, .2, 1);
            transition-duration: .15s
        }

        .transition-colors {
            transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
            transition-timing-function: cubic-bezier(.4, 0, .2, 1);
            transition-duration: .15s
        }

        .transition-opacity {
            transition-property: opacity
        }

        .duration-300 {
            transition-duration: .3s
        }

        .ease-out {
            transition-timing-function: cubic-bezier(0, 0, .2, 1)
        }

        .group:hover .group-hover\:text-gradient {
            -webkit-background-clip: text;
            background-clip: text;
            color: #0000
        }

        .file\:border-0::file-selector-button {
            border-width: 0
        }

        .file\:bg-transparent::file-selector-button {
            background-color: initial
        }

        .file\:text-sm::file-selector-button {
            font-size: .875rem;
            line-height: 1.25rem
        }

        .file\:font-medium::file-selector-button {
            font-weight: 500
        }

        .placeholder\:text-TextMute::placeholder {
            color: var(--TextMute)
        }

        .placeholder\:text-\[\#595959\]::placeholder {
            --tw-text-opacity: 1;
            color: rgb(89 89 89/var(--tw-text-opacity))
        }

        .placeholder\:text-input-placeholder::placeholder {
            color: var(--input-placeholder)
        }

        .focus-within\:relative:focus-within {
            position: relative
        }

        .focus-within\:z-20:focus-within {
            z-index: 20
        }

        .hover\:cursor-pointer:hover {
            cursor: pointer
        }

        .hover\:border-Link:hover {
            border-color: var(--Link)
        }

        .hover\:bg-BaseBgHover:hover {
            background-color: var(--BaseBgHover)
        }

        .hover\:bg-BaseBorder:hover {
            background-color: var(--BaseBorder)
        }

        .hover\:bg-SecondaryBg:hover {
            background-color: var(--SecondaryBg)
        }

        .hover\:bg-TertiaryBg:hover {
            background-color: var(--TertiaryBg)
        }

        .hover\:bg-card-innerBg:hover {
            background-color: var(--card-innerBg)
        }

        .hover\:bg-dropdown-hoverBg:hover {
            background-color: var(--dropdown-hoverBg)
        }

        .hover\:bg-transparent:hover {
            background-color: initial
        }

        .hover\:bg-white\/20:hover {
            background-color: #fff3
        }

        .hover\:bg-white\/5:hover {
            background-color: #ffffff0d
        }

        .hover\:bg-TokenSelectorHoverBg:hover {
            background-image: var(--TokenSelectorHoverBg)
        }

        .hover\:font-bold:hover {
            font-weight: 700
        }

        .hover\:\!text-Primary:hover {
            color: var(--Primary) !important
        }

        .hover\:text-Active:hover {
            color: var(--Active)
        }

        .hover\:text-Error:hover {
            color: var(--Error)
        }

        .hover\:text-Link:hover {
            color: var(--Link)
        }

        .hover\:text-Primary:hover {
            color: var(--Primary)
        }

        .hover\:text-TextBase:hover {
            color: var(--TextBase)
        }

        .hover\:text-dropdown-menuItemHover:hover {
            color: var(--dropdown-menuItemHover)
        }

        .hover\:text-white:hover {
            --tw-text-opacity: 1;
            color: rgb(255 255 255/var(--tw-text-opacity))
        }

        .hover\:underline:hover {
            text-decoration-line: underline
        }

        .hover\:no-underline:hover {
            text-decoration-line: none
        }

        .hover\:opacity-100:hover {
            opacity: 1
        }

        .hover\:opacity-50:hover {
            opacity: .5
        }

        .hover\:opacity-80:hover {
            opacity: .8
        }

        .hover\:opacity-90:hover {
            opacity: .9
        }

        .hover\:brightness-100:hover {
            --tw-brightness: brightness(1)
        }

        .hover\:brightness-100:hover,
        .hover\:brightness-105:hover {
            filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
        }

        .hover\:brightness-105:hover {
            --tw-brightness: brightness(1.05)
        }

        .hover\:brightness-110:hover {
            --tw-brightness: brightness(1.1)
        }

        .hover\:brightness-110:hover,
        .hover\:brightness-125:hover {
            filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
        }

        .hover\:brightness-125:hover {
            --tw-brightness: brightness(1.25)
        }

        .hover\:brightness-150:hover {
            --tw-brightness: brightness(1.5);
            filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
        }

        .focus\:bg-BaseBgHover:focus {
            background-color: var(--BaseBgHover)
        }

        .focus\:text-TextLabel:focus {
            color: var(--TextLabel)
        }

        .focus\:text-white:focus {
            --tw-text-opacity: 1;
            color: rgb(255 255 255/var(--tw-text-opacity))
        }

        .focus\:outline-none:focus {
            outline: 2px solid #0000;
            outline-offset: 2px
        }

        .focus\:ring-2:focus {
            --tw-ring-offset-shadow: var(--tw-ring-inset)0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
            --tw-ring-shadow: var(--tw-ring-inset)0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
            box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0#0000)
        }

        .focus\:ring-offset-2:focus {
            --tw-ring-offset-width: 2px
        }

        .focus-visible\:outline-none:focus-visible {
            outline: 2px solid #0000;
            outline-offset: 2px
        }

        .focus-visible\:ring-2:focus-visible {
            --tw-ring-offset-shadow: var(--tw-ring-inset)0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
            --tw-ring-shadow: var(--tw-ring-inset)0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
            box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0#0000)
        }

        .focus-visible\:ring-offset-2:focus-visible {
            --tw-ring-offset-width: 2px
        }

        .disabled\:pointer-events-none:disabled {
            pointer-events: none
        }

        .disabled\:cursor-not-allowed:disabled {
            cursor: not-allowed
        }

        .disabled\:border-none:disabled {
            border-style: none
        }

        .disabled\:\!bg-transparent:disabled {
            background-color: initial !important
        }

        .disabled\:bg-disabledBg:disabled {
            background-color: var(--disabledBg)
        }

        .disabled\:bg-none:disabled {
            background-image: none
        }

        .disabled\:text-button-disabledText:disabled {
            color: var(--button-disabledText)
        }

        .disabled\:opacity-25:disabled {
            opacity: .25
        }

        .disabled\:opacity-40:disabled {
            opacity: .4
        }

        .disabled\:opacity-50:disabled {
            opacity: .5
        }

        .disabled\:hover\:brightness-100:hover:disabled {
            --tw-brightness: brightness(1);
            filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
        }

        .group\/card:hover .group-hover\/card\:flex {
            display: flex
        }

        .group:hover .group-hover\:bg-textGradientLP {
            background-image: var(--textGradientLP)
        }

        .group\/datetimeLocalPicker:hover .group-hover\/datetimeLocalPicker\:text-Primary {
            color: var(--Primary)
        }

        .group\/account:hover .group-hover\/account\:opacity-80 {
            opacity: .8
        }

        .group:hover .group-hover\:opacity-100 {
            opacity: 1
        }

        .group.navTab .group-\[\.navTab\]\:rounded-none {
            border-radius: 0
        }

        .group.navTab .group-\[\.navTab\]\:px-0 {
            padding-left: 0;
            padding-right: 0
        }

        .group.navTab .group-\[\.navTab\]\:hover\:text-tab-navModeActiveText:hover {
            color: var(--tab-navModeActiveText)
        }

        .group.inCard .group-\[\.inCard\]\:disabled\:bg-disabledBgInModal:disabled,
        .group.inModal .group-\[\.inModal\]\:disabled\:bg-disabledBgInModal:disabled {
            background-color: var(--disabledBgInModal)
        }

        .peer:disabled~.peer-disabled\:cursor-not-allowed {
            cursor: not-allowed
        }

        .peer:disabled~.peer-disabled\:opacity-70 {
            opacity: .7
        }

        .data-\[state\=unchecked\]\:hover\:brightness-110:hover[data-state=unchecked] {
            --tw-brightness: brightness(1.1);
            filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
        }

        @media not all and (min-width:768px) {
            .max-md\:ml-\[calc\(50\%-50vw\)\] {
                margin-left: calc(50% - 50vw)
            }

            .max-md\:w-screen {
                width: 100vw
            }

            .max-md\:max-w-\[100vw\] {
                max-width: 100vw
            }
        }

        @media (min-width:640px) {
            .sm\:right-0 {
                right: 0
            }

            .sm\:top-0 {
                top: 0
            }

            .sm\:mt-12 {
                margin-top: 3rem
            }

            .sm\:grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr))
            }

            .sm\:flex-row {
                flex-direction: row
            }

            .sm\:flex-col {
                flex-direction: column
            }

            .sm\:items-center {
                align-items: center
            }

            .sm\:justify-between {
                justify-content: space-between
            }

            .sm\:gap-6 {
                gap: 1.5rem
            }

            .sm\:px-4 {
                padding-left: 1rem;
                padding-right: 1rem
            }
        }

        @media (min-width:768px) {
            .md\:mx-auto {
                margin-left: auto;
                margin-right: auto
            }

            .md\:mb-16 {
                margin-bottom: 4rem
            }

            .md\:ml-0 {
                margin-left: 0
            }

            .md\:mt-10 {
                margin-top: 2.5rem
            }

            .md\:block {
                display: block
            }

            .md\:flex {
                display: flex
            }

            .md\:hidden {
                display: none
            }

            .md\:h-12 {
                height: 3rem
            }

            .md\:h-\[153px\] {
                height: 153px
            }

            .md\:h-\[51px\] {
                height: 51px
            }

            .md\:h-\[72px\] {
                height: 72px
            }

            .md\:min-h-\[192px\] {
                min-height: 192px
            }

            .md\:min-h-\[700px\] {
                min-height: 700px
            }

            .md\:w-\[185px\] {
                width: 185px
            }

            .md\:w-\[72px\] {
                width: 72px
            }

            .md\:w-full {
                width: 100%
            }

            .md\:max-w-\[160px\] {
                max-width: 160px
            }

            .md\:max-w-\[26\.25rem\] {
                max-width: 26.25rem
            }

            .md\:max-w-\[436px\] {
                max-width: 436px
            }

            .md\:scale-100 {
                transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
            }

            .md\:scale-100 {
                --tw-scale-x: 1;
                --tw-scale-y: 1
            }

            .md\:grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr))
            }

            .md\:grid-cols-3 {
                grid-template-columns: repeat(3, minmax(0, 1fr))
            }

            .md\:flex-row {
                flex-direction: row
            }

            .md\:items-center {
                align-items: center
            }

            .md\:gap-0 {
                gap: 0
            }

            .md\:gap-10 {
                gap: 2.5rem
            }

            .md\:gap-2 {
                gap: .5rem
            }

            .md\:gap-2\.5 {
                gap: .625rem
            }

            .md\:gap-4 {
                gap: 1rem
            }

            .md\:gap-6 {
                gap: 1.5rem
            }

            .md\:gap-8 {
                gap: 2rem
            }

            .md\:space-x-3>:not([hidden])~:not([hidden]) {
                --tw-space-x-reverse: 0;
                margin-right: calc(.75rem*var(--tw-space-x-reverse));
                margin-left: calc(.75rem*calc(1 - var(--tw-space-x-reverse)))
            }

            .md\:space-y-0>:not([hidden])~:not([hidden]) {
                --tw-space-y-reverse: 0;
                margin-top: calc(0px*calc(1 - var(--tw-space-y-reverse)));
                margin-bottom: calc(0px*var(--tw-space-y-reverse))
            }

            .md\:space-y-40>:not([hidden])~:not([hidden]) {
                --tw-space-y-reverse: 0;
                margin-top: calc(10rem*calc(1 - var(--tw-space-y-reverse)));
                margin-bottom: calc(10rem*var(--tw-space-y-reverse))
            }

            .md\:border-b {
                border-bottom-width: 1px
            }

            .md\:border-r {
                border-right-width: 1px
            }

            .md\:border-t {
                border-top-width: 1px
            }

            .md\:border-white\/10 {
                border-color: #ffffff1a
            }

            .md\:px-0 {
                padding-left: 0;
                padding-right: 0
            }

            .md\:px-10 {
                padding-left: 2.5rem;
                padding-right: 2.5rem
            }

            .md\:px-6 {
                padding-left: 1.5rem;
                padding-right: 1.5rem
            }

            .md\:py-16 {
                padding-top: 4rem;
                padding-bottom: 4rem
            }

            .md\:py-4 {
                padding-top: 1rem;
                padding-bottom: 1rem
            }

            .md\:pb-0 {
                padding-bottom: 0
            }

            .md\:pb-16 {
                padding-bottom: 4rem
            }

            .md\:pr-4 {
                padding-right: 1rem
            }

            .md\:pt-12 {
                padding-top: 3rem
            }

            .md\:pt-40 {
                padding-top: 10rem
            }

            .md\:pt-8 {
                padding-top: 2rem
            }

            .md\:text-\[16px\] {
                font-size: 16px
            }

            .md\:text-\[18px\] {
                font-size: 18px
            }

            .md\:text-\[24px\] {
                font-size: 24px
            }

            .md\:text-\[32px\] {
                font-size: 32px
            }

            .md\:text-\[40px\] {
                font-size: 40px
            }

            .md\:text-\[48px\] {
                font-size: 48px
            }

            .md\:text-base {
                font-size: 1rem;
                line-height: 1.5rem
            }

            .md\:text-lg {
                font-size: 1.125rem;
                line-height: 1.75rem
            }

            .md\:leading-\[1\.15\] {
                line-height: 1.15
            }

            .md\:leading-\[1\.1\] {
                line-height: 1.1
            }

            .md\:leading-tight {
                line-height: 1.25
            }
        }

        @media (min-width:1024px) {
            .lg\:order-1 {
                order: 1
            }

            .lg\:order-2 {
                order: 2
            }

            .lg\:order-3 {
                order: 3
            }

            .lg\:grid-cols-4 {
                grid-template-columns: repeat(4, minmax(0, 1fr))
            }

            .lg\:flex-row {
                flex-direction: row
            }

            .lg\:items-start {
                align-items: flex-start
            }

            .lg\:justify-end {
                justify-content: flex-end
            }

            .lg\:justify-between {
                justify-content: space-between
            }

            .lg\:gap-4 {
                gap: 1rem
            }

            .lg\:gap-6 {
                gap: 1.5rem
            }

            .lg\:gap-8 {
                gap: 2rem
            }

            .lg\:space-x-4>:not([hidden])~:not([hidden]) {
                --tw-space-x-reverse: 0;
                margin-right: calc(1rem*var(--tw-space-x-reverse));
                margin-left: calc(1rem*calc(1 - var(--tw-space-x-reverse)))
            }

            .lg\:px-3 {
                padding-left: .75rem;
                padding-right: .75rem
            }

            .lg\:text-\[72px\] {
                font-size: 72px
            }
        }

        @media (min-width:1280px) {
            .xl\:space-x-5>:not([hidden])~:not([hidden]) {
                --tw-space-x-reverse: 0;
                margin-right: calc(1.25rem*var(--tw-space-x-reverse));
                margin-left: calc(1.25rem*calc(1 - var(--tw-space-x-reverse)))
            }

            .xl\:px-4 {
                padding-left: 1rem;
                padding-right: 1rem
            }
        }

        @media (min-width:1536px) {
            .\32xl\:space-x-5>:not([hidden])~:not([hidden]) {
                --tw-space-x-reverse: 0;
                margin-right: calc(1.25rem*var(--tw-space-x-reverse));
                margin-left: calc(1.25rem*calc(1 - var(--tw-space-x-reverse)))
            }
        }

        .\[\&\:\:-webkit-calendar-picker-indicator\]\:hidden::-webkit-calendar-picker-indicator {
            display: none
        }

        .\[\&\:\:-webkit-calendar-picker-indicator\]\:appearance-none::-webkit-calendar-picker-indicator {
            appearance: none
        }

        .\[\&_\[role\=tablist\]\]\:\!flex-row [role=tablist] {
            flex-direction: row !important
        }

        .\[\&_\[role\=tablist\]\]\:\!flex-wrap [role=tablist] {
            flex-wrap: wrap !important
        }

        .\[\&_\[role\=tablist\]\]\:\!justify-center [role=tablist] {
            justify-content: center !important
        }

        .\[\&_\[role\=tablist\]\]\:gap-x-2 [role=tablist] {
            column-gap: .5rem
        }

        .\[\&_\[role\=tablist\]\]\:gap-y-3 [role=tablist] {
            row-gap: .75rem
        }

        .\[\&_\[role\=tablist\]\]\:\!space-y-0 [role=tablist]>:not([hidden])~:not([hidden]) {
            --tw-space-y-reverse: 0 !important;
            margin-top: calc(0px*calc(1 - var(--tw-space-y-reverse))) !important;
            margin-bottom: calc(0px*var(--tw-space-y-reverse)) !important
        }

        @media (min-width:640px) {
            .sm\:\[\&_\[role\=tablist\]\]\:gap-x-3 [role=tablist] {
                column-gap: .75rem
            }
        }

        @media (min-width:768px) {
            .md\:\[\&_\[role\=tablist\]\]\:gap-x-4 [role=tablist] {
                column-gap: 1rem
            }
        }

        @media (min-width:1024px) {
            .lg\:\[\&_\[role\=tablist\]\]\:gap-x-5 [role=tablist] {
                column-gap: 1.25rem
            }
        }

        .\[\&_svg\]\:max-h-5 svg {
            max-height: 1.25rem
        }

        .\[\&_svg\]\:max-w-5 svg {
            max-width: 1.25rem
        }

/* --- Extracted <style> block #10 --- */
@font-face {
            font-family: "Satoshi";
            src: url(fonts/font_b614a26ab4499617406e69a164a7f70a1b7b33be.woff2)format("woff2");
            font-weight: 300;
            font-style: normal
        }

        @font-face {
            font-family: "Satoshi";
            src: url(fonts/font_21633c7ccdba2846eae71554fc2a7cf7a0d90ff2.woff2)format("woff2");
            font-weight: 400;
            font-style: normal
        }

        @font-face {
            font-family: "Satoshi";
            src: url(fonts/font_7f6de341cbc6058b8376bd8b26568d35b1d38fcf.woff2)format("woff2");
            font-weight: 500;
            font-style: normal
        }

        @font-face {
            font-family: "Satoshi";
            src: url(fonts/font_7a67e42dc79b056b46a286a7461028fccbde7e8a.woff2)format("woff2");
            font-weight: 700;
            font-style: normal
        }

        .landing-v2-typography {
            font-family: Satoshi, ui-sans-serif, system-ui, sans-serif
        }

        .landing-v2-typography :is(h1, h2, h3, h4) {
            font-family: var(--font-syne), sans-serif
        }

        .markdown-body h1:hover .anchor .octicon-link:before,
        .markdown-body h2:hover .anchor .octicon-link:before,
        .markdown-body h3:hover .anchor .octicon-link:before,
        .markdown-body h4:hover .anchor .octicon-link:before,
        .markdown-body h5:hover .anchor .octicon-link:before,
        .markdown-body h6:hover .anchor .octicon-link:before {
            width: 16px;
            height: 16px;
            content: " ";
            display: inline-block;
            background-color: currentColor;
            -webkit-mask-image: url(data:image/svg+xml,<svg\ xmlns=\'http://www.w3.org/2000/svg\'\ viewBox=\'0\ 0\ 16\ 16\'\ version=\'1.1\'\ aria-hidden=\'true\'><path\ fillRule=\'evenodd\'\ d=\'M7.775\ 3.275a.75.75\ 0\ 001.06\ 1.06l1.25-1.25a2\ 2\ 0\ 112.83\ 2.83l-2.5\ 2.5a2\ 2\ 0\ 01-2.83\ 0\ .75.75\ 0\ 00-1.06\ 1.06\ 3.5\ 3.5\ 0\ 004.95\ 0l2.5-2.5a3.5\ 3.5\ 0\ 00-4.95-4.95l-1.25\ 1.25zm-4.69\ 9.64a2\ 2\ 0\ 010-2.83l2.5-2.5a2\ 2\ 0\ 012.83\ 0\ .75.75\ 0\ 001.06-1.06\ 3.5\ 3.5\ 0\ 00-4.95\ 0l-2.5\ 2.5a3.5\ 3.5\ 0\ 004.95\ 4.95l1.25-1.25a.75.75\ 0\ 00-1.06-1.06l-1.25\ 1.25a2\ 2\ 0\ 01-2.83\ 0z\'><\/path><\/svg>);
            mask-image: url(data:image/svg+xml,<svg\ xmlns=\'http://www.w3.org/2000/svg\'\ viewBox=\'0\ 0\ 16\ 16\'\ version=\'1.1\'\ aria-hidden=\'true\'><path\ fillRule=\'evenodd\'\ d=\'M7.775\ 3.275a.75.75\ 0\ 001.06\ 1.06l1.25-1.25a2\ 2\ 0\ 112.83\ 2.83l-2.5\ 2.5a2\ 2\ 0\ 01-2.83\ 0\ .75.75\ 0\ 00-1.06\ 1.06\ 3.5\ 3.5\ 0\ 004.95\ 0l2.5-2.5a3.5\ 3.5\ 0\ 00-4.95-4.95l-1.25\ 1.25zm-4.69\ 9.64a2\ 2\ 0\ 010-2.83l2.5-2.5a2\ 2\ 0\ 012.83\ 0\ .75.75\ 0\ 001.06-1.06\ 3.5\ 3.5\ 0\ 00-4.95\ 0l-2.5\ 2.5a3.5\ 3.5\ 0\ 004.95\ 4.95l1.25-1.25a.75.75\ 0\ 00-1.06-1.06l-1.25\ 1.25a2\ 2\ 0\ 01-2.83\ 0z\'><\/path><\/svg>)
        }

        .markdown-body [type=number]::-webkit-inner-spin-button,
        .markdown-body [type=number]::-webkit-outer-spin-button {
            height: auto
        }

        .markdown-body [type=search]::-webkit-search-cancel-button,
        .markdown-body [type=search]::-webkit-search-decoration {
            appearance: none
        }

        .markdown-body ::-webkit-input-placeholder {
            color: inherit;
            opacity: .54
        }

        .markdown-body ::-webkit-file-upload-button {
            appearance: button;
            font: inherit
        }

        .markdown-body a:hover {
            text-decoration: underline
        }

        .markdown-body ::placeholder {
            color: var(--fgColor-muted);
            opacity: 1
        }

        .markdown-body hr:after,
        .markdown-body hr:before {
            display: table;
            content: ""
        }

        .markdown-body hr:after {
            clear: both
        }

        .markdown-body [role=button]:focus,
        .markdown-body a:focus,
        .markdown-body input[type=checkbox]:focus,
        .markdown-body input[type=radio]:focus {
            outline: 2px solid var(--focus-outlineColor);
            outline-offset: -2px;
            box-shadow: none
        }

        .markdown-body [role=button]:focus:not(:focus-visible),
        .markdown-body a:focus:not(:focus-visible),
        .markdown-body input[type=checkbox]:focus:not(:focus-visible),
        .markdown-body input[type=radio]:focus:not(:focus-visible) {
            outline: 1px solid #0000
        }

        .markdown-body [role=button]:focus-visible,
        .markdown-body a:focus-visible,
        .markdown-body input[type=checkbox]:focus-visible,
        .markdown-body input[type=radio]:focus-visible {
            outline: 2px solid var(--focus-outlineColor);
            outline-offset: -2px;
            box-shadow: none
        }

        .markdown-body a:not([class]):focus,
        .markdown-body a:not([class]):focus-visible,
        .markdown-body input[type=checkbox]:focus,
        .markdown-body input[type=checkbox]:focus-visible,
        .markdown-body input[type=radio]:focus,
        .markdown-body input[type=radio]:focus-visible {
            outline-offset: 0
        }

        .markdown-body input::-webkit-inner-spin-button,
        .markdown-body input::-webkit-outer-spin-button {
            margin: 0;
            appearance: none
        }

        .markdown-body:after,
        .markdown-body:before {
            display: table;
            content: ""
        }

        .markdown-body:after {
            clear: both
        }

        .markdown-body .anchor:focus {
            outline: none
        }

        .markdown-body h1:hover .anchor,
        .markdown-body h2:hover .anchor,
        .markdown-body h3:hover .anchor,
        .markdown-body h4:hover .anchor,
        .markdown-body h5:hover .anchor,
        .markdown-body h6:hover .anchor {
            text-decoration: none
        }

        .markdown-body h1:hover .anchor .octicon-link,
        .markdown-body h2:hover .anchor .octicon-link,
        .markdown-body h3:hover .anchor .octicon-link,
        .markdown-body h4:hover .anchor .octicon-link,
        .markdown-body h5:hover .anchor .octicon-link,
        .markdown-body h6:hover .anchor .octicon-link {
            visibility: visible
        }

        .markdown-body [data-footnote-ref]:before {
            content: "["
        }

        .markdown-body [data-footnote-ref]:after {
            content: "]"
        }

        .markdown-body .footnotes li:target:before {
            position: absolute;
            top: calc(var(--base-size-8)*-1);
            right: calc(var(--base-size-8)*-1);
            bottom: calc(var(--base-size-8)*-1);
            left: calc(var(--base-size-24)*-1);
            pointer-events: none;
            content: "";
            border: 2px solid var(--borderColor-accent-emphasis);
            border-radius: 6px
        }

        .markdown-body .footnotes li:target {
            color: var(--fgColor-default)
        }

        .markdown-body [role=button]:focus:not(:focus-visible),
        .markdown-body [role=tabpanel][tabindex="0"]:focus:not(:focus-visible),
        .markdown-body a:focus:not(:focus-visible),
        .markdown-body button:focus:not(:focus-visible),
        .markdown-body summary:focus:not(:focus-visible) {
            outline: none;
            box-shadow: none
        }

        .markdown-body [tabindex="0"]:focus:not(:focus-visible),
        .markdown-body details-dialog:focus:not(:focus-visible) {
            outline: none
        }

        .markdown-body ul:dir(rtl) .task-list-item-checkbox {
            margin: 0-1.6em .25em .2em
        }

        .markdown-body ol:dir(rtl) .task-list-item-checkbox {
            margin: 0-1.6em .25em .2em
        }

        .markdown-body .contains-task-list:focus-within .task-list-item-convert-container,
        .markdown-body .contains-task-list:hover .task-list-item-convert-container {
            display: block;
            width: auto;
            height: 24px;
            overflow: visible;
            clip: auto
        }

        .markdown-body ::-webkit-calendar-picker-indicator {
            filter: invert(50%)
        }

/* --- Extracted <style> block #11 --- */
.rc-slider-handle:focus {
            outline: none;
            box-shadow: none
        }

        .rc-slider-handle:focus-visible {
            border-color: #2db7f5;
            box-shadow: 0 0 0 3px #96dbfa
        }

        .rc-slider-handle-click-focused:focus {
            border-color: #96dbfa;
            box-shadow: unset
        }

        .rc-slider-handle:hover {
            border-color: #57c5f7
        }

        .rc-slider-handle:active {
            border-color: #57c5f7;
            box-shadow: 0 0 5px #57c5f7;
            cursor: grabbing
        }

        @keyframes rcSliderTooltipZoomDownIn {
            0% {
                transform: scale(0);
                transform-origin: 50% 100%;
                opacity: 0
            }

            to {
                transform: scale(1);
                transform-origin: 50% 100%
            }
        }

        @keyframes rcSliderTooltipZoomDownOut {
            0% {
                transform: scale(1);
                transform-origin: 50% 100%
            }

            to {
                transform: scale(0);
                transform-origin: 50% 100%;
                opacity: 0
            }
        }

/* --- Extracted <style> block #12 --- */
@keyframes slide-in-one-tap {
            from {
                transform: translateY(80px)
            }

            to {
                transform: translateY(0px)
            }
        }

/* --- Extracted <style> block #13 --- */
[data-vaul-drawer]:not([data-vaul-custom-container=true])::after {
            content: "";
            position: absolute;
            background: inherit;
            background-color: inherit
        }

        [data-vaul-drawer][data-vaul-drawer-direction=top]::after {
            top: initial;
            bottom: 100%;
            left: 0;
            right: 0;
            height: 200%
        }

        [data-vaul-drawer][data-vaul-drawer-direction=bottom]::after {
            top: 100%;
            bottom: initial;
            left: 0;
            right: 0;
            height: 200%
        }

        [data-vaul-drawer][data-vaul-drawer-direction=left]::after {
            left: initial;
            right: 100%;
            top: 0;
            bottom: 0;
            width: 200%
        }

        [data-vaul-drawer][data-vaul-drawer-direction=right]::after {
            left: 100%;
            right: initial;
            top: 0;
            bottom: 0;
            width: 200%
        }

        [data-vaul-handle]:active,
        [data-vaul-handle]:hover {
            opacity: 1
        }

        @media (pointer:fine) {
            [data-vaul-handle-hitarea]: {
                width: 100%;
                height: 100%
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        @keyframes fadeOut {
            to {
                opacity: 0
            }
        }

        @keyframes slideFromBottom {
            from {
                transform: translate3d(0, 100%, 0)
            }

            to {
                transform: translate3d(0, 0, 0)
            }
        }

        @keyframes slideToBottom {
            to {
                transform: translate3d(0, 100%, 0)
            }
        }

        @keyframes slideFromTop {
            from {
                transform: translate3d(0, -100%, 0)
            }

            to {
                transform: translate3d(0, 0, 0)
            }
        }

        @keyframes slideToTop {
            to {
                transform: translate3d(0, -100%, 0)
            }
        }

        @keyframes slideFromLeft {
            from {
                transform: translate3d(-100%, 0, 0)
            }

            to {
                transform: translate3d(0, 0, 0)
            }
        }

        @keyframes slideToLeft {
            to {
                transform: translate3d(-100%, 0, 0)
            }
        }

        @keyframes slideFromRight {
            from {
                transform: translate3d(100%, 0, 0)
            }

            to {
                transform: translate3d(0, 0, 0)
            }
        }

        @keyframes slideToRight {
            to {
                transform: translate3d(100%, 0, 0)
            }
        }

/* --- Extracted <style> block #14 --- */
@keyframes stripe-move {
            0% {
                background-position: 0 0
            }

            100% {
                background-position: 40px 0
            }
        }

/* --- Extracted <style> block #15 --- */
@keyframes w3m-shake {
            0% {
                transform: scale(1) rotate(0deg)
            }

            20% {
                transform: scale(1) rotate(-1deg)
            }

            40% {
                transform: scale(1) rotate(1.5deg)
            }

            60% {
                transform: scale(1) rotate(-1.5deg)
            }

            80% {
                transform: scale(1) rotate(1deg)
            }

            100% {
                transform: scale(1) rotate(0deg)
            }
        }

        @keyframes w3m-iframe-fade-out {
            0% {
                opacity: 1
            }

            100% {
                opacity: 0
            }
        }

        @keyframes w3m-iframe-zoom-in {
            0% {
                transform: translateY(50px);
                opacity: 0
            }

            100% {
                transform: translateY(0px);
                opacity: 1
            }
        }

        @keyframes w3m-iframe-zoom-in-mobile {
            0% {
                transform: scale(0.95);
                opacity: 0
            }

            100% {
                transform: scale(1);
                opacity: 1
            }
        }

        :root {
            --apkt-modal-width: 370px;
            --apkt-visual-size-inherit: inherit;
            --apkt-visual-size-sm: 40px;
            --apkt-visual-size-md: 55px;
            --apkt-visual-size-lg: 80px;
            --apkt-path-network-sm: path("M15.4 2.1a5.21 5.21 0 0 1 5.2 0l11.61 6.7a5.21 5.21 0 0 1 2.61 4.52v13.4c0 1.87-1 3.59-2.6 4.52l-11.61 6.7c-1.62.93-3.6.93-5.22 0l-11.6-6.7a5.21 5.21 0 0 1-2.61-4.51v-13.4c0-1.87 1-3.6 2.6-4.52L15.4 2.1Z");
            --apkt-path-network-md: path("M43.4605 10.7248L28.0485 1.61089C25.5438 0.129705 22.4562 0.129705 19.9515 1.61088L4.53951 10.7248C2.03626 12.2051 0.5 14.9365 0.5 17.886V36.1139C0.5 39.0635 2.03626 41.7949 4.53951 43.2752L19.9515 52.3891C22.4562 53.8703 25.5438 53.8703 28.0485 52.3891L43.4605 43.2752C45.9637 41.7949 47.5 39.0635 47.5 36.114V17.8861C47.5 14.9365 45.9637 12.2051 43.4605 10.7248Z");
            --apkt-path-network-lg: path("M78.3244 18.926L50.1808 2.45078C45.7376 -0.150261 40.2624 -0.150262 35.8192 2.45078L7.6756 18.926C3.23322 21.5266 0.5 26.3301 0.5 31.5248V64.4752C0.5 69.6699 3.23322 74.4734 7.6756 77.074L35.8192 93.5492C40.2624 96.1503 45.7376 96.1503 50.1808 93.5492L78.3244 77.074C82.7668 74.4734 85.5 69.6699 85.5 64.4752V31.5248C85.5 26.3301 82.7668 21.5266 78.3244 18.926Z");
            --apkt-width-network-sm: 36px;
            --apkt-width-network-md: 48px;
            --apkt-width-network-lg: 86px;
            --apkt-duration-dynamic: 0ms;
            --apkt-height-network-sm: 40px;
            --apkt-height-network-md: 54px;
            --apkt-height-network-lg: 96px
        }

/* --- Extracted <style> block #16 --- */
:root {}

/* --- Extracted <style> block #17 --- */
:root {
            --apkt-colors-black: #202020;
            --apkt-colors-white: #FFFFFF;
            --apkt-colors-white010: rgba(255, 255, 255, 0.1);
            --apkt-colors-accent010: rgba(9, 136, 240, 0.1);
            --apkt-colors-accent020: rgba(9, 136, 240, 0.2);
            --apkt-colors-accent030: rgba(9, 136, 240, 0.3);
            --apkt-colors-accent040: rgba(9, 136, 240, 0.4);
            --apkt-colors-accent050: rgba(9, 136, 240, 0.5);
            --apkt-colors-accent060: rgba(9, 136, 240, 0.6);
            --apkt-colors-accent070: rgba(9, 136, 240, 0.7);
            --apkt-colors-accent080: rgba(9, 136, 240, 0.8);
            --apkt-colors-accent090: rgba(9, 136, 240, 0.9);
            --apkt-colors-accent100: rgba(9, 136, 240, 1.0);
            --apkt-colors-accentSecondary010: rgba(199, 185, 148, 0.1);
            --apkt-colors-accentSecondary020: rgba(199, 185, 148, 0.2);
            --apkt-colors-accentSecondary030: rgba(199, 185, 148, 0.3);
            --apkt-colors-accentSecondary040: rgba(199, 185, 148, 0.4);
            --apkt-colors-accentSecondary050: rgba(199, 185, 148, 0.5);
            --apkt-colors-accentSecondary060: rgba(199, 185, 148, 0.6);
            --apkt-colors-accentSecondary070: rgba(199, 185, 148, 0.7);
            --apkt-colors-accentSecondary080: rgba(199, 185, 148, 0.8);
            --apkt-colors-accentSecondary090: rgba(199, 185, 148, 0.9);
            --apkt-colors-accentSecondary100: rgba(199, 185, 148, 1.0);
            --apkt-colors-productWalletKit: #FFB800;
            --apkt-colors-productAppKit: #FF573B;
            --apkt-colors-productCloud: #0988F0;
            --apkt-colors-productDocumentation: #008847;
            --apkt-colors-neutrals050: #F6F6F6;
            --apkt-colors-neutrals100: #F3F3F3;
            --apkt-colors-neutrals200: #E9E9E9;
            --apkt-colors-neutrals300: #D0D0D0;
            --apkt-colors-neutrals400: #BBB;
            --apkt-colors-neutrals500: #9A9A9A;
            --apkt-colors-neutrals600: #6C6C6C;
            --apkt-colors-neutrals700: #4F4F4F;
            --apkt-colors-neutrals800: #363636;
            --apkt-colors-neutrals900: #2A2A2A;
            --apkt-colors-neutrals1000: #252525;
            --apkt-colors-semanticSuccess010: rgba(48, 164, 107, 0.1);
            --apkt-colors-semanticSuccess020: rgba(48, 164, 107, 0.2);
            --apkt-colors-semanticSuccess030: rgba(48, 164, 107, 0.3);
            --apkt-colors-semanticSuccess040: rgba(48, 164, 107, 0.4);
            --apkt-colors-semanticSuccess050: rgba(48, 164, 107, 0.5);
            --apkt-colors-semanticSuccess060: rgba(48, 164, 107, 0.6);
            --apkt-colors-semanticSuccess070: rgba(48, 164, 107, 0.7);
            --apkt-colors-semanticSuccess080: rgba(48, 164, 107, 0.8);
            --apkt-colors-semanticSuccess090: rgba(48, 164, 107, 0.9);
            --apkt-colors-semanticSuccess100: rgba(48, 164, 107, 1.0);
            --apkt-colors-semanticError010: rgba(223, 74, 52, 0.1);
            --apkt-colors-semanticError020: rgba(223, 74, 52, 0.2);
            --apkt-colors-semanticError030: rgba(223, 74, 52, 0.3);
            --apkt-colors-semanticError040: rgba(223, 74, 52, 0.4);
            --apkt-colors-semanticError050: rgba(223, 74, 52, 0.5);
            --apkt-colors-semanticError060: rgba(223, 74, 52, 0.6);
            --apkt-colors-semanticError070: rgba(223, 74, 52, 0.7);
            --apkt-colors-semanticError080: rgba(223, 74, 52, 0.8);
            --apkt-colors-semanticError090: rgba(223, 74, 52, 0.9);
            --apkt-colors-semanticError100: rgba(223, 74, 52, 1.0);
            --apkt-colors-semanticWarning010: rgba(243, 161, 63, 0.1);
            --apkt-colors-semanticWarning020: rgba(243, 161, 63, 0.2);
            --apkt-colors-semanticWarning030: rgba(243, 161, 63, 0.3);
            --apkt-colors-semanticWarning040: rgba(243, 161, 63, 0.4);
            --apkt-colors-semanticWarning050: rgba(243, 161, 63, 0.5);
            --apkt-colors-semanticWarning060: rgba(243, 161, 63, 0.6);
            --apkt-colors-semanticWarning070: rgba(243, 161, 63, 0.7);
            --apkt-colors-semanticWarning080: rgba(243, 161, 63, 0.8);
            --apkt-colors-semanticWarning090: rgba(243, 161, 63, 0.9);
            --apkt-colors-semanticWarning100: rgba(243, 161, 63, 1.0);
            --apkt-fontFamily-regular: inherit;
            --apkt-fontFamily-mono: KHTekaMono;
            --apkt-fontWeight-regular: 400;
            --apkt-fontWeight-medium: 500;
            --apkt-textSize-h1: 50px;
            --apkt-textSize-h2: 44px;
            --apkt-textSize-h3: 38px;
            --apkt-textSize-h4: 32px;
            --apkt-textSize-h5: 26px;
            --apkt-textSize-h6: 20px;
            --apkt-textSize-large: 16px;
            --apkt-textSize-medium: 14px;
            --apkt-textSize-small: 12px;
            --apkt-typography-h1-regular-mono-lineHeight: 50px;
            --apkt-typography-h1-regular-mono-letterSpacing: -3px;
            --apkt-typography-h1-regular-lineHeight: 50px;
            --apkt-typography-h1-regular-letterSpacing: -1px;
            --apkt-typography-h1-medium-lineHeight: 50px;
            --apkt-typography-h1-medium-letterSpacing: -0.84px;
            --apkt-typography-h2-regular-mono-lineHeight: 44px;
            --apkt-typography-h2-regular-mono-letterSpacing: -2.64px;
            --apkt-typography-h2-regular-lineHeight: 44px;
            --apkt-typography-h2-regular-letterSpacing: -0.88px;
            --apkt-typography-h2-medium-lineHeight: 44px;
            --apkt-typography-h2-medium-letterSpacing: -0.88px;
            --apkt-typography-h3-regular-mono-lineHeight: 38px;
            --apkt-typography-h3-regular-mono-letterSpacing: -2.28px;
            --apkt-typography-h3-regular-lineHeight: 38px;
            --apkt-typography-h3-regular-letterSpacing: -0.76px;
            --apkt-typography-h3-medium-lineHeight: 38px;
            --apkt-typography-h3-medium-letterSpacing: -0.76px;
            --apkt-typography-h4-regular-mono-lineHeight: 32px;
            --apkt-typography-h4-regular-mono-letterSpacing: -1.92px;
            --apkt-typography-h4-regular-lineHeight: 32px;
            --apkt-typography-h4-regular-letterSpacing: -0.32px;
            --apkt-typography-h4-medium-lineHeight: 32px;
            --apkt-typography-h4-medium-letterSpacing: -0.32px;
            --apkt-typography-h5-regular-mono-lineHeight: 26px;
            --apkt-typography-h5-regular-mono-letterSpacing: -1.56px;
            --apkt-typography-h5-regular-lineHeight: 26px;
            --apkt-typography-h5-regular-letterSpacing: -0.26px;
            --apkt-typography-h5-medium-lineHeight: 26px;
            --apkt-typography-h5-medium-letterSpacing: -0.26px;
            --apkt-typography-h6-regular-mono-lineHeight: 20px;
            --apkt-typography-h6-regular-mono-letterSpacing: -1.2px;
            --apkt-typography-h6-regular-lineHeight: 20px;
            --apkt-typography-h6-regular-letterSpacing: -0.6px;
            --apkt-typography-h6-medium-lineHeight: 20px;
            --apkt-typography-h6-medium-letterSpacing: -0.6px;
            --apkt-typography-lg-regular-mono-lineHeight: 16px;
            --apkt-typography-lg-regular-mono-letterSpacing: -0.96px;
            --apkt-typography-lg-regular-lineHeight: 18px;
            --apkt-typography-lg-regular-letterSpacing: -0.16px;
            --apkt-typography-lg-medium-lineHeight: 18px;
            --apkt-typography-lg-medium-letterSpacing: -0.16px;
            --apkt-typography-md-regular-mono-lineHeight: 14px;
            --apkt-typography-md-regular-mono-letterSpacing: -0.84px;
            --apkt-typography-md-regular-lineHeight: 16px;
            --apkt-typography-md-regular-letterSpacing: -0.14px;
            --apkt-typography-md-medium-lineHeight: 16px;
            --apkt-typography-md-medium-letterSpacing: -0.14px;
            --apkt-typography-sm-regular-mono-lineHeight: 12px;
            --apkt-typography-sm-regular-mono-letterSpacing: -0.72px;
            --apkt-typography-sm-regular-lineHeight: 14px;
            --apkt-typography-sm-regular-letterSpacing: -0.12px;
            --apkt-typography-sm-medium-lineHeight: 14px;
            --apkt-typography-sm-medium-letterSpacing: -0.12px;
            --apkt-tokens-core-backgroundAccentPrimary: var(--apkt-tokens-core-backgroundAccentPrimary-base);
            --apkt-tokens-core-backgroundAccentCertified: #C7B994;
            --apkt-tokens-core-backgroundWalletKit: #FFB800;
            --apkt-tokens-core-backgroundAppKit: #FF573B;
            --apkt-tokens-core-backgroundCloud: #0988F0;
            --apkt-tokens-core-backgroundDocumentation: #008847;
            --apkt-tokens-core-backgroundSuccess: rgba(48, 164, 107, 0.20);
            --apkt-tokens-core-backgroundError: rgba(223, 74, 52, 0.20);
            --apkt-tokens-core-backgroundWarning: rgba(243, 161, 63, 0.20);
            --apkt-tokens-core-textAccentPrimary: #0988F0;
            --apkt-tokens-core-textAccentCertified: #C7B994;
            --apkt-tokens-core-textWalletKit: #FFB800;
            --apkt-tokens-core-textAppKit: #FF573B;
            --apkt-tokens-core-textCloud: #0988F0;
            --apkt-tokens-core-textDocumentation: #008847;
            --apkt-tokens-core-textSuccess: #30A46B;
            --apkt-tokens-core-textError: #DF4A34;
            --apkt-tokens-core-textWarning: #F3A13F;
            --apkt-tokens-core-borderAccentPrimary: #0988F0;
            --apkt-tokens-core-borderSecondary: #C7B994;
            --apkt-tokens-core-borderSuccess: #30A46B;
            --apkt-tokens-core-borderError: #DF4A34;
            --apkt-tokens-core-borderWarning: #F3A13F;
            --apkt-tokens-core-foregroundAccent010: rgba(9, 136, 240, 0.1);
            --apkt-tokens-core-foregroundAccent020: rgba(9, 136, 240, 0.2);
            --apkt-tokens-core-foregroundAccent040: rgba(9, 136, 240, 0.4);
            --apkt-tokens-core-foregroundAccent060: rgba(9, 136, 240, 0.6);
            --apkt-tokens-core-foregroundSecondary020: rgba(199, 185, 148, 0.2);
            --apkt-tokens-core-foregroundSecondary040: rgba(199, 185, 148, 0.4);
            --apkt-tokens-core-foregroundSecondary060: rgba(199, 185, 148, 0.6);
            --apkt-tokens-core-iconAccentPrimary: #0988F0;
            --apkt-tokens-core-iconAccentCertified: #C7B994;
            --apkt-tokens-core-iconSuccess: #30A46B;
            --apkt-tokens-core-iconError: #DF4A34;
            --apkt-tokens-core-iconWarning: #F3A13F;
            --apkt-tokens-core-glass010: rgba(255, 255, 255, 0.1);
            --apkt-tokens-core-zIndex: 9999;
            --apkt-tokens-theme-overlay: rgba(0, 0, 0, 0.50);
            --apkt-tokens-theme-backgroundPrimary: var(--apkt-tokens-theme-backgroundPrimary-base);
            --apkt-tokens-theme-backgroundInvert: #FFFFFF;
            --apkt-tokens-theme-textPrimary: #FFFFFF;
            --apkt-tokens-theme-textSecondary: #9A9A9A;
            --apkt-tokens-theme-textTertiary: #BBBBBB;
            --apkt-tokens-theme-textInvert: #202020;
            --apkt-tokens-theme-borderPrimary: #2A2A2A;
            --apkt-tokens-theme-borderPrimaryDark: #363636;
            --apkt-tokens-theme-borderSecondary: #4F4F4F;
            --apkt-tokens-theme-foregroundPrimary: #252525;
            --apkt-tokens-theme-foregroundSecondary: #2A2A2A;
            --apkt-tokens-theme-foregroundTertiary: #363636;
            --apkt-tokens-theme-iconDefault: #9A9A9A;
            --apkt-tokens-theme-iconInverse: #FFFFFF;
            --apkt-borderRadius-1: 4px;
            --apkt-borderRadius-2: 8px;
            --apkt-borderRadius-3: 12px;
            --apkt-borderRadius-4: 16px;
            --apkt-borderRadius-5: 20px;
            --apkt-borderRadius-6: 24px;
            --apkt-borderRadius-8: 32px;
            --apkt-borderRadius-10: 10px;
            --apkt-borderRadius-16: 64px;
            --apkt-borderRadius-20: 80px;
            --apkt-borderRadius-32: 128px;
            --apkt-borderRadius-64: 256px;
            --apkt-borderRadius-128: 512px;
            --apkt-borderRadius-round: 9999px;
            --apkt-spacing-0: 0px;
            --apkt-spacing-1: 4px;
            --apkt-spacing-2: 8px;
            --apkt-spacing-3: 12px;
            --apkt-spacing-4: 16px;
            --apkt-spacing-5: 20px;
            --apkt-spacing-6: 24px;
            --apkt-spacing-7: 28px;
            --apkt-spacing-8: 32px;
            --apkt-spacing-9: 36px;
            --apkt-spacing-10: 40px;
            --apkt-spacing-12: 48px;
            --apkt-spacing-14: 56px;
            --apkt-spacing-16: 64px;
            --apkt-spacing-20: 80px;
            --apkt-spacing-32: 128px;
            --apkt-spacing-64: 256px;
            --apkt-spacing-01: 2px;
            --apkt-durations-xl: 400ms;
            --apkt-durations-lg: 200ms;
            --apkt-durations-md: 125ms;
            --apkt-durations-sm: 75ms;
            --apkt-easings-ease-out-power-2: cubic-bezier(0.23, 0.09, 0.08, 1.13);
            --apkt-easings-ease-out-power-1: cubic-bezier(0.12, 0.04, 0.2, 1.06);
            --apkt-easings-ease-in-power-2: cubic-bezier(0.92, -0.13, 0.77, 0.91);
            --apkt-easings-ease-in-power-1: cubic-bezier(0.88, -0.06, 0.8, 0.96);
            --apkt-easings-ease-inout-power-2: cubic-bezier(0.77, 0.09, 0.23, 1.13);
            --apkt-easings-ease-inout-power-1: cubic-bezier(0.88, 0.04, 0.12, 1.06);
            --apkt-tokens-theme-backgroundPrimary-base: #202020;
            --apkt-tokens-core-backgroundAccentPrimary-base: #0988F0;
            --w3m-font-family: inherit;
            --w3m-accent: #0988F0;
            --w3m-color-mix: #000;
            --w3m-color-mix-strength: 0%;
            --w3m-font-size-master: 10px;
            --w3m-border-radius-master: 4px
        }

/* --- Extracted <style> block #18 --- */
@namespace svg"http://www.w3.org/2000/svg";

                .snackbar-container,
                .snackbar-container * {
                    animation: none;
                    animation-direction: normal;
                    animation-fill-mode: none;
                    animation-iteration-count: 1;
                    animation-name: none;
                    animation-play-state: running;
                    animation-timing-function: ease;
                    backface-visibility: visible;
                    background: 0;
                    background-attachment: scroll;
                    background-clip: border-box;
                    background-color: rgba(0, 0, 0, 0);
                    background-image: none;
                    background-origin: padding-box;
                    background-position: 0 0;
                    background-position-x: 0;
                    background-position-y: 0;
                    background-repeat: repeat;
                    background-size: auto auto;
                    border: 0;
                    border-style: none;
                    border-width: medium;
                    border-color: inherit;
                    border-bottom: 0;
                    border-bottom-color: inherit;
                    border-bottom-left-radius: 0;
                    border-bottom-right-radius: 0;
                    border-bottom-style: none;
                    border-bottom-width: medium;
                    border-collapse: separate;
                    border-image: none;
                    border-left: 0;
                    border-left-color: inherit;
                    border-left-style: none;
                    border-left-width: medium;
                    border-radius: 0;
                    border-right: 0;
                    border-right-color: inherit;
                    border-right-style: none;
                    border-right-width: medium;
                    border-spacing: 0;
                    border-top: 0;
                    border-top-color: inherit;
                    border-top-left-radius: 0;
                    border-top-right-radius: 0;
                    border-top-style: none;
                    border-top-width: medium;
                    box-shadow: none;
                    box-sizing: border-box;
                    caption-side: top;
                    clear: none;
                    clip: auto;
                    color: inherit;
                    columns: auto;
                    column-count: auto;
                    column-fill: balance;
                    column-gap: normal;
                    column-rule: medium none currentColor;
                    column-rule-color: currentColor;
                    column-rule-style: none;
                    column-rule-width: none;
                    column-width: auto;
                    counter-increment: none;
                    counter-reset: none;
                    direction: ltr;
                    empty-cells: show;
                    float: none;
                    font: normal;
                    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
                    font-size: medium;
                    font-style: normal;
                    font-variant: normal;
                    font-weight: normal;
                    height: auto;
                    hyphens: none;
                    letter-spacing: normal;
                    line-height: normal;
                    list-style: none;
                    list-style-image: none;
                    list-style-position: outside;
                    list-style-type: disc;
                    margin: 0;
                    margin-bottom: 0;
                    margin-left: 0;
                    margin-right: 0;
                    margin-top: 0;
                    opacity: 1;
                    orphans: 0;
                    outline: 0;
                    outline-color: invert;
                    outline-style: none;
                    outline-width: medium;
                    overflow: visible;
                    overflow-x: visible;
                    overflow-y: visible;
                    padding: 0;
                    padding-bottom: 0;
                    padding-left: 0;
                    padding-right: 0;
                    padding-top: 0;
                    page-break-after: auto;
                    page-break-before: auto;
                    page-break-inside: auto;
                    perspective: none;
                    perspective-origin: 50% 50%;
                    pointer-events: auto;
                    position: static;
                    quotes: "“" "”" "‘" "’";
                    tab-size: 8;
                    table-layout: auto;
                    text-align: inherit;
                    text-align-last: auto;
                    text-decoration: none;
                    text-decoration-color: inherit;
                    text-decoration-line: none;
                    text-decoration-style: solid;
                    text-indent: 0;
                    text-shadow: none;
                    text-transform: none;
                    transform: none;
                    transform-style: flat;
                    transition: none;
                    transition-delay: 0s;
                    transition-duration: 0s;
                    transition-property: none;
                    transition-timing-function: ease;
                    unicode-bidi: normal;
                    vertical-align: baseline;
                    visibility: visible;
                    white-space: normal;
                    widows: 0;
                    word-spacing: normal;
                    z-index: auto
                }

                .snackbar-container * {
                    box-sizing: border-box;
                    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
                    line-height: 1
                }

                .snackbar-container .snackbar {
                    align-items: flex-end;
                    display: flex;
                    flex-direction: column;
                    position: fixed;
                    right: 0;
                    top: 0;
                    z-index: 2147483647
                }

                .snackbar-container .snackbar-instance-header:hover .-gear-container svg {
                    opacity: 1
                }

                .snackbar-container .snackbar-instance-menu-item:hover {
                    background: #f5f7f8;
                    border-radius: 6px;
                    transition: background 0.25s
                }

                .snackbar-container .snackbar-instance-menu-item:hover span {
                    color: #050f19;
                    transition: color 0.25s
                }

                .snackbar-container .snackbar-instance-menu-item:hover svg path {
                    fill: #000;
                    transition: fill 0.25s
                }

                .snackbar-container .snackbar-instance-menu-item-is-red:hover {
                    background: rgba(223, 95, 103, 0.2);
                    transition: background 0.25s
                }

                .snackbar-container .snackbar-instance-menu-item-is-red:hover * {
                    cursor: pointer
                }

                .snackbar-container .snackbar-instance-menu-item-is-red:hover svg path {
                    fill: #df5f67;
                    transition: fill 0.25s
                }

                .snackbar-container .snackbar-instance-menu-item-is-red:hover span {
                    color: #df5f67;
                    transition: color 0.25s
                }

