File size: 2,394 Bytes
44a45a4
bfc0e5a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44a45a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<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>