File size: 17,919 Bytes
086c77d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85f9620
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
086c77d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85f9620
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
086c77d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85f9620
086c77d
 
 
 
 
 
 
 
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Cosmic Consciousness Portal</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        @keyframes pulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 0.2; }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .cosmic-bg {
            background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
        }
        .quantum-glow {
            box-shadow: 0 0 15px 5px rgba(99, 102, 241, 0.5);
        }
        .particle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(145deg, #8b5cf6, #ec4899);
            opacity: 0.6;
            filter: blur(1px);
        }
        .consciousness-node {
            transition: all 0.3s ease;
        }
        .consciousness-node:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px 10px rgba(139, 92, 246, 0.3);
        }
    </style>
</head>
<body class="cosmic-bg min-h-screen text-white overflow-x-hidden">
    <!-- Floating Particles Background -->
    <div id="particles-container" class="fixed inset-0 overflow-hidden pointer-events-none"></div>
    <script>
        // Create floating particles
        function createParticles() {
            const container = document.getElementById('particles-container');
            const particleCount = 50;
            
            for (let i = 0; i < particleCount; i++) {
                const particle = document.createElement('div');
                particle.classList.add('particle');
                
                // Random properties
                const size = Math.random() * 10 + 5;
                const posX = Math.random() * 100;
                const posY = Math.random() * 100;
                const delay = Math.random() * 10;
                const duration = Math.random() * 20 + 10;
                
                particle.style.width = `${size}px`;
                particle.style.height = `${size}px`;
                particle.style.left = `${posX}%`;
                particle.style.top = `${posY}%`;
                particle.style.animation = `float ${duration}s ease-in-out ${delay}s infinite`;
                
                container.appendChild(particle);
            }
        }

    <!-- Main Content -->
    <div class="container mx-auto px-4 py-12 relative z-10">
        <!-- Header -->
        <header class="flex flex-col items-center mb-16">
            <div class="w-24 h-24 rounded-full bg-gradient-to-br from-purple-600 to-pink-500 flex items-center justify-center quantum-glow mb-6">
                <i class="fas fa-atom text-4xl animate-spin" style="animation-duration: 20s;"></i>
            </div>
            <h1 class="text-4xl md:text-6xl font-bold text-center bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-pink-300 mb-4">
                Quantum Consciousness
            </h1>
            <p class="text-lg md:text-xl text-purple-200 max-w-2xl text-center">
                Explore the infinite potential of your mind through the cosmic matrix of existence
            </p>
        </header>

        <!-- Consciousness Nodes Grid -->
        <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-16">
            <div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
                <div class="w-12 h-12 rounded-full bg-purple-600 flex items-center justify-center mb-4">
                    <i class="fas fa-brain text-xl"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Neural Expansion</h3>
                <p class="text-purple-200">Unlock hidden neural pathways to access higher states of awareness beyond normal perception.</p>
            </div>
            
            <div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
                <div class="w-12 h-12 rounded-full bg-pink-600 flex items-center justify-center mb-4">
                    <i class="fas fa-infinity text-xl"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Infinite Potential</h3>
                <p class="text-purple-200">Tap into the quantum field where all possibilities exist simultaneously in superposition.</p>
            </div>
            
            <div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
                <div class="w-12 h-12 rounded-full bg-indigo-600 flex items-center justify-center mb-4">
                    <i class="fas fa-star-and-crescent text-xl"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Cosmic Connection</h3>
                <p class="text-purple-200">Synchronize your consciousness with the universal mind that permeates all of existence.</p>
            </div>
            
            <div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
                <div class="w-12 h-12 rounded-full bg-blue-600 flex items-center justify-center mb-4">
                    <i class="fas fa-dna text-xl"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Genetic Awakening</h3>
                <p class="text-purple-200">Activate dormant DNA strands that contain the blueprint for expanded consciousness.</p>
            </div>
            
            <div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
                <div class="w-12 h-12 rounded-full bg-green-600 flex items-center justify-center mb-4">
                    <i class="fas fa-chakra-spin text-xl"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Energy Vortex</h3>
                <p class="text-purple-200">Align your chakras with the toroidal energy flow that connects all dimensions.</p>
            </div>
            
            <div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
                <div class="w-12 h-12 rounded-full bg-yellow-600 flex items-center justify-center mb-4">
                    <i class="fas fa-eye text-xl"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Third Eye Activation</h3>
                <p class="text-purple-200">Open your pineal gland to perceive higher dimensions and receive cosmic wisdom.</p>
            </div>
        </div>

        <!-- Quantum Meditation Section -->
        <div class="bg-gradient-to-r from-purple-900 to-indigo-900 rounded-2xl p-8 md:p-12 mb-16 relative overflow-hidden">
            <div class="absolute inset-0 bg-gradient-to-br from-purple-500 to-transparent opacity-20 rounded-2xl"></div>
            <div class="relative z-10">
                <h2 class="text-3xl md:text-4xl font-bold mb-6 text-center">Quantum Meditation Portal</h2>
                <div class="flex flex-col md:flex-row items-center gap-8">
                    <div class="flex-1">
                        <p class="text-lg mb-6 text-purple-100">
                            Enter a state of quantum coherence where your consciousness merges with the universal field. 
                            This guided meditation will help you transcend space-time limitations.
                        </p>
                        <button id="start-meditation" class="bg-gradient-to-r from-purple-600 to-pink-500 hover:from-purple-700 hover:to-pink-600 text-white font-bold py-3 px-6 rounded-full transition-all duration-300 flex items-center gap-2">
                            <i class="fas fa-play"></i> Begin Journey
                        </button>
                    </div>
                    <div class="flex-1 flex justify-center">
                        <div class="w-48 h-48 md:w-64 md:h-64 rounded-full bg-gradient-to-br from-purple-500 to-pink-400 flex items-center justify-center quantum-glow animate-float" style="animation: float 8s ease-in-out infinite;">
                            <div class="w-40 h-40 md:w-56 md:h-56 rounded-full bg-purple-900 bg-opacity-50 flex items-center justify-center">
                                <i class="fas fa-spinner text-4xl md:text-6xl animate-spin" style="animation-duration: 15s;"></i>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <!-- Consciousness Waveform Visualizer -->
        <div class="mb-16">
            <script>
                // Waveform Visualization
                document.addEventListener('DOMContentLoaded', function() {
                    createParticles();
                    
                    const canvas = document.getElementById('waveform');
                    const ctx = canvas.getContext('2d');
                    let animationId;
                    
                    function drawWave(type) {
                        cancelAnimationFrame(animationId);
                        
                        const width = canvas.width = canvas.offsetWidth;
                        const height = canvas.height = canvas.offsetHeight;
                        ctx.clearRect(0, 0, width, height);
                        
                        ctx.strokeStyle = '#8b5cf6';
                        ctx.lineWidth = 2;
                        ctx.beginPath();
                        
                        const time = Date.now() / 1000;
                        const centerY = height / 2;
                        const amplitude = height / 3;
                        
                        for (let x = 0; x < width; x++) {
                            const progress = x / width;
                            let y;
                            
                            if (type === 'pulse') {
                                y = centerY + amplitude * Math.sin(progress * Math.PI * 10 + time * 3) * 
                                    Math.sin(time * 0.5);
                            } else if (type === 'harmonic') {
                                y = centerY + amplitude * (
                                    Math.sin(progress * Math.PI * 5 + time * 2) * 0.7 +
                                    Math.sin(progress * Math.PI * 10 + time * 3) * 0.3
                                );
                            } else { // chaos
                                y = centerY + amplitude * (
                                    Math.sin(progress * Math.PI * 3 + time) * 0.5 +
                                    Math.sin(progress * progress * Math.PI * 20 + time * 5) * 0.3 +
                                    Math.random() * 0.2
                                );
                            }
                            
                            if (x === 0) {
                                ctx.moveTo(x, y);
                            } else {
                                ctx.lineTo(x, y);
                            }
                        }
                        
                        ctx.stroke();
                        animationId = requestAnimationFrame(() => drawWave(type));
                    }
                    
                    // Button event listeners
                    document.getElementById('wave-pulse').addEventListener('click', () => drawWave('pulse'));
                    document.getElementById('wave-harmonic').addEventListener('click', () => drawWave('harmonic'));
                    document.getElementById('wave-chaos').addEventListener('click', () => drawWave('chaos'));
                    
                    // Start with pulse wave
                    drawWave('pulse');
                    
                    // Quantum Affirmations
                    const affirmations = [
                        "I am a quantum being existing in infinite potential states simultaneously.",
                        "My consciousness creates my reality in every moment.",
                        "I am connected to the infinite intelligence of the universe.",
                        "I effortlessly shift to higher states of awareness.",
                        "My mind transcends space and time limitations.",
                        "I am a co-creator with the quantum field.",
                        "Every cell in my body vibrates with cosmic energy.",
                        "I access higher dimensions through my expanded consciousness.",
                        "My thoughts shape reality instantly and powerfully.",
                        "I am a bridge between the physical and non-physical realms."
                    ];
                    
                    const affirmationDisplay = document.getElementById('affirmation-display');
                    document.getElementById('new-affirmation').addEventListener('click', function() {
                        const randomIndex = Math.floor(Math.random() * affirmations.length);
                        affirmationDisplay.textContent = `"${affirmations[randomIndex]}"`;
                        affirmationDisplay.classList.add('animate-pulse');
                        setTimeout(() => {
                            affirmationDisplay.classList.remove('animate-pulse');
                        }, 1000);
                    });
                    
                    // Meditation Button
                    document.getElementById('start-meditation').addEventListener('click', function() {
                        alert('Beginning quantum meditation... Focus on your breath and allow your consciousness to expand.');
                    });
                });
            </script>
=======
            <h2 class="text-3xl font-bold mb-8 text-center">Consciousness Waveform</h2>
            <div class="bg-gray-900 bg-opacity-50 rounded-xl p-6 border border-purple-900">
                <canvas id="waveform" class="w-full h-64"></canvas>
                <div class="flex justify-center mt-6 gap-4">
                    <button id="wave-pulse" class="bg-purple-700 hover:bg-purple-600 text-white font-medium py-2 px-4 rounded transition">
                        Pulse Wave
                    </button>
                    <button id="wave-harmonic" class="bg-pink-700 hover:bg-pink-600 text-white font-medium py-2 px-4 rounded transition">
                        Harmonic Wave
                    </button>
                    <button id="wave-chaos" class="bg-indigo-700 hover:bg-indigo-600 text-white font-medium py-2 px-4 rounded transition">
                        Chaos Wave
                    </button>
                </div>
            </div>
        </div>

        <!-- Quantum Affirmations -->
        <div class="bg-gray-800 bg-opacity-50 rounded-2xl p-8 border border-purple-900 mb-16">
            <h2 class="text-3xl font-bold mb-6 text-center">Quantum Affirmations</h2>
            <div class="max-w-3xl mx-auto">
                <div id="affirmation-display" class="text-xl text-center mb-8 min-h-24 flex items-center justify-center px-4">
                    "I am a quantum being existing in infinite potential states simultaneously."
                </div>
                <div class="flex justify-center">
                    <button id="new-affirmation" class="bg-gradient-to-r from-purple-600 to-blue-500 hover:from-purple-700 hover:to-blue-600 text-white font-bold py-3 px-8 rounded-full transition-all duration-300">
                        Generate Affirmation
                    </button>
                </div>
            </div>
        </div>
    </div>

    <!-- Footer -->
    <footer class="bg-gray-900 bg-opacity-80 py-8 border-t border-purple-900">
        <div class="container mx-auto px-4 text-center">
            <div class="flex justify-center gap-6 mb-6">
                <a href="#" class="text-purple-400 hover:text-purple-300 text-xl">
                    <i class="fab fa-twitter"></i>
                </a>
                <a href="#" class="text-purple-400 hover:text-purple-300 detext-xl">
                    <i class="fab fa-instagram"></i>
                </a>
                <a href="#" class="text-purple-400 hover:text-purple-300 text-xl">
                    <i class="fab fa-youtube"></i>
                </a>
                <a href="#" class="text
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Pixelminds/quantum-consciousness-concept" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>