File size: 16,182 Bytes
d349029
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Pirate Slots | ReelRush Express</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.fog.min.js"></script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;600&display=swap');
        
        :root {
            --primary: #dc2626;
            --primary-dark: #991b1b;
            --bg: #1a1a1a;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg);
            color: #f8fafc;
            overflow-x: hidden;
        }
        
        .pirate-gradient {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        }
        
        .ocean-bg {
            background-image: url('http://static.photos/ocean/1200x630/1');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .ship-3d {
            transform-style: preserve-3d;
            animation: rock 6s ease-in-out infinite;
        }
        
        .symbol-3d {
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }
        
        .symbol-3d:hover {
            transform: translateZ(25px) scale(1.15);
        }
        
        @keyframes rock {
            0% { transform: rotate(-2deg) translateZ(0); }
            50% { transform: rotate(2deg) translateZ(20px); }
            100% { transform: rotate(-2deg) translateZ(0); }
        }
        
        .neuro-effect {
            border-radius: 16px;
            background: linear-gradient(145deg, #2d1810, #1a1a1a);
            box-shadow: 8px 8px 16px #0a0a0a, -8px -8px 16px #3d2820;
        }
        
        .neuro-effect-hover:hover {
            box-shadow: 12px 12px 24px #0a0a0a, -12px -12px 24px #3d2820;
            transform: translateY(-2px);
        }
    </style>
</head>
<body class="ocean-bg">
    <div id="vanta-bg" class="fixed inset-0 z-0"></div>
    <div class="fixed inset-0 bg-black/75 z-0"></div>
    
    <header class="pirate-gradient py-6 px-4 sm:px-6 lg:px-8 sticky top-0 z-50" style="transform: translateZ(50px);">
        <div class="container mx-auto flex items-center justify-between">
            <div class="flex items-center">
                <div class="mr-3 p-2 bg-red-700 rounded-full neuro-effect">
                    <i data-feather="anchor" class="text-white"></i>
                </div>
                <h1 class="text-2xl md:text-3xl font-bold font-serif">TREASURE HUNT</h1>
            </div>
            <a href="/" class="px-4 py-2 bg-red-700 hover:bg-red-800 rounded-full font-medium transition neuro-effect flex items-center">
                <i data-feather="arrow-left" class="mr-1 w-4 h-4"></i> Back to Main
            </a>
        </div>
    </header>

    <main class="container mx-auto px-4 sm:px-6 lg:px-8 py-12 relative z-20">
        <!-- 3D Ship Showcase -->
        <section class="mb-16 text-center">
            <div class="ship-3d mx-auto w-64 h-64 mb-8 relative">
                <div class="absolute inset-0 bg-red-500/20 clip-path-ship transform rotate-45" style="clip-path: polygon(50% 0%, 0% 100%, 100% 100%);"></div>
                <div class="absolute inset-4 bg-red-600/30 rounded-full animate-pulse"></div>
                <div class="absolute inset-8 bg-red-700/40 rounded-full animate-pulse" style="animation-delay: 0.5s;"></div>
            </div>
            <h2 class="text-4xl font-bold mb-4 font-serif">Plunder the Seven Seas</h2>
            <p class="text-xl max-w-2xl mx-auto">Set sail for adventure and untold riches on the high seas</p>
        </section>
        
        <!-- Interactive 3D Slot Machine -->
        <section class="mb-16">
            <div class="bg-black/50 neuro-effect rounded-2xl p-8 max-w-4xl mx-auto relative overflow-hidden" style="transform-style: preserve-3d; perspective: 2000px;">
                <div class="absolute -top-20 -right-20 w-64 h-64 rounded-full bg-red-600/5 blur-xl"></div>
                <div class="absolute -bottom-20 -left-20 w-64 h-64 rounded-full bg-red-600/5 blur-xl"></div>
                
                <div class="relative z-10">
                    <div class="flex justify-center space-x-6 mb-8" style="transform-style: preserve-3d;">
                        <!-- Reel 1 -->
                        <div class="reel bg-gray-800 neuro-effect rounded-lg w-28 h-40 overflow-hidden relative cursor-pointer hover:bg-gray-700 transition" 
                             style="transform-style: preserve-3d; box-shadow: 0 15px 30px rgba(0,0,0,0.6); transform: translateZ(25px);">
                            <div class="reel-items absolute w-full" style="transform-style: preserve-3d;">
                                <div class="reel-item w-full h-40 flex items-center justify-center" style="transform: translateZ(35px);">
                                    <img src="http://static.photos/red/120x120/1" class="w-24 h-24 object-contain symbol-3d" alt="Treasure Chest">
                                </div>
                                <div class="reel-item w-full h-40 flex items-center justify-center" style="transform: translateZ(35px);">
                                    <img src="http://static.photos/red/120x120/2" class="w-24 h-24 object-contain symbol-3d" alt="Pirate Flag">
                                </div>
                                <div class="reel-item w-full h-40 flex items-center justify-center" style="transform: translateZ(35px);">
                                    <img src="http://static.photos/red/120x120/3" class="w-24 h-24 object-contain symbol-3d" alt="Ship Wheel">
                                </div>
                            </div>
                        </div>
                        
                        <!-- Reel 2 -->
                        <div class="reel bg-gray-800 neuro-effect rounded-lg w-28 h-40 overflow-hidden relative cursor-pointer hover:bg-gray-700 transition" 
                             style="transform-style: preserve-3d; box-shadow: 0 15px 30px rgba(0,0,0,0.6); transform: translateZ(25px);">
                            <div class="reel-items absolute w-full" style="transform-style: preserve-3d;">
                                <div class="reel-item w-full h-40 flex items-center justify-center" style="transform: translateZ(35px);">
                                    <img src="http://static.photos/red/120x120/4" class="w-24 h-24 object-contain symbol-3d" alt="Gold Coin">
                                </div>
                                <div class="reel-item w-full h-40 flex items-center justify-center" style="transform: translateZ(35px);">
                                    <img src="http://static.photos/red/120x120/5" class="w-24 h-24 object-contain symbol-3d" alt="Parrot">
                                </div>
                                <div class="reel-item w-full h-40 flex items-center justify-center" style="transform: translateZ(35px);">
                                    <img src="http://static.photos/red/120x120/6" class="w-24 h-24 object-contain symbol-3d" alt="Cannon">
                                </div>
                            </div>
                        </div>
                        
                        <!-- Reel 3 -->
                        <div class="reel bg-gray-800 neuro-effect rounded-lg w-28 h-40 overflow-hidden relative cursor-pointer hover:bg-gray-700 transition" 
                             style="transform-style: preserve-3d; box-shadow: 0 15px 30px rgba(0,0,0,0.6); transform: translateZ(25px);">
                            <div class="reel-items absolute w-full" style="transform-style: preserve-3d;">
                                <div class="reel-item w-full h-40 flex items-center justify-center" style="transform: translateZ(35px);">
                                    <img src="http://static.photos/red/120x120/7" class="w-24 h-24 object-contain symbol-3d" alt="Map">
                                </div>
                                <div class="reel-item w-full h-40 flex items-center justify-center" style="transform: translateZ(35px);">
                                    <img src="http://static.photos/red/120x120/8" class="w-24 h-24 object-contain symbol-3d" alt="Sword">
                                </div>
                                <div class="reel-item w-full h-40 flex items-center justify-center" style="transform: translateZ(35px);">
                                    <img src="http://static.photos/red/120x120/9" class="w-24 h-24 object-contain symbol-3d" alt="Skull">
                                </div>
                            </div>
                        </div>
                    </div>
                    
                    <div class="flex justify-center">
                        <button id="spin-btn" class="px-12 py-4 bg-red-600 hover:bg-red-700 rounded-full font-bold text-lg transition neuro-effect neuro-effect-hover flex items-center transform hover:scale-105">
                            <i data-feather="play" class="mr-2"></i> SET SAIL
                        </button>
                    </div>
                </div>
            </div>
        </section>
        
        <!-- 3D Feature Cards -->
        <section>
            <h2 class="text-3xl font-bold text-center mb-12 font-serif">Pirate's Fortune</h2>
            
            <div class="grid md:grid-cols-3 gap-8">
                <div class="feature-card neuro-effect neuro-effect-hover rounded-xl p-6 transition-all duration-300 transform hover:-translate-y-3 relative" style="transform-style: preserve-3d;">
                    <div class="w-16 h-16 bg-red-600/20 rounded-full flex items-center justify-center mb-4 neuro-effect mx-auto" style="transform: translateZ(20px);">
                        <i data-feather="star" class="text-red-400"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3 text-center">Treasure Bonus</h3>
                    <p class="text-gray-300 text-center">X marks the spot for massive payouts</p>
                </div>
                
                <div class="feature-card neuro-effect neuro-effect-hover rounded-xl p-6 transition-all duration-300 transform hover:-translate-y-3 relative" style="transform-style: preserve-3d;">
                    <div class="w-16 h-16 bg-red-600/20 rounded-full flex items-center justify-center mb-4 neuro-effect mx-auto" style="transform: translateZ(20px);">
                        <i data-feather="wind" class="text-red-400"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3 text-center">Storm Surge</h3>
                    <p class="text-gray-300 text-center">Ride the waves for wild multipliers</p>
                </div>
                
                <div class="feature-card neuro-effect neuro-effect-hover rounded-xl p-6 transition-all duration-300 transform hover:-translate-y-3 relative" style="transform-style: preserve-3d;">
                    <div class="w-16 h-16 bg-red-600/20 rounded-full flex items-center justify-center mb-4 neuro-effect mx-auto" style="transform: translateZ(20px);">
                        <i data-feather="shield" class="text-red-400"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3 text-center">Captain's Luck</h3>
                    <p class="text-gray-300 text-center">Command your fortune with skill</p>
                </div>
            </div>
        </section>
    </main>

    <footer class="bg-gray-900/80 py-12 px-4 sm:px-6 lg:px-8 relative overflow-hidden">
        <div class="container mx-auto relative z-10">
            <div class="text-center text-gray-500 text-sm">
                © 2023 ReelRush Express. High seas slot adventures.
            </div>
        </div>
    </footer>

    <script>
        // Initialize Vanta.js background
        VANTA.FOG({
            el: "#vanta-bg",
            mouseControls: true,
            touchControls: true,
            gyroControls: false,
            minHeight: 200.00,
            minWidth: 200.00,
            highlightColor: 0xdc2626,
            midtoneColor: 0x991b1b,
            lowlightColor: 0x1a1a1a,
            baseColor: 0x000000
        });
        
        document.addEventListener('DOMContentLoaded', function() {
            feather.replace();
            
            // 3D Spin Animation
            document.getElementById('spin-btn').addEventListener('click', function() {
                const btn = this;
                const reels = document.querySelectorAll('.reel-items');
                
                // Disable button during spin
                btn.disabled = true;
                btn.innerHTML = '<i data-feather="loader" class="mr-2 animate-spin"></i> RAISING SAILS...';
                feather.replace();
                
                // 3D Reel spin animation
                reels.forEach((reel, index) => {
                    anime({
                        targets: reel,
                        translateY: [0, anime.random(-800, -400)],
                        translateZ: [0, anime.random(50, 100)],
                        rotateX: [0, anime.random(360, 720)],
                        duration: anime.random(2000, 3000),
                        delay: index * 200,
                        easing: 'easeInOutQuad',
                        complete: function() {
                            // Reset to winning position
                            anime({
                                targets: reel,
                                translateY: 0,
                                translateZ: 0,
                                rotateX: 0,
                                duration: 1000,
                                easing: 'spring(1, 80, 10, 0)'
                            });
                        }
                    });
                });
                
                // Re-enable button after spin
                setTimeout(() => {
                    btn.disabled = false;
                    btn.innerHTML = '<i data-feather="play" class="mr-2"></i> SET SAIL';
                    feather.replace();
                }, 3000);
            });
            
            // 3D hover effects for symbols
            document.querySelectorAll('.symbol-3d').forEach(symbol => {
                symbol.addEventListener('mouseenter', function() {
                    anime({
                        targets: this,
                        scale: 1.2,
                        translateZ: 40,
                        duration: 300,
                        easing: 'easeOutQuad'
                    });
                });
                
                symbol.addEventListener('mouseleave', function() {
                    anime({
                        targets: this,
                        scale: 1,
                        translateZ: 0,
                        duration: 300,
                        easing: 'easeOutQuad'
                    });
                });
            });
            
            // Interactive 3D tilt effect
            document.addEventListener('mousemove', (e) => {
                const x = e.clientX / window.innerWidth;
                const y = e.clientY / window.innerHeight;
                
                anime({
                    targets: '.feature-card',
                    rotateY: (x - 0.5) * 15,
                    rotateX: -(y - 0.5) * 15,
                    translateZ: 30,
                    easing: 'easeOutQuad',
                    duration: 500
                });
            });
        });
    </script>
</body>
</html>