Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Spin & Win Simplicity</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap'); | |
| </style> | |
| </head> | |
| <body class="font-[Poppins] bg-gradient-to-br from-gray-100 to-gray-200 min-h-screen"> | |
| <custom-header></custom-header> | |
| <main class="container mx-auto px-4 py-12"> | |
| <div class="max-w-4xl mx-auto text-center"> | |
| <h1 class="text-5xl font-bold text-gray-800 mb-6">Spin & Win</h1> | |
| <p class="text-xl text-gray-600 mb-12">A simple, fun game of chance with minimalist design</p> | |
| <div class="bg-white rounded-2xl shadow-xl p-8 mb-12"> | |
| <div class="wheel-container relative w-64 h-64 mx-auto mb-8"> | |
| <div class="wheel w-full h-full rounded-full border-8 border-gray-200 relative overflow-hidden transition-transform duration-5000 ease-out"> | |
| <!-- Wheel segments will be added by JS --> | |
| </div> | |
| <div class="wheel-pointer absolute top-0 left-1/2 -translate-x-1/2 w-8 h-8"> | |
| <div class="triangle w-0 h-0 border-l-8 border-r-8 border-b-16 border-l-transparent border-r-transparent border-b-red-500 mx-auto"></div> | |
| </div> | |
| </div> | |
| <button id="spin-btn" class="bg-gradient-to-r from-purple-500 to-blue-500 hover:from-purple-600 hover:to-blue-600 text-white font-bold py-3 px-8 rounded-full shadow-lg transition-all duration-300 transform hover:scale-105"> | |
| SPIN NOW | |
| </button> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> | |
| <div class="bg-white p-6 rounded-xl shadow-md"> | |
| <i data-feather="award" class="w-12 h-12 text-purple-500 mx-auto mb-4"></i> | |
| <h3 class="text-xl font-semibold mb-2">Simple Rules</h3> | |
| <p class="text-gray-600">Just spin and see what you win. No complicated rules!</p> | |
| </div> | |
| <div class="bg-white p-6 rounded-xl shadow-md"> | |
| <i data-feather="zap" class="w-12 h-12 text-blue-500 mx-auto mb-4"></i> | |
| <h3 class="text-xl font-semibold mb-2">Instant Fun</h3> | |
| <p class="text-gray-600">Get your adrenaline pumping with every spin.</p> | |
| </div> | |
| <div class="bg-white p-6 rounded-xl shadow-md"> | |
| <i data-feather="smile" class="w-12 h-12 text-green-500 mx-auto mb-4"></i> | |
| <h3 class="text-xl font-semibold mb-2">Pure Enjoyment</h3> | |
| <p class="text-gray-600">Designed for maximum enjoyment with minimal fuss.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script src="components/header.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script>feather.replace();</script> | |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> | |
| </body> | |
| </html> |