Spaces:
Running
Running
File size: 23,979 Bytes
22fd8be c1e18ae |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oracle's Gym | A Sparring Partner for Your Intuition</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/anime.min.js"></script>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<style>
:root {
--soft-mauve: #cab5c8;
--sage-green: #a3b7a4;
--warm-cream: #f5f0e6;
--dusty-purple: #9d8ca1;
--golden-yellow: #e6c88d;
--honey: #e6b87d;
--amber: #e6b36d;
--ivory: #fdfaf3;
--dusty-rose: #d8b4b4;
--terracotta: #c77d7d;
--burnt-orange: #d99e6d;
--plum: #8a6d8a;
--muted-gold: #d4af37;
--antique-bronze: #a67b5b;
}
body {
font-family: 'Montserrat', sans-serif;
background: linear-gradient(135deg, var(--ivory) 0%, var(--warm-cream) 100%);
color: #333;
}
.header-font {
font-family: 'Playfair Display', serif;
letter-spacing: 0.5px;
}
.gradiant-text {
background: linear-gradient(90deg, var(--plum) 0%, var(--dusty-purple) 50%, var(--sage-green) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.card {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.mode-card {
background: linear-gradient(145deg, var(--ivory), var(--warm-cream));
border-left: 4px solid var(--muted-gold);
}
.btn-primary {
background: linear-gradient(90deg, var(--plum) 0%, var(--dusty-purple) 100%);
color: white;
border: none;
padding: 12px 24px;
border-radius: 4px;
font-weight: 500;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(138, 109, 138, 0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(138, 109, 138, 0.5);
}
.btn-secondary {
background: transparent;
border: 1px solid var(--dusty-purple);
color: var(--dusty-purple);
padding: 12px 24px;
border-radius: 4px;
font-weight: 500;
transition: all 0.3s ease;
}
.btn-secondary:hover {
background: rgba(157, 140, 161, 0.1);
}
.theme-tag {
background: rgba(216, 180, 180, 0.2);
color: var(--terracotta);
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
display: inline-block;
margin: 4px;
}
.art-nouveau-border {
position: relative;
padding: 20px;
}
.art-nouveau-border::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid var(--sage-green);
border-radius: 8px;
pointer-events: none;
background:
radial-gradient(circle at 10% 10%, transparent 2px, var(--sage-green) 2px, transparent 3px),
radial-gradient(circle at 90% 10%, transparent 2px, var(--sage-green) 2px, transparent 3px),
radial-gradient(circle at 10% 90%, transparent 2px, var(--sage-green) 2px, transparent 3px),
radial-gradient(circle at 90% 90%, transparent 2px, var(--sage-green) 2px, transparent 3px);
}
.glow {
box-shadow: 0 0 15px rgba(230, 184, 125, 0.3);
}
.floating {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.symbol {
opacity: 0.1;
position: absolute;
z-index: -1;
}
</style>
</head>
<body class="min-h-screen">
<!-- Header -->
<header class="py-8 px-4 md:px-8">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-gradient-to-r from-plum to-dusty-purple flex items-center justify-center text-white mr-3">
<i data-feather="book" class="w-6 h-6"></i>
</div>
<h1 class="text-2xl md:text-3xl font-bold header-font">
<span class="gradiant-text">Oracle's Gym</span>
</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#" class="text-dusty-purple hover:text-plum transition">Dashboard</a>
<a href="#" class="text-dusty-purple hover:text-plum transition">Case Files</a>
<a href="#" class="text-dusty-purple hover:text-plum transition">Master Journal</a>
<a href="#" class="text-dusty-purple hover:text-plum transition">Settings</a>
</nav>
<button class="md:hidden text-dusty-purple">
<i data-feather="menu" class="w-6 h-6"></i>
</button>
</div>
</header>
<!-- Hero Section -->
<section class="py-16 md:py-24 px-4 md:px-8">
<div class="container mx-auto text-center max-w-3xl">
<h2 class="text-4xl md:text-6xl font-bold header-font mb-6">A sparring partner for your intuition</h2>
<p class="text-lg md:text-xl text-gray-600 mb-10 max-w-2xl mx-auto">
Sharpen your tarot reading skills with sophisticated practice scenarios designed for intermediate to advanced readers.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="btn-primary px-8 py-3 text-lg">Start Practicing</button>
<button class="btn-secondary px-8 py-3 text-lg">Explore Modes</button>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 px-4 md:px-8 bg-ivory">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold header-font mb-4">Practice with Purpose</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Three distinct modes to challenge and refine your tarot interpretation skills.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Mode 1 -->
<div class="mode-card card p-8 art-nouveau-border" data-aos="fade-up">
<div class="w-16 h-16 rounded-full bg-amber-100 flex items-center justify-center mb-6">
<i data-feather="folder" class="w-8 h-8 text-amber-700"></i>
</div>
<h3 class="text-2xl font-bold header-font mb-3">Case Files</h3>
<p class="text-gray-600 mb-4">
Deep-dive practice with complex scenarios that reveal hidden insights.
</p>
<div class="flex flex-wrap mb-4">
<span class="theme-tag">Career</span>
<span class="theme-tag">Relationships</span>
<span class="theme-tag">Spirituality</span>
</div>
<button class="text-dusty-purple font-medium flex items-center">
Explore Cases
<i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</button>
</div>
<!-- Mode 2 -->
<div class="mode-card card p-8 art-nouveau-border" data-aos="fade-up" data-aos-delay="100">
<div class="w-16 h-16 rounded-full bg-rose-100 flex items-center justify-center mb-6">
<i data-feather="compass" class="w-8 h-8 text-rose-700"></i>
</div>
<h3 class="text-2xl font-bold header-font mb-3">Oracle's Outcome</h3>
<p class="text-gray-600 mb-4">
Predictive practice with multiple paths and narrative consequences.
</p>
<div class="flex flex-wrap mb-4">
<span class="theme-tag">Decision Making</span>
<span class="theme-tag">Advice</span>
<span class="theme-tag">Future</span>
</div>
<button class="text-dusty-purple font-medium flex items-center">
Choose Paths
<i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</button>
</div>
<!-- Mode 3 -->
<div class="mode-card card p-8 art-nouveau-border" data-aos="fade-up" data-aos-delay="200">
<div class="w-16 h-16 rounded-full bg-green-100 flex items-center justify-center mb-6">
<i data-feather="refresh-cw" class="w-8 h-8 text-green-700"></i>
</div>
<h3 class="text-2xl font-bold header-font mb-3">Reading Replay</h3>
<p class="text-gray-600 mb-4">
Nuance practice with new information updates after 24-48 hours.
</p>
<div class="flex flex-wrap mb-4">
<span class="theme-tag">Timing</span>
<span class="theme-tag">Context</span>
<span class="theme-tag">Evolution</span>
</div>
<button class="text-dusty-purple font-medium flex items-center">
Replay Readings
<i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</button>
</div>
</div>
</div>
</section>
<!-- Reading Interface Preview -->
<section class="py-16 px-4 md:px-8">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl md:text-4xl font-bold header-font mb-6">Sophisticated Reading Interface</h2>
<p class="text-gray-600 mb-6">
Our virtual reading space provides an elegant environment for your practice sessions.
Choose from classic spreads or create your own freestyle layouts.
</p>
<ul class="text-gray-600 space-y-3 mb-8">
<li class="flex items-start">
<i data-feather="check-circle" class="w-5 h-5 text-plum mt-1 mr-3"></i>
<span>High-quality digital decks with detailed card artwork</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="w-5 h-5 text-plum mt-1 mr-3"></i>
<span>Classic spreads including Celtic Cross, 3-Card, and more</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="w-5 h-5 text-plum mt-1 mr-3"></i>
<span>Freestyle mode for custom layouts</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="w-5 h-5 text-plum mt-1 mr-3"></i>
<span>Detailed card viewing with zoom functionality</span>
</li>
</ul>
<button class="btn-primary">Try the Interface</button>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="absolute -top-10 -left-10 w-64 h-64 bg-amber-100 rounded-full opacity-20 floating"></div>
<div class="relative bg-gradient-to-br from-ivory to-warm-cream border border-dusty-purple rounded-xl shadow-xl p-6 w-full max-w-md">
<div class="flex justify-between items-center mb-6">
<h3 class="text-xl font-bold header-font">Reading Preview</h3>
<div class="flex space-x-2">
<div class="w-3 h-3 bg-plum rounded-full"></div>
<div class="w-3 h-3 bg-sage-green rounded-full"></div>
<div class="w-3 h-3 bg-amber rounded-full"></div>
</div>
</div>
<div class="flex justify-center mb-6">
<div class="grid grid-cols-3 gap-4">
<div class="w-20 h-32 bg-gradient-to-br from-plum to-dusty-purple rounded shadow-md flex items-center justify-center text-white font-bold transform rotate-12">I</div>
<div class="w-20 h-32 bg-gradient-to-br from-sage-green to-amber rounded shadow-md flex items-center justify-center text-white font-bold">X</div>
<div class="w-20 h-32 bg-gradient-to-br from-terracotta to-burnt-orange rounded shadow-md flex items-center justify-center text-white font-bold transform -rotate-12">XI</div>
</div>
</div>
<div class="bg-white bg-opacity-70 rounded-lg p-4">
<p class="text-sm italic">"The cards reveal hidden motivations beneath the surface question..."</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Master Journal -->
<section class="py-16 px-4 md:px-8 bg-ivory">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold header-font mb-4">Master Journal</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Your personal archive of readings with powerful search and filtering capabilities.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="card p-6">
<h3 class="text-xl font-bold header-font mb-4">Reading Archive</h3>
<div class="space-y-4">
<div class="p-4 bg-white rounded-lg border-l-4 border-plum">
<div class="flex justify-between">
<h4 class="font-bold">Career Crossroads</h4>
<span class="text-sm text-gray-500">2 days ago</span>
</div>
<p class="text-sm text-gray-600 mt-2">3-Card Spread | Career & Finance</p>
</div>
<div class="p-4 bg-white rounded-lg border-l-4 border-sage-green">
<div class="flex justify-between">
<h4 class="font-bold">Relationship Dynamics</h4>
<span class="text-sm text-gray-500">1 week ago</span>
</div>
<p class="text-sm text-gray-600 mt-2">Celtic Cross | Romance & Relationships</p>
</div>
<div class="p-4 bg-white rounded-lg border-l-4 border-amber">
<div class="flex justify-between">
<h4 class="font-bold">Spiritual Growth</h4>
<span class="text-sm text-gray-500">3 weeks ago</span>
</div>
<p class="text-sm text-gray-600 mt-2">Freestyle | Personal Growth</p>
</div>
</div>
</div>
<div class="card p-6">
<h3 class="text-xl font-bold header-font mb-4">Filter & Search</h3>
<div class="space-y-4">
<div class="relative">
<input type="text" placeholder="Search readings..." class="w-full p-3 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-plum">
<i data-feather="search" class="absolute right-3 top-3.5 w-5 h-5 text-gray-400"></i>
</div>
<div class="mt-6">
<h4 class="font-bold mb-2">Filter by Theme</h4>
<div class="flex flex-wrap gap-2">
<span class="theme-tag">Career</span>
<span class="theme-tag">Relationships</span>
<span class="theme-tag">Spirituality</span>
<span class="theme-tag">Health</span>
<span class="theme-tag">Creativity</span>
</div>
</div>
<div class="mt-6">
<h4 class="font-bold mb-2">Filter by Date</h4>
<div class="flex space-x-2">
<button class="flex-1 py-2 bg-white rounded border border-gray-300">Last 7 Days</button>
<button class="flex-1 py-2 bg-white rounded border border-gray-300">Last 30 Days</button>
<button class="flex-1 py-2 bg-white rounded border border-gray-300">All</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 px-4 md:px-8">
<div class="container mx-auto text-center max-w-3xl">
<h2 class="text-3xl md:text-4xl font-bold header-font mb-6">Elevate Your Tarot Practice</h2>
<p class="text-lg text-gray-600 mb-10">
Join thousands of tarot readers who are sharpening their intuition with Oracle's Gym.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="btn-primary px-8 py-3 text-lg">Start Free Trial</button>
<button class="btn-secondary px-8 py-3 text-lg">View Pricing</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-4 md:px-8 bg-gradient-to-r from-plum to-dusty-purple text-white">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-white flex items-center justify-center text-plum mr-3">
<i data-feather="book"></i>
</div>
<h2 class="text-2xl font-bold header-font">Oracle's Gym</h2>
</div>
<p class="mt-2 text-plum-200">A sparring partner for your intuition</p>
</div>
<div class="flex flex-wrap justify-center gap-6">
<div>
<h3 class="font-bold mb-2">Practice Modes</h3>
<ul class="text-plum-200 space-y-1">
<li><a href="#" class="hover:text-white transition">Case Files</a></li>
<li><a href="#" class="hover:text-white transition">Oracle's Outcome</a></li>
<li><a href="#" class="hover:text-white transition">Reading Replay</a></li>
</ul>
</div>
<div>
<h3 class="font-bold mb-2">Resources</h3>
<ul class="text-plum-200 space-y-1">
<li><a href="#" class="hover:text-white transition">Blog</a></li>
<li><a href="#" class="hover:text-white transition">Tutorials</a></li>
<li><a href="#" class="hover:text-white transition">Community</a></li>
</ul>
</div>
<div>
<h3 class="font-bold mb-2">Support</h3>
<ul class="text-plum-200 space-y-1">
<li><a href="#" class="hover:text-white transition">Help Center</a></li>
<li><a href="#" class="hover:text-white transition">Contact</a></li>
<li><a href="#" class="hover:text-white transition">Privacy Policy</a></li>
</ul>
</div>
</div>
</div>
<div class="mt-12 pt-8 border-t border-plum-300 text-center text-plum-200">
<p>© 2023 Oracle's Gym. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Initialize Feather Icons
feather.replace();
// Initialize AOS
AOS.init({
duration: 800,
easing: 'ease-out-quart'
});
// Anime.js animations
document.addEventListener('DOMContentLoaded', function() {
// Animate hero text
anime({
targets: '.header-font',
translateY: [50, 0],
opacity: [0, 1],
duration: 1000,
easing: 'easeOutExpo'
});
// Animate buttons
anime({
targets: '.btn-primary, .btn-secondary',
translateY: [30, 0],
opacity: [0, 1],
duration: 1200,
delay: anime.stagger(200),
easing: 'easeOutExpo'
});
// Floating animation for cards
anime({
targets: '.floating',
translateY: [-10, 10],
duration: 2000,
loop: true,
direction: 'alternate',
easing: 'easeInOutQuad'
});
});
</script>
</body>
</html>
|