

{"id":2,"date":"2025-05-23T02:40:08","date_gmt":"2025-05-23T02:40:08","guid":{"rendered":"https:\/\/solterminal.org\/?page_id=2"},"modified":"2025-05-23T06:57:37","modified_gmt":"2025-05-23T06:57:37","slug":"sol-terminal","status":"publish","type":"page","link":"https:\/\/solterminal.org\/","title":{"rendered":"Sol Terminal"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2\" class=\"elementor elementor-2\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ae40b31 e-flex e-con-boxed e-con e-parent\" data-id=\"ae40b31\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ec02691 elementor-widget elementor-widget-html\" data-id=\"ec02691\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Neon Grid Background<\/title>\n  <style>\n    * {\n      box-sizing: border-box;\n    }\n    \n    \/* Background container *\/\n    .neon-grid-background {\n      position: fixed;\n      top: 0;\n      left: 0;\n      width: 100%;\n      height: 100%;\n      background: black;\n      overflow: hidden;\n      z-index: -1;\n    }\n    \n    .scene {\n      width: 100%;\n      height: 100%;\n      background: radial-gradient(circle at center, #0a0014 0%, #000000 100%);\n      position: relative;\n      perspective: 1000px;\n      overflow: hidden;\n    }\n    \n    \/* Floor grid *\/\n    .floor {\n      position: absolute;\n      bottom: -50%;\n      left: -50%;\n      width: 200%;\n      height: 150%;\n      transform: rotateX(75deg) translateZ(-100px);\n      transform-origin: center center;\n      background-image:\n        linear-gradient(rgba(255, 0, 200, 0.4) 1px, transparent 1px),\n        linear-gradient(90deg, rgba(255, 0, 200, 0.4) 1px, transparent 1px);\n      background-size: 60px 60px;\n      animation: moveGrid 2s linear infinite;\n      opacity: 0.6;\n      z-index: 1;\n    }\n    \n    \/* Side walls *\/\n    .wall-left, .wall-right {\n      position: absolute;\n      top: -50%;\n      height: 200%;\n      width: 50%;\n      background-image:\n        linear-gradient(rgba(255, 0, 200, 0.3) 1px, transparent 1px),\n        linear-gradient(90deg, rgba(255, 0, 200, 0.3) 1px, transparent 1px);\n      background-size: 50px 50px;\n      opacity: 0.3;\n      animation: wallShift 10s linear infinite;\n      z-index: 1;\n    }\n    \n    .wall-left {\n      left: -25%;\n      transform: rotateY(45deg);\n      transform-origin: right center;\n    }\n    \n    .wall-right {\n      right: -25%;\n      transform: rotateY(-45deg);\n      transform-origin: left center;\n    }\n    \n    \/* Back wall *\/\n    .wall-back {\n      position: absolute;\n      top: 0;\n      left: 0;\n      width: 100%;\n      height: 100%;\n      background-image:\n        linear-gradient(rgba(255, 0, 200, 0.2) 1px, transparent 1px),\n        linear-gradient(90deg, rgba(255, 0, 200, 0.2) 1px, transparent 1px);\n      background-size: 50px 50px;\n      opacity: 0.2;\n      z-index: 0;\n    }\n    \n    @keyframes moveGrid {\n      0% { background-position: 0 0; }\n      100% { background-position: 0 60px; }\n    }\n    \n    @keyframes wallShift {\n      0% { background-position: 0 0; }\n      100% { background-position: 50px 50px; }\n    }\n    \n    \/* Pink fog effect *\/\n    .fog {\n      position: absolute;\n      bottom: 0;\n      left: 0;\n      width: 100%;\n      height: 60%;\n      background: radial-gradient(ellipse at center bottom, \n        rgba(255, 0, 200, 0.2) 0%, \n        transparent 70%);\n      z-index: 5;\n      pointer-events: none;\n    }\n    \n    \/* Vignette for depth *\/\n    .vignette {\n      position: absolute;\n      top: 0;\n      left: 0;\n      width: 100%;\n      height: 100%;\n      background: radial-gradient(ellipse at center, \n        transparent 0%, \n        rgba(0, 0, 0, 0.6) 100%);\n      z-index: 20;\n      pointer-events: none;\n    }\n    \n    \/* Floating particles *\/\n    .particles {\n      position: absolute;\n      width: 100%;\n      height: 100%;\n      z-index: 8;\n      pointer-events: none;\n    }\n    \n    .particle {\n      position: absolute;\n      width: 4px;\n      height: 4px;\n      background: #ff00c8;\n      border-radius: 50%;\n      opacity: 0.6;\n      animation: particleFloat 10s linear infinite;\n    }\n    \n    @keyframes particleFloat {\n      0% {\n        transform: translateY(100vh);\n        opacity: 0;\n      }\n      10% {\n        opacity: 0.6;\n      }\n      90% {\n        opacity: 0.6;\n      }\n      100% {\n        transform: translateY(-100vh);\n        opacity: 0;\n      }\n    }\n    \n    \/* Globe container *\/\n    .globe-container {\n      position: absolute;\n      top: 50%;\n      left: 50%;\n      transform: translate(-50%, -50%);\n      width: min(320px, 80vw);\n      height: min(320px, 80vw);\n      max-width: 320px;\n      max-height: 320px;\n      z-index: 10;\n      display: flex;\n      align-items: center;\n      justify-content: center;\n    }\n    \n    .globe-container img {\n      width: 100%;\n      height: 100%;\n      object-fit: contain;\n      animation: glow 2s ease-in-out infinite alternate, float 4s ease-in-out infinite;\n    }\n    \n    @keyframes glow {\n      from { \n        filter: drop-shadow(0 0 20px #ff00c8) drop-shadow(0 0 40px #ff00c8);\n        transform: scale(1);\n      }\n      to { \n        filter: drop-shadow(0 0 40px #ff00c8) drop-shadow(0 0 80px #ff00c8);\n        transform: scale(1.05);\n      }\n    }\n    \n    @keyframes float {\n      0%, 100% { transform: translateY(0); }\n      50% { transform: translateY(-20px); }\n    }\n    \n    \/* Center glow where content will be *\/\n    .content-glow {\n      position: absolute;\n      top: 50%;\n      left: 50%;\n      transform: translate(-50%, -50%);\n      width: 600px;\n      height: 600px;\n      background: radial-gradient(circle, \n        rgba(255, 0, 200, 0.2) 0%, \n        transparent 50%);\n      z-index: 10;\n      pointer-events: none;\n      animation: pulseGlow 4s ease-in-out infinite;\n    }\n    \n    @keyframes pulseGlow {\n      0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }\n      50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }\n    }\n    \n    \/* Mobile responsiveness *\/\n    @media (max-width: 768px) {\n      .floor {\n        background-size: 40px 40px;\n      }\n      \n      .wall-left, .wall-right, .wall-back {\n        background-size: 30px 30px;\n      }\n      \n      .content-glow {\n        width: 90vw;\n        height: 90vw;\n      }\n    }\n  <\/style>\n<\/head>\n<body>\n  <!-- Background only - no content or shortcodes -->\n  <div class=\"neon-grid-background\">\n    <div class=\"scene\">\n      <div class=\"wall-back\"><\/div>\n      <div class=\"wall-left\"><\/div>\n      <div class=\"wall-right\"><\/div>\n      <div class=\"floor\"><\/div>\n      <div class=\"fog\"><\/div>\n      <div class=\"particles\" id=\"particles\"><\/div>\n      <div class=\"globe-container\">\n        <img decoding=\"async\" src=\"https:\/\/solterminal.org\/wp-content\/uploads\/2025\/05\/Gradient-Neon-Sphere-scaled.png\" alt=\"Neon Sphere\" \/>\n      <\/div>\n      <div class=\"content-glow\"><\/div>\n      <div class=\"vignette\"><\/div>\n    <\/div>\n  <\/div>\n\n  <script>\n    \/\/ Create floating particles\n    function createParticles() {\n      const container = document.getElementById('particles');\n      \n      for (let i = 0; i < 20; i++) {\n        const particle = document.createElement('div');\n        particle.className = 'particle';\n        particle.style.left = Math.random() * 100 + '%';\n        particle.style.animationDelay = Math.random() * 10 + 's';\n        particle.style.animationDuration = (10 + Math.random() * 10) + 's';\n        container.appendChild(particle);\n      }\n    }\n    \n    createParticles();\n  <\/script>\n<\/body>\n<\/html>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba34307 elementor-widget elementor-widget-gfx_zeus_gpt_elementor_widget\" data-id=\"ba34307\" data-element_type=\"widget\" data-widget_type=\"gfx_zeus_gpt_elementor_widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t \r\n\t\t<div class=\"gfx-zeus-chat-container\">\r\n\t\t\t<div class=\"gfx-zeus-chat\">\r\n\t\t\t\t<div class=\"gfx-zeus-chat-empty\">\r\n\t\t\t\t\t<div class=\"icon\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><path d=\"M447.1 0h-384c-35.25 0-64 28.75-64 63.1v287.1c0 35.25 28.75 63.1 64 63.1h96v83.1c0 9.838 11.03 15.55 19.12 9.7l124.9-93.7h144c35.25 0 64-28.75 64-63.1V63.1C511.1 28.75 483.2 0 447.1 0zM480 352c0 17.6-14.4 32-32 32h-144.1c-6.928 0-13.67 2.248-19.21 6.406L192 460v-60c0-8.838-7.164-16-16-16H64c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h384c17.6 0 32 14.4 32 32V352zM128 184c-13.25 0-24 10.74-24 24c0 13.25 10.75 24 24 24S152 221.3 152 208C152 194.7 141.3 184 128 184zM384 184c-13.25 0-24 10.74-24 24c0 13.25 10.75 24 24 24s24-10.75 24-24C408 194.7 397.3 184 384 184zM256 184c-13.25 0-24 10.74-24 24c0 13.25 10.75 24 24 24s24-10.75 24-24C280 194.7 269.3 184 256 184z\"\/><\/svg>\r\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\r\n\r\n\t\t\t\t\t<p class=\"message\">\r\n\t\t\t\t\t\tStart chatting with your favorite AI.\t\t\t\t\t<\/p>\r\n\t\t\t\t<\/div>\r\n\t\t\t\t<div class=\"gfx-zeus-chat-conversation\">\r\n\t\t\t\t<\/div>\r\n\t\t\t\t<form class=\"gfx-zeus-chat-form \">\r\n\r\n\t\t\t\t\t<!-- cta button - start -->\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t<!-- cta button - end -->\r\n\r\n\r\n\r\n\t\t\t\t\t<div \r\n\t\t\t\t\tclass=\"gfx-zeus-chat-prompt\" \r\n\t\t\t\t\tautocomplete=\"off\" \r\n\t\t\t\t\tautocorrect=\"off\" \r\n\t\t\t\t\tspellcheck=\"true\" \r\n\t\t\t\t\taria-expanded=\"false\" \r\n\t\t\t\t\taria-autocomplete=\"list\" \r\n\t\t\t\t\taria-multiline=\"true\" \r\n\t\t\t\t\taria-label=\"Message\" \r\n\t\t\t\t\tdir=\"auto\" \r\n\t\t\t\t\tcontenteditable=\"true\" \r\n\t\t\t\t\trole=\"textbox\"\r\n\t\t\t\t\tplaceholder=\"Type a message.\"\r\n\t\t\t\t\t><\/div>\r\n\t\t\t\t\t\r\n\r\n\r\n\t\t\t\t\t<input type=\"hidden\" name=\"chat-behaviour\" value=\"\">\r\n\t\t\t\t\t<button class=\"submit hover-btn-1\" type=\"submit\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M264.6 70.63l176 168c4.75 4.531 7.438 10.81 7.438 17.38s-2.688 12.84-7.438 17.38l-176 168c-9.594 9.125-24.78 8.781-33.94-.8125c-9.156-9.5-8.812-24.75 .8125-33.94l132.7-126.6H24.01c-13.25 0-24.01-10.76-24.01-24.01s10.76-23.99 24.01-23.99h340.1l-132.7-126.6C221.8 96.23 221.5 80.98 230.6 71.45C239.8 61.85 254.1 61.51 264.6 70.63z\"\/><\/svg>\r\n\t\t\t\t\t\t\t\t\t\t\t<\/button>\r\n\t\t\t\t<\/form>\r\n\t\t\t<\/div>  \r\n\t\t<\/div>\r\n\t\t  \r\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Neon Grid Background Start chatting with your favorite AI.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_canvas","meta":{"footnotes":""},"class_list":["post-2","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/solterminal.org\/index.php\/wp-json\/wp\/v2\/pages\/2","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/solterminal.org\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/solterminal.org\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/solterminal.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/solterminal.org\/index.php\/wp-json\/wp\/v2\/comments?post=2"}],"version-history":[{"count":137,"href":"https:\/\/solterminal.org\/index.php\/wp-json\/wp\/v2\/pages\/2\/revisions"}],"predecessor-version":[{"id":171,"href":"https:\/\/solterminal.org\/index.php\/wp-json\/wp\/v2\/pages\/2\/revisions\/171"}],"wp:attachment":[{"href":"https:\/\/solterminal.org\/index.php\/wp-json\/wp\/v2\/media?parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}