"<!DOCTYPE html>\n<html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:fb=\"http://ogp.me/ns/fb#\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <link rel=\"icon\" href=\"https://www.figmin.com/favicon.ico\" type=\"image/x-icon\">\n  <title>Figmin</title>\n\n  <style type=\"text/css\">\n    header {\n      background: #0b61a6;\n      text-align: center;\n      color: white;\n      position: fixed;\n      width: 100%;\n      z-index: 1;\n      top: 0\n    }\n    .navigation {\n      display: flex;\n      justify-content: space-between;\n      height: 48px;\n      position: relative\n    }\n    .navigation>* {\n      height: 100%;\n      min-width: 45px\n    }\n\n    .navigation>strong {\n      position: absolute;\n      width: 100%;\n      text-align: center;\n      top: 14px;\n      pointer-events: none\n    }\n\n    .navigation>span {\n      margin-top: 16px;\n      flex-grow: 10;\n      height: auto\n    }\n\n    @keyframes move_wave {\n      0% {\n          transform: translateX(0) translateZ(0) scaleY(1)\n      }\n      50% {\n          transform: translateX(-25%) translateZ(0) scaleY(0.55)\n      }\n      100% {\n          transform: translateX(-50%) translateZ(0) scaleY(1)\n      }\n    }\n    .waveWrapper {\n        overflow: hidden;\n        position: absolute;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        top: 0;\n        margin: auto;\n        z-index: -1;\n    }\n    .waveWrapperInner {\n        position: absolute;\n        width: 300%;\n        overflow: hidden;\n        height: 100%;\n        bottom: -1px;\n        background-image: linear-gradient(to top, rgb(23,31, 89) 20%, rgb(26,53,108) 80%);\n    }\n    .bgTop {\n        z-index: 15;\n        opacity: 0.5;\n    }\n    .bgMiddle {\n        z-index: 10;\n        opacity: 0.75;\n    }\n    .bgBottom {\n        z-index: 5;\n    }\n    .wave {\n        position: absolute;\n        left: 0;\n        width: 200%;\n        height: 100%;\n        background-repeat: repeat no-repeat;\n        background-position: 0 bottom;\n        transform-origin: center bottom;\n        background-size: contain;\n    }\n    .waveTop {\n      background-size: 50% 100px;\n      background-image: url('https://www.figmin.com/wave-top.png');\n    }\n    .waveAnimation .waveTop {\n      animation: move-wave 3s;\n      -webkit-animation: move-wave 3s;\n      -webkit-animation-delay: 1s;\n      animation-delay: 1s;\n    }\n    .waveMiddle {\n        background-size: 50% 120px;\n        background-image: url('https://www.figmin.com/wave-mid.png');\n    }\n    .waveAnimation .waveMiddle {\n        animation: move_wave 10s linear infinite;\n    }\n    .waveBottom {\n        background-size: 50% 100px;\n        background-image: url('https://www.figmin.com/wave-bot.png');\n    }\n    .waveAnimation .waveBottom {\n        animation: move_wave 15s linear infinite;\n    }\n    footer {\n      height: auto;\n      margin: 0 -15px;\n      z-index: 1;\n      color: #1a1818;\n      text-align: center;\n      padding: 10px;\n      font-weight: bold\n    }\n    @font-face {\n      font-family: \"Zekton\";\n      src: url(https://www.figmin.com/zekton-free.ttf?164efd3396409b61ba965482f4fa013e)\n    }\n\n    html {\n      height: 100%;\n      overflow: hidden;\n      margin-right: calc(100% - 100vw)\n    }\n\n    body {\n      overflow-x: hidden;\n      overflow-y: hidden;\n      margin: 0;\n      font-family: 'Zekton';\n      height: 100%\n    }\n\n    section {\n      width: 100%;\n      flex-grow: 2;\n      color: #fff;\n      text-align: center;\n      display: flex;\n      margin-top: 50px;\n      overflow-y: auto\n    }\n\n    section>* {\n      align-items: center\n    }\n\n    .flex {\n      display: flex;\n      flex-direction: column;\n      height: 100%\n    }\n\n    .container-fluid {\n      height: 100%;\n      padding: 0\n    }\n\n    section > .container {\n      width: 100%;\n    }\n    h3, h5 {\n      margin-bottom: .5rem;\n      font-weight: 500;\n      line-height: 1.2;\n    }\n    h3 {\n      font-size: 1.75rem;\n      margin-top: 10px;\n      margin-bottom: 5px;\n    }\n    h5 {\n      font-size: 1.25rem;\n      margin-top: 0;\n    }\n  </style>\n</head>\n\n<body>\n  <div class=\"container-fluid\">\n    <div class=\"flex\">\n      <header>\n        <div class=\"navigation navigation--unauth\">\n          <strong>Figmin</strong>\n        </div>\n      </header>\n      <section>\n        <div class=\"container\" style=\"margin-top: 100px\">\n          <div class=\"page\">\n            <h3>400</h3>\n            <h5>Bad request</h5>\n          </div>\n        </div>\n      </section>\n      <footer>\n        <div class=\"row\">\n          <div class=\"col-12\">\n            © 2026, Overlay All Rights Reserved\n          </div>\n        </div>\n      </footer>\n    </div>\n    <div class=\"waveWrapper waveAnimation\">\n      <div class=\"waveWrapperInner bgTop\">\n        <div class=\"wave waveTop\"></div>\n      </div>\n      <div class=\"waveWrapperInner bgMiddle\">\n        <div class=\"wave waveMiddle\"></div>\n      </div>\n      <div class=\"waveWrapperInner bgBottom\">\n        <div class=\"wave waveBottom\"></div>\n      </div>\n    </div>\n  </div>\n</body>\n</html>"