File size: 29,856 Bytes
c16b086 | 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 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Omen - Spiritual Meaning Finder</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">
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Quicksand:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
mystic: {
50: '#f5f3ff',
100: '#ede9fe',
200: '#ddd6fe',
300: '#c4b5fd',
400: '#a78bfa',
500: '#8b5cf6',
600: '#7c3aed',
700: '#6d28d9',
800: '#5b21b6',
900: '#4c1d95',
},
midnight: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
twilight: {
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
300: '#cbd5e1',
400: '#94a3b8',
500: '#64748b',
600: '#475569',
700: '#334155',
800: '#1e293b',
900: '#0f172a',
}
},
fontFamily: {
serif: ['Cinzel', 'serif'],
sans: ['Quicksand', 'sans-serif']
}
}
}
}
</script>
<style>
body {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
min-height: 100vh;
color: #e2e8f0;
}
.mystic-bg {
background: radial-gradient(circle at top right, rgba(123, 31, 162, 0.2) 0%, rgba(30, 41, 59, 0.8) 50%);
}
.card-glow {
box-shadow: 0 0 20px rgba(123, 31, 162, 0.3);
}
.symbol-card {
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.symbol-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(123, 31, 162, 0.4);
}
.floating {
animation: float 6s ease-in-out infinite;
}
.floating-2 {
animation: float 8s ease-in-out infinite;
animation-delay: 1s;
}
.floating-3 {
animation: float 7s ease-in-out infinite;
animation-delay: 2s;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.constellation {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
overflow: hidden;
}
.star {
position: absolute;
background-color: white;
border-radius: 50%;
opacity: 0.6;
}
.mystic-input:focus {
box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.5);
}
.interpretation-card {
background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
backdrop-filter: blur(10px);
border: 1px solid rgba(124, 58, 237, 0.3);
}
.divider {
height: 1px;
background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
}
.tab-active {
border-bottom: 2px solid #8b5cf6;
color: #8b5cf6;
}
.fade-in {
animation: fadeIn 0.8s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body class="font-sans">
<!-- Constellation Background -->
<div class="constellation" id="constellation"></div>
<!-- Header -->
<header class="mystic-bg py-6 px-4 sm:px-8 border-b border-mystic-800">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<div class="flex items-center space-x-3">
<div class="bg-mystic-600 p-2 rounded-full">
<i class="fas fa-feather-alt text-xl text-mystic-200"></i>
</div>
<h1 class="text-2xl sm:text-3xl font-serif font-bold text-mystic-200">Omen</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="text-mystic-300 hover:text-mystic-100 transition">Meanings</a>
<a href="#" class="text-mystic-300 hover:text-mystic-100 transition">Symbols</a>
<a href="#" class="text-mystic-300 hover:text-mystic-100 transition">Community</a>
<a href="#" class="text-mystic-300 hover:text-mystic-100 transition">Journal</a>
</nav>
<div class="flex items-center space-x-4">
<button class="bg-mystic-700 hover:bg-mystic-600 text-mystic-100 px-4 py-2 rounded-lg transition">
<i class="fas fa-user mr-2"></i>Sign In
</button>
<button class="md:hidden text-mystic-300">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="py-12 px-4 sm:px-8 relative overflow-hidden">
<div class="max-w-4xl mx-auto text-center">
<div class="floating mx-auto w-24 h-24 rounded-full bg-mystic-800 flex items-center justify-center mb-6">
<i class="fas fa-dove text-4xl text-mystic-400"></i>
</div>
<h2 class="text-3xl sm:text-5xl font-serif font-bold text-mystic-100 mb-6">
Decode the Universe's Messages
</h2>
<p class="text-lg text-mystic-300 mb-10 max-w-2xl mx-auto">
Enter your symbolic experience and receive layered spiritual interpretations based on cultural symbolism, location, and belief systems.
</p>
<!-- Input Form -->
<div class="bg-mystic-800/50 backdrop-blur-sm rounded-xl p-6 md:p-8 card-glow">
<div class="mb-6">
<label class="block text-mystic-300 text-left mb-2">Describe your experience:</label>
<textarea
id="experience-input"
class="w-full mystic-input bg-mystic-900/70 border border-mystic-700 rounded-lg p-4 text-mystic-100 focus:outline-none focus:border-mystic-500 transition"
rows="3"
placeholder="I saw a crow at 4:44 during a thunderstorm..."></textarea>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mb-6">
<div>
<label class="block text-mystic-300 text-left mb-2">Location:</label>
<input
type="text"
class="w-full mystic-input bg-mystic-900/70 border border-mystic-700 rounded-lg p-2 text-mystic-100 focus:outline-none focus:border-mystic-500 transition"
placeholder="City or region">
</div>
<div>
<label class="block text-mystic-300 text-left mb-2">Belief System:</label>
<select class="w-full mystic-input bg-mystic-900/70 border border-mystic-700 rounded-lg p-2 text-mystic-100 focus:outline-none focus:border-mystic-500 transition">
<option>Any</option>
<option>Native American</option>
<option>Celtic</option>
<option>Hindu</option>
<option>Buddhist</option>
<option>Norse</option>
<option>Christian</option>
<option>Islamic</option>
</select>
</div>
<div>
<label class="block text-mystic-300 text-left mb-2">Context:</label>
<select class="w-full mystic-input bg-mystic-900/70 border border-mystic-700 rounded-lg p-2 text-mystic-100 focus:outline-none focus:border-mystic-500 transition">
<option>Dream</option>
<option>Meditation</option>
<option>Daily Life</option>
<option>Ritual</option>
<option>Nature</option>
</select>
</div>
</div>
<button id="interpret-btn" class="w-full bg-gradient-to-r from-mystic-600 to-mystic-800 hover:from-mystic-500 hover:to-mystic-700 text-mystic-100 font-bold py-3 px-6 rounded-lg transition transform hover:scale-[1.02]">
<i class="fas fa-crystal mr-2"></i>Interpret Symbolism
</button>
</div>
</div>
</section>
<!-- Interpretation Results -->
<section class="py-12 px-4 sm:px-8" id="results-section" style="display: none;">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-12">
<h3 class="text-2xl sm:text-3xl font-serif font-bold text-mystic-100 mb-2">Symbolic Interpretation</h3>
<p class="text-mystic-400">Based on your experience: <span id="experience-summary" class="text-mystic-300 italic">"I saw a crow at 4:44 during a thunderstorm"</span></p>
</div>
<div class="interpretation-card rounded-xl p-6 mb-8 fade-in">
<div class="flex items-center mb-4">
<div class="bg-mystic-700 p-3 rounded-full mr-4">
<i class="fas fa-crow text-xl text-mystic-300"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100">Crow Symbolism</h4>
</div>
<div class="mb-6">
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Transformation</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Magic</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Divine Messages</span>
</div>
<p class="text-mystic-300 mb-4">
Crows are often seen as messengers between the physical and spiritual worlds. In many traditions, they symbolize transformation, change, and the magic of creation.
</p>
<div class="bg-mystic-800/50 p-4 rounded-lg mb-4">
<h5 class="font-bold text-mystic-200 mb-2 flex items-center">
<i class="fas fa-globe-americas mr-2 text-mystic-400"></i> Cultural Perspectives
</h5>
<ul class="text-mystic-400 text-sm pl-5 list-disc">
<li><span class="text-mystic-300">Native American:</span> Crow is a keeper of sacred law and a shape-shifter</li>
<li><span class="text-mystic-300">Celtic:</span> Associated with warfare and death, but also prophetic knowledge</li>
<li><span class="text-mystic-300">Hindu:</span> Crows are considered ancestors bringing messages</li>
</ul>
</div>
</div>
</div>
<div class="interpretation-card rounded-xl p-6 mb-8 fade-in">
<div class="flex items-center mb-4">
<div class="bg-mystic-700 p-3 rounded-full mr-4">
<i class="fas fa-bolt text-xl text-mystic-300"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100">Thunderstorm Context</h4>
</div>
<div class="mb-6">
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Purification</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Power</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Emotional Release</span>
</div>
<p class="text-mystic-300 mb-4">
Thunderstorms represent the powerful forces of nature and the divine. They often symbolize purification, emotional release, and the clearing of obstacles. The combination of crow and storm suggests a powerful spiritual transformation is occurring.
</p>
</div>
</div>
<div class="interpretation-card rounded-xl p-6 mb-8 fade-in">
<div class="flex items-center mb-4">
<div class="bg-mystic-700 p-3 rounded-full mr-4">
<i class="fas fa-clock text-xl text-mystic-300"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100">4:44 Significance</h4>
</div>
<div class="mb-6">
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Angel Numbers</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Stability</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Divine Protection</span>
</div>
<p class="text-mystic-300 mb-4">
In numerology, 444 is considered an angel number signifying that you are surrounded by divine protection and guidance. It often appears when you are on the right path and your spiritual guides are supporting you.
</p>
<div class="bg-mystic-800/50 p-4 rounded-lg">
<h5 class="font-bold text-mystic-200 mb-2 flex items-center">
<i class="fas fa-lightbulb mr-2 text-mystic-400"></i> Overall Interpretation
</h5>
<p class="text-mystic-300">
This powerful combination suggests you are undergoing a significant spiritual transformation. The universe is sending you clear signs that you are protected and guided during this period of change. Pay attention to intuitive messages and trust the process of transformation unfolding in your life.
</p>
</div>
</div>
</div>
<div class="flex justify-center mt-8">
<button id="new-interpretation" class="bg-mystic-700 hover:bg-mystic-600 text-mystic-100 px-6 py-3 rounded-lg transition flex items-center">
<i class="fas fa-redo mr-2"></i> New Interpretation
</button>
</div>
</div>
</section>
<!-- Symbol Library -->
<section class="py-12 px-4 sm:px-8 bg-mystic-900/30">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-12">
<h3 class="text-2xl sm:text-3xl font-serif font-bold text-mystic-100 mb-2">Explore Symbolic Meanings</h3>
<p class="text-mystic-400">Discover interpretations from our community database</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Symbol Cards -->
<div class="symbol-card bg-mystic-800/50 backdrop-blur-sm rounded-xl p-6 border border-mystic-700">
<div class="flex justify-center mb-4">
<div class="bg-mystic-700 p-4 rounded-full">
<i class="fas fa-feather text-2xl text-mystic-300"></i>
</div>
</div>
<h4 class="text-lg font-serif text-mystic-100 text-center mb-2">Feather</h4>
<p class="text-mystic-400 text-sm text-center">Spiritual evolution, ascension, truth</p>
</div>
<div class="symbol-card bg-mystic-800/50 backdrop-blur-sm rounded-xl p-6 border border-mystic-700">
<div class="flex justify-center mb-4">
<div class="bg-mystic-700 p-4 rounded-full">
<i class="fas fa-moon text-2xl text-mystic-300"></i>
</div>
</div>
<h4 class="text-lg font-serif text-mystic-100 text-center mb-2">Full Moon</h4>
<p class="text-mystic-400 text-sm text-center">Completion, illumination, intuition</p>
</div>
<div class="symbol-card bg-mystic-800/50 backdrop-blur-sm rounded-xl p-6 border border-mystic-700">
<div class="flex justify-center mb-4">
<div class="bg-mystic-700 p-4 rounded-full">
<i class="fas fa-water text-2xl text-mystic-300"></i>
</div>
</div>
<h4 class="text-lg font-serif text-mystic-100 text-center mb-2">Flowing Water</h4>
<p class="text-mystic-400 text-sm text-center">Emotional release, purification, life flow</p>
</div>
<div class="symbol-card bg-mystic-800/50 backdrop-blur-sm rounded-xl p-6 border border-mystic-700">
<div class="flex justify-center mb-4">
<div class="bg-mystic-700 p-4 rounded-full">
<i class="fas fa-dragon text-2xl text-mystic-300"></i>
</div>
</div>
<h4 class="text-lg font-serif text-mystic-100 text-center mb-2">Dragon</h4>
<p class="text-mystic-400 text-sm text-center">Power, transformation, hidden knowledge</p>
</div>
</div>
<div class="text-center mt-10">
<button class="bg-mystic-700 hover:bg-mystic-600 text-mystic-100 px-6 py-3 rounded-lg transition">
Explore All Symbols <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</section>
<!-- Features -->
<section class="py-12 px-4 sm:px-8">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-12">
<h3 class="text-2xl sm:text-3xl font-serif font-bold text-mystic-100 mb-2">Your Spiritual Journey Companion</h3>
<p class="text-mystic-400">Features designed to deepen your symbolic understanding</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="text-center">
<div class="floating-2 mx-auto w-16 h-16 rounded-full bg-mystic-800 flex items-center justify-center mb-4">
<i class="fas fa-book-open text-2xl text-mystic-400"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100 mb-3">Personal Journal</h4>
<p class="text-mystic-400">Track your symbolic experiences and personal interpretations over time</p>
</div>
<div class="text-center">
<div class="floating mx-auto w-16 h-16 rounded-full bg-mystic-800 flex items-center justify-center mb-4">
<i class="fas fa-users text-2xl text-mystic-400"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100 mb-3">Community Wisdom</h4>
<p class="text-mystic-400">Contribute to and learn from our moderated database of symbolic meanings</p>
</div>
<div class="text-center">
<div class="floating-3 mx-auto w-16 h-16 rounded-full bg-mystic-800 flex items-center justify-center mb-4">
<i class="fas fa-filter text-2xl text-mystic-400"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100 mb-3">Belief Filters</h4>
<p class="text-mystic-400">Customize interpretations based on specific cultural or spiritual traditions</p>
</div>
<div class="text-center">
<div class="floating-2 mx-auto w-16 h-16 rounded-full bg-mystic-800 flex items-center justify-center mb-4">
<i class="fas fa-mobile-alt text-2xl text-mystic-400"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100 mb-3">Mobile Experience</h4>
<p class="text-mystic-400">Access spiritual guidance anytime, anywhere with our responsive design</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-4 sm:px-8 border-t border-mystic-800">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-3 mb-4">
<div class="bg-mystic-600 p-2 rounded-full">
<i class="fas fa-feather-alt text-mystic-200"></i>
</div>
<h3 class="text-xl font-serif font-bold text-mystic-100">Omen</h3>
</div>
<p class="text-mystic-400 mb-4">
Decoding spiritual symbolism through cultural wisdom and community insights.
</p>
<div class="flex space-x-4">
<a href="#" class="text-mystic-500 hover:text-mystic-300"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-mystic-500 hover:text-mystic-300"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-mystic-500 hover:text-mystic-300"><i class="fab fa-pinterest"></i></a>
<a href="#" class="text-mystic-500 hover:text-mystic-300"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-serif text-mystic-100 mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Symbol Dictionary</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Cultural Guides</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Spiritual Traditions</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Blog & Articles</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-serif text-mystic-100 mb-4">Community</h4>
<ul class="space-y-2">
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Contribute Meanings</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Discussion Forums</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Events & Gatherings</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Moderation Guidelines</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-serif text-mystic-100 mb-4">Subscribe</h4>
<p class="text-mystic-400 mb-4">Receive spiritual insights and updates</p>
<div class="flex">
<input type="email" placeholder="Your email" class="bg-mystic-800/50 border border-mystic-700 rounded-l-lg p-2 text-mystic-100 w-full focus:outline-none">
<button class="bg-mystic-600 hover:bg-mystic-500 text-mystic-100 px-4 rounded-r-lg">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-mystic-800 mt-12 pt-8 text-center text-mystic-500">
<p>© 2023 Omen Spiritual Meaning App. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Create constellation effect
function createConstellation() {
const container = document.getElementById('constellation');
const starsCount = 150;
for (let i = 0; i < starsCount; i++) {
const star = document.createElement('div');
star.classList.add('star');
// Random position
const posX = Math.random() * 100;
const posY = Math.random() * 100;
star.style.left = `${posX}%`;
star.style.top = `${posY}%`;
// Random size
const size = Math.random() * 2;
star.style.width = `${size}px`;
star.style.height = `${size}px`;
// Random opacity
const opacity = Math.random() * 0.8 + 0.2;
star.style.opacity = opacity;
// Random twinkle animation
const duration = Math.random() * 5 + 3;
star.style.animation = `twinkle ${duration}s infinite alternate`;
container.appendChild(star);
}
}
// Handle form submission
document.getElementById('interpret-btn').addEventListener('click', function() {
const experience = document.getElementById('experience-input').value || "I saw a crow at 4:44 during a thunderstorm";
document.getElementById('experience-summary').textContent = `"${experience}"`;
// Show results section
document.getElementById('results-section').style.display = 'block';
// Scroll to results
document.getElementById('results-section').scrollIntoView({ behavior: 'smooth' });
// Add fade-in animations to interpretation cards
const cards = document.querySelectorAll('.interpretation-card');
cards.forEach((card, index) => {
card.classList.add('fade-in');
card.style.animationDelay = `${index * 0.2}s`;
});
});
// Handle new interpretation
document.getElementById('new-interpretation').addEventListener('click', function() {
document.getElementById('results-section').style.display = 'none';
document.getElementById('experience-input').value = '';
document.getElementById('experience-input').focus();
});
// Initialize constellation on load
document.addEventListener('DOMContentLoaded', function() {
createConstellation();
});
</script>
<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://deepsite.hf.co/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://deepsite.hf.co" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://deepsite.hf.co?remix=drainch/omen" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |