File size: 21,994 Bytes
42fc906
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Boombastic Bucks | Official Game Currency Store</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% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
        }
    </style>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
    <!-- Header -->
    <header class="gradient-bg text-white shadow-lg">
        <div class="container mx-auto px-4 py-6 flex justify-between items-center">
            <div class="flex items-center space-x-2">
                <i class="fas fa-gamepad text-3xl"></i>
                <h1 class="text-2xl font-bold">Boombastic Bucks</h1>
            </div>
            <nav class="hidden md:flex space-x-6 items-center">
                <a href="#" class="hover:text-gray-200 font-medium">Home</a>
                <a href="#" class="hover:text-gray-200 font-medium">Cards</a>
                <a href="#" class="hover:text-gray-200 font-medium">How It Works</a>
                <a href="#" class="hover:text-gray-200 font-medium">Support</a>
                <button class="bg-white text-indigo-600 hover:bg-gray-100 px-4 py-2 rounded-full font-bold transition">
                    Sign In
                </button>
            </nav>
            <button class="md:hidden text-2xl">
                <i class="fas fa-bars"></i>
            </button>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="gradient-bg text-white py-16 md:py-24">
        <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
            <div class="md:w-1/2 mb-10 md:mb-0">
                <h2 class="text-4xl md:text-5xl font-bold mb-4">Get Boombastic Bucks Today!</h2>
                <p class="text-xl mb-6">Unlock exclusive in-game items, skins, and boosters with our secure prepaid cards.</p>
                <div class="flex flex-col sm:flex-row gap-4">
                    <button class="bg-yellow-400 hover:bg-yellow-500 text-gray-900 font-bold py-3 px-6 rounded-full transition shadow-lg">
                        Shop Now <i class="fas fa-arrow-right ml-2"></i>
                    </button>
                    <button class="bg-white hover:bg-gray-100 text-indigo-600 font-bold py-3 px-6 rounded-full transition shadow-lg">
                        Watch Trailer <i class="fas fa-play-circle ml-2"></i>
                    </button>
                </div>
            </div>
            <div class="md:w-1/2 flex justify-center">
                <img src="https://via.placeholder.com/500x300?text=Boombastic+Game" alt="Boombastic Game" class="rounded-lg shadow-2xl w-full max-w-md border-4 border-white">
            </div>
        </div>
    </section>

    <!-- Featured Cards -->
    <section class="py-12 bg-white">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Choose Your Card</h2>
            
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
                <!-- Bronze Card -->
                <div class="card-hover bg-white rounded-xl shadow-md overflow-hidden border-2 border-amber-500 pulse-animation">
                    <div class="bg-amber-500 text-white py-3 text-center font-bold">
                        Bronze Card
                    </div>
                    <div class="p-6 text-center">
                        <div class="text-5xl font-bold text-gray-800 mb-4">100 BB</div>
                        <p class="text-gray-600 mb-6">Ideal for small purchases and trying out premium content</p>
                        <div class="text-3xl font-bold text-gray-900 mb-6">$4.99</div>
                        <button class="w-full bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 rounded-full transition">
                            Add to Cart <i class="fas fa-cart-plus ml-2"></i>
                        </button>
                    </div>
                </div>
                
                <!-- Silver Card -->
                <div class="card-hover bg-white rounded-xl shadow-md overflow-hidden border-2 border-gray-400">
                    <div class="bg-gray-400 text-white py-3 text-center font-bold">
                        Silver Card
                    </div>
                    <div class="p-6 text-center">
                        <div class="text-5xl font-bold text-gray-800 mb-4">500 BB</div>
                        <p class="text-gray-600 mb-6">Great value for regular players who need more currency</p>
                        <div class="text-3xl font-bold text-gray-900 mb-6">$19.99</div>
                        <button class="w-full bg-gray-400 hover:bg-gray-500 text-white font-bold py-3 rounded-full transition">
                            Add to Cart <i class="fas fa-cart-plus ml-2"></i>
                        </button>
                    </div>
                </div>
                
                <!-- Gold Card -->
                <div class="card-hover bg-white rounded-xl shadow-md overflow-hidden border-2 border-yellow-400">
                    <div class="bg-yellow-400 text-white py-3 text-center font-bold">
                        Gold Card
                    </div>
                    <div class="p-6 text-center">
                        <div class="text-5xl font-bold text-gray-800 mb-4">1,200 BB</div>
                        <p class="text-gray-600 mb-6">Best deal for serious players with bonus 100 BB</p>
                        <div class="text-3xl font-bold text-gray-900 mb-6">$44.99</div>
                        <button class="w-full bg-yellow-400 hover:bg-yellow-500 text-gray-900 font-bold py-3 rounded-full transition">
                            Add to Cart <i class="fas fa-cart-plus ml-2"></i>
                        </button>
                    </div>
                </div>
                
                <!-- Ultimate Card -->
                <div class="card-hover bg-white rounded-xl shadow-md overflow-hidden border-2 border-purple-500">
                    <div class="bg-purple-500 text-white py-3 text-center font-bold">
                        Ultimate Card
                    </div>
                    <div class="p-6 text-center">
                        <div class="text-5xl font-bold text-gray-800 mb-4">3,000 BB</div>
                        <p class="text-gray-600 mb-6">Mega value with exclusive Ultimate bonus items</p>
                        <div class="text-3xl font-bold text-gray-900 mb-6">$99.99</div>
                        <button class="w-full bg-purple-500 hover:bg-purple-600 text-white font-bold py-3 rounded-full transition">
                            Add to Cart <i class="fas fa-cart-plus ml-2"></i>
                        </button>
                    </div>
                </div>
            </div>
            
            <div class="mt-10 text-center">
                <button class="text-indigo-600 font-bold hover:text-indigo-800 transition">
                    View All Card Options <i class="fas fa-chevron-down ml-2"></i>
                </button>
            </div>
        </div>
    </section>

    <!-- How It Works -->
    <section class="py-16 bg-gray-100">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">How It Works</h2>
            
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="bg-white p-6 rounded-lg shadow-md text-center">
                    <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-shopping-cart text-indigo-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-2">Purchase</h3>
                    <p class="text-gray-600">Select and purchase your Boombastic Bucks card from our secure store.</p>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-md text-center">
                    <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-envelope-open-text text-indigo-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-2">Receive</h3>
                    <p class="text-gray-600">Get your unique code instantly via email or SMS after successful payment.</p>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-md text-center">
                    <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-gamepad text-indigo-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-2">Redeem</h3>
                    <p class="text-gray-600">Enter your code in Boombastic game to instantly receive your Bucks!</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Testimonials -->
    <section class="py-16 bg-white">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">What Players Say</h2>
            
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
                    <div class="flex items-center mb-4">
                        <div class="w-12 h-12 rounded-full bg-blue-500 text-white flex items-center justify-center text-xl font-bold mr-4">J</div>
                        <div>
                            <h4 class="font-bold">JohnnyRocket</h4>
                            <div class="flex text-yellow-400">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Got my Ultimate Card in seconds! The redemption process was smooth and I got my bonus items immediately."</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
                    <div class="flex items-center mb-4">
                        <div class="w-12 h-12 rounded-full bg-purple-500 text-white flex items-center justify-center text-xl font-bold mr-4">S</div>
                        <div>
                            <h4 class="font-bold">SpaceQueen</h4>
                            <div class="flex text-yellow-400">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"I buy Gold Cards monthly. Best value and never had any issues with delivery. Highly recommend!"</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
                    <div class="flex items-center mb-4">
                        <div class="w-12 h-12 rounded-full bg-green-500 text-white flex items-center justify-center text-xl font-bold mr-4">B</div>
                        <div>
                            <h4 class="font-bold">BoombasticPro</h4>
                            <div class="flex text-yellow-400">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star-half-alt"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Super fast delivery and excellent support. Got my code even before payment was confirmed!"</p>
                </div>
            </div>
        </div>
    </section>

    <!-- FAQ -->
    <section class="py-16 bg-gray-100">
        <div class="container mx-auto px-4 max-w-4xl">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Frequently Asked Questions</h2>
            
            <div class="space-y-4">
                <div class="bg-white p-6 rounded-lg shadow-sm">
                    <button class="flex justify-between items-center w-full text-left font-bold text-gray-800 text-lg">
                        How do I redeem my Boombastic Bucks?
                        <i class="fas fa-chevron-down ml-2"></i>
                    </button>
                    <div class="mt-4 text-gray-600 hidden">
                        <p>After purchase, you'll receive a unique redemption code. In Boombastic game, go to the "Redeem Code" section in the store menu, enter your code, and your Bucks will be added to your account instantly.</p>
                    </div>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-sm">
                    <button class="flex justify-between items-center w-full text-left font-bold text-gray-800 text-lg">
                        How long does delivery take?
                        <i class="fas fa-chevron-down ml-2"></i>
                    </button>
                    <div class="mt-4 text-gray-600 hidden">
                        <p>Digital codes are delivered instantly via email or SMS after successful payment processing. If you don't receive your code within 5 minutes, please check your spam folder or contact our support team.</p>
                    </div>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-sm">
                    <button class="flex justify-between items-center w-full text-left font-bold text-gray-800 text-lg">
                        Are there any regional restrictions?
                        <i class="fas fa-chevron-down ml-2"></i>
                    </button>
                    <div class="mt-4 text-gray-600 hidden">
                        <p>Boombastic Bucks cards are available worldwide, but your game account must be set to a supported region to redeem. Some country-specific regulations may apply for payment processing.</p>
                    </div>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-sm">
                    <button class="flex justify-between items-center w-full text-left font-bold text-gray-800 text-lg">
                        Can I get a refund for unused codes?
                        <i class="fas fa-chevron-down ml-2"></i>
                    </button>
                    <div class="mt-4 text-gray-600 hidden">
                        <p>Due to the digital nature of our products, all sales are final. However, if you encounter any issues redeeming your code, our support team will work with you to resolve the problem.</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Newsletter -->
    <section class="py-16 gradient-bg text-white">
        <div class="container mx-auto px-4 max-w-4xl text-center">
            <h2 class="text-3xl font-bold mb-4">Stay Updated</h2>
            <p class="mb-8 text-lg">Subscribe to get exclusive offers, new card announcements, and Boombastic news!</p>
            
            <div class="flex flex-col sm:flex-row gap-4 max-w-md mx-auto">
                <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-full text-gray-900 focus:outline-none focus:ring-2 focus:ring-indigo-500">
                <button class="bg-yellow-400 hover:bg-yellow-500 text-gray-900 font-bold px-6 py-3 rounded-full transition shadow-lg whitespace-nowrap">
                    Subscribe Now
                </button>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white py-12">
        <div class="container mx-auto px-4">
            <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
                <div>
                    <h3 class="text-xl font-bold mb-4 flex items-center">
                        <i class="fas fa-gamepad mr-2"></i> Boombastic Bucks
                    </h3>
                    <p class="text-gray-400">The official store for Boombastic game currency. Safe, secure, and instant delivery.</p>
                </div>
                
                <div>
                    <h4 class="text-lg font-bold mb-4">Quick Links</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Cards</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">How It Works</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Support</a></li>
                    </ul>
                </div>
                
                <div>
                    <h4 class="text-lg font-bold mb-4">Legal</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Refund Policy</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Cookie Policy</a></li>
                    </ul>
                </div>
                
                <div>
                    <h4 class="text-lg font-bold mb-4">Connect With Us</h4>
                    <div class="flex space-x-4 mb-4">
                        <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-indigo-600 transition">
                            <i class="fab fa-twitter"></i>
                        </a>
                        <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-indigo-600 transition">
                            <i class="fab fa-facebook-f"></i>
                        </a>
                        <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-indigo-600 transition">
                            <i class="fab fa-instagram"></i>
                        </a>
                        <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-indigo-600 transition">
                            <i class="fab fa-discord"></i>
                        </a>
                    </div>
                    <p class="text-gray-400">[email protected]</p>
                </div>
            </div>
            
            <div class="border-t border-gray-800 pt-8 text-center text-gray-500">
                <p>© 2023 Boombastic Bucks. All rights reserved. "Boombastic" is a registered trademark of Game Studios Inc.</p>
                <p class="mt-2 text-sm">This is not an official game site. This is a fictional demonstration website.</p>
            </div>
        </div>
    </footer>

    <script>
        // Toggle FAQ answers
        document.addEventListener('DOMContentLoaded', function() {
            const faqButtons = document.querySelectorAll('section#FAQ button');
            
            faqButtons.forEach(button => {
                button.addEventListener('click', function() {
                    const answer = this.nextElementSibling;
                    const icon = this.querySelector('i');
                    
                    answer.classList.toggle('hidden');
                    icon.classList.toggle('fa-chevron-down');
                    icon.classList.toggle('fa-chevron-up');
                });
            });
            
            // If we had a mobile menu, we would add toggle functionality here
        });
    </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://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=jeffboudier/boombastic-bucks" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
</html>