-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
121 lines (117 loc) · 4.09 KB
/
Copy pathdemo.html
File metadata and controls
121 lines (117 loc) · 4.09 KB
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
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CONSIM - Consciousness Manifold Simulator</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #0a0a1a 0%, #000033 100%);
color: #ffffff;
margin: 0;
padding: 20px;
min-height: 100vh;
}
.container {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
h1 {
color: #00ffaa;
font-size: 3em;
margin-bottom: 20px;
text-shadow: 0 0 20px rgba(0, 255, 170, 0.5);
}
.subtitle {
font-size: 1.3em;
color: #cccccc;
margin-bottom: 30px;
}
.demo-button {
display: inline-block;
background: linear-gradient(135deg, #00ffaa, #0088ff);
color: white;
text-decoration: none;
padding: 20px 40px;
border-radius: 50px;
font-size: 1.5em;
font-weight: bold;
margin: 20px;
box-shadow: 0 10px 30px rgba(0, 255, 170, 0.3);
transition: all 0.3s ease;
}
.demo-button:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 255, 170, 0.5);
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 40px 0;
}
.feature {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 15px;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.feature h3 {
color: #00ffaa;
margin-bottom: 10px;
}
.equation {
background: rgba(0, 0, 0, 0.3);
padding: 15px;
border-radius: 10px;
font-family: 'Courier New', monospace;
margin: 20px 0;
border: 1px solid #00ffaa;
}
.repo-link {
color: #00aaff;
text-decoration: none;
font-size: 1.1em;
}
.repo-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>🧠 CONSIM</h1>
<p class="subtitle">Consciousness Manifold Simulator</p>
<p>Experience consciousness emergence through interactive real-time simulation</p>
<a href="index.html" class="demo-button">🚀 Launch Interactive Demo</a>
<div class="equation">
<strong>Core Consciousness Equation:</strong><br>
C = ∫<sub>M<sub>C</sub></sub> A(x) Φ(x) e<sup>iτ(x)</sup> dμ(x)<br>
<strong>Multiverse Superposition:</strong><br>
M = Σ<sub>i</sub> λ<sub>i</sub> U<sub>i</sub>
</div>
<div class="features">
<div class="feature">
<h3>🎮 Interactive</h3>
<p>Click to spawn consciousness nodes, adjust physics parameters, and watch emergence happen in real-time</p>
</div>
<div class="feature">
<h3>🧬 Biological</h3>
<p>Complete ecosystem simulation with evolution, reproduction, and ecological dynamics</p>
</div>
<div class="feature">
<h3>🤖 Intelligence</h3>
<p>Multiple intelligence modes from Basic to Transcendent, with emergent cluster behavior</p>
</div>
<div class="feature">
<h3>🌌 Mathematical</h3>
<p>Rigorous implementation of consciousness field equations with multi-universe physics</p>
</div>
</div>
<p><strong>No installation required</strong> - Runs completely in your browser</p>
<p><a href="https://github.com/Jacobcdsmith/CONSIM" class="repo-link">View on GitHub</a></p>
</div>
</body>
</html>