Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <title>Neural Playground</title> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| font-family: "Segoe UI", sans-serif; | |
| } | |
| body { | |
| height: 100vh; | |
| background: radial-gradient(circle at 20% 20%, #1a1a2e, #0f0f1a 60%); | |
| color: #fff; | |
| overflow: hidden; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .background-grid { | |
| position: absolute; | |
| width: 200%; | |
| height: 200%; | |
| background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); | |
| background-size: 40px 40px; | |
| animation: moveGrid 20s linear infinite; | |
| } | |
| @keyframes moveGrid { | |
| from { transform: translate(0, 0); } | |
| to { transform: translate(-40px, -40px); } | |
| } | |
| .card { | |
| position: relative; | |
| background: rgba(255,255,255,0.05); | |
| backdrop-filter: blur(15px); | |
| padding: 40px; | |
| border-radius: 20px; | |
| width: 400px; | |
| text-align: center; | |
| box-shadow: 0 0 40px rgba(0,255,255,0.2); | |
| transition: 0.3s ease; | |
| } | |
| .card:hover { | |
| transform: scale(1.03); | |
| box-shadow: 0 0 60px rgba(0,255,255,0.4); | |
| } | |
| h1 { | |
| margin-bottom: 15px; | |
| font-size: 26px; | |
| } | |
| p { | |
| opacity: 0.8; | |
| margin-bottom: 20px; | |
| } | |
| button { | |
| background: linear-gradient(45deg, #00f5ff, #7b2ff7); | |
| border: none; | |
| padding: 10px 20px; | |
| border-radius: 25px; | |
| color: #fff; | |
| cursor: pointer; | |
| font-size: 14px; | |
| transition: 0.3s; | |
| } | |
| button:hover { | |
| opacity: 0.8; | |
| } | |
| #message { | |
| margin-top: 15px; | |
| font-size: 14px; | |
| opacity: 0.9; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="background-grid"></div> | |
| <div class="card"> | |
| <h1>Neural Playground</h1> | |
| <p>This is not just a static Space. | |
| This is your experimental AI lab.</p> | |
| <button onclick="generateThought()">Generate Random Thought</button> | |
| <div id="message"></div> | |
| </div> | |
| <script> | |
| const thoughts = [ | |
| "Your GPU is judging your prompt engineering.", | |
| "Somewhere, a neural net is overfitting.", | |
| "The model understood you. That is concerning.", | |
| "Entropy is just creativity without supervision.", | |
| "Silicon dreams in matrix form." | |
| ]; | |
| function generateThought() { | |
| const random = thoughts[Math.floor(Math.random() * thoughts.length)]; | |
| document.getElementById("message").innerText = random; | |
| } | |
| </script> | |
| </body> | |
| </html> | |