File size: 27,441 Bytes
6d74f59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>OneIPTV - Best IPTV Subscription Service</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">
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        primary: '#3B82F6',
                        secondary: '#8B5CF6',
                        dark: '#1F2937',
                    }
                }
            }
        }
    </script>
    <style>
        .hero-image {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1574375927938-d5a98e8ffe85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80');
            background-size: cover;
            background-position: center;
            height: 90vh;
        }
        
        .pricing-toggle input:checked + .toggle-dot {
            transform: translateX(100%);
        }
        
        .pricing-card {
            transition: all 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion.active .accordion-content {
            max-height: 300px;
        }
        
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25D366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    </style>
</head>
<body class="font-sans antialiased text-gray-800">
    <!-- WhatsApp Float Button -->
    <a href="https://wa.me/+212654578665" class="whatsapp-float" target="_blank">
        <i class="fab fa-whatsapp"></i>
    </a>

    <!-- Navigation -->
    <nav class="bg-white shadow-lg sticky top-0 z-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between h-16">
                <div class="flex items-center">
                    <div class="flex-shrink-0 flex items-center">
                        <span class="text-primary font-bold text-2xl">One<span class="text-secondary">IPTV</span></span>
                    </div>
                </div>
                <div class="hidden md:flex items-center space-x-8">
                    <a href="#home" class="text-dark hover:text-primary px-3 py-2 font-medium">Home</a>
                    <a href="#pricing" class="text-dark hover:text-primary px-3 py-2 font-medium">Pricing</a>
                    <a href="#features" class="text-dark hover:text-primary px-3 py-2 font-medium">Features</a>
                    <a href="#faq" class="text-dark hover:text-primary px-3 py-2 font-medium">FAQ</a>
                </div>
                <div class="flex items-center">
                    <a href="#pricing" class="bg-primary hover:bg-blue-700 text-white px-4 py-2 rounded-md font-medium transition duration-300">
                        Get Started
                    </a>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section id="home" class="hero-image flex items-center justify-center text-white">
        <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
            <h1 class="text-4xl md:text-5xl font-bold mb-4">Best IPTV Subscription – Instant Access & 36-Hour Trial | OneIPTV</h1>
            <p class="text-xl mb-6">Experience top-quality IPTV streaming with instant delivery and no buffering.</p>
            <p class="text-2xl font-semibold mb-8">Unlimited Entertainment, Anytime, Anywhere</p>
            <div class="flex flex-col sm:flex-row justify-center gap-4">
                <a href="#pricing" class="bg-primary hover:bg-blue-700 text-white px-6 py-3 rounded-md font-medium text-lg transition duration-300">
                    View Prices
                </a>
                <a href="#pricing" class="bg-secondary hover:bg-purple-700 text-white px-6 py-3 rounded-md font-medium text-lg transition duration-300">
                    36 Hours Trial
                </a>
            </div>
        </div>
    </section>

    <!-- Pricing Section -->
    <section id="pricing" class="py-16 bg-gray-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-12">
                <h2 class="text-3xl font-bold text-dark mb-4">Flexible Subscription Options for OneIPTV 2025 – IPTV Packages</h2>
                <p class="text-lg text-gray-600">No hidden fees. Choose the plan that suits your needs and enjoy IPTV service today!</p>
            </div>
            
            <!-- Connection Toggle -->
            <div class="flex justify-center mb-12">
                <div class="inline-flex rounded-md shadow-sm" role="group">
                    <button type="button" class="px-4 py-2 text-sm font-medium rounded-l-lg bg-orange-500 text-white focus:z-10 focus:ring-2 focus:ring-orange-500">
                        1 Connection
                    </button>
                    <button type="button" class="px-4 py-2 text-sm font-medium bg-blue-500 text-white focus:z-10 focus:ring-2 focus:ring-blue-500">
                        2 Connections
                    </button>
                    <button type="button" class="px-4 py-2 text-sm font-medium bg-blue-500 text-white focus:z-10 focus:ring-2 focus:ring-blue-500">
                        3 Connections
                    </button>
                    <button type="button" class="px-4 py-2 text-sm font-medium bg-blue-500 text-white focus:z-10 focus:ring-2 focus:ring-blue-500">
                        4 Connections
                    </button>
                    <button type="button" class="px-4 py-2 text-sm font-medium rounded-r-lg bg-blue-500 text-white focus:z-10 focus:ring-2 focus:ring-blue-500">
                        5 Connections
                    </button>
                </div>
            </div>
            
            <!-- Pricing Plans -->
            <div class="grid md:grid-cols-2 gap-8">
                <!-- Yearly Pricing -->
                <div class="bg-white rounded-lg shadow-lg overflow-hidden pricing-card">
                    <div class="p-6 bg-primary text-white">
                        <h3 class="text-2xl font-bold">Yearly Pricing</h3>
                        <p class="opacity-90">Best value - Save up to 50%</p>
                    </div>
                    <div class="p-6">
                        <ul class="space-y-4">
                            <li class="flex justify-between items-center py-2 border-b border-gray-100">
                                <span>1 Device</span>
                                <span class="font-bold">$25/year</span>
                            </li>
                            <li class="flex justify-between items-center py-2 border-b border-gray-100">
                                <span>2 Devices</span>
                                <span class="font-bold">$40/year</span>
                            </li>
                            <li class="flex justify-between items-center py-2 border-b border-gray-100">
                                <span>3 Devices</span>
                                <span class="font-bold">$50/year</span>
                            </li>
                            <li class="flex justify-between items-center py-2 border-b border-gray-100">
                                <span>4 Devices</span>
                                <span class="font-bold">$60/year</span>
                            </li>
                        </ul>
                        <button class="w-full mt-6 bg-primary hover:bg-blue-700 text-white py-3 rounded-md font-medium transition duration-300">
                            Get Yearly Plan
                        </button>
                    </div>
                </div>
                
                <!-- Monthly Pricing -->
                <div class="bg-white rounded-lg shadow-lg overflow-hidden pricing-card">
                    <div class="p-6 bg-secondary text-white">
                        <h3 class="text-2xl font-bold">Monthly Plans</h3>
                        <p class="opacity-90">Flexible short-term options</p>
                    </div>
                    <div class="p-6">
                        <ul class="space-y-4">
                            <li class="flex justify-between items-center py-2 border-b border-gray-100">
                                <span>1 Month</span>
                                <span class="font-bold">$5</span>
                            </li>
                            <li class="flex justify-between items-center py-2 border-b border-gray-100">
                                <span>3 Months</span>
                                <span class="font-bold">$10</span>
                            </li>
                            <li class="flex justify-between items-center py-2 border-b border-gray-100">
                                <span>6 Months</span>
                                <span class="font-bold">$15</span>
                            </li>
                            <li class="flex justify-between items-center py-2 border-b border-gray-100">
                                <span>12 Months</span>
                                <span class="font-bold">$25</span>
                            </li>
                            <li class="flex justify-between items-center py-2 border-b border-gray-100 bg-yellow-50 px-2 rounded">
                                <span class="font-semibold">Promo: 12 + 1 Month Free</span>
                                <span class="font-bold">$25</span>
                            </li>
                        </ul>
                        <button class="w-full mt-6 bg-secondary hover:bg-purple-700 text-white py-3 rounded-md font-medium transition duration-300">
                            Get Monthly Plan
                        </button>
                    </div>
                </div>
            </div>
            
            <p class="text-center mt-8 text-gray-600">No hidden fees – one-time payment per plan.</p>
        </div>
    </section>

    <!-- Features Section -->
    <section id="features" class="py-16 bg-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-12">
                <h2 class="text-3xl font-bold text-dark mb-4">Premium IPTV Features</h2>
                <p class="text-lg text-gray-600">Everything you need for the ultimate streaming experience</p>
            </div>
            
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <div class="bg-gray-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="feature-icon bg-green-100 text-green-600">
                            <i class="fas fa-check"></i>
                        </div>
                        <h3 class="text-xl font-semibold">12,000+ Live Channels</h3>
                    </div>
                    <p class="text-gray-600">Access to international channels from USA, UK, Canada, Europe, Middle East, and more.</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="feature-icon bg-green-100 text-green-600">
                            <i class="fas fa-check"></i>
                        </div>
                        <h3 class="text-xl font-semibold">50,000+ VOD (Movies & Series)</h3>
                    </div>
                    <p class="text-gray-600">Massive library of movies and TV series including latest releases and classics.</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="feature-icon bg-green-100 text-green-600">
                            <i class="fas fa-check"></i>
                        </div>
                        <h3 class="text-xl font-semibold">Works on All Devices</h3>
                    </div>
                    <p class="text-gray-600">Compatible with Smart TVs, Android, iOS, Firestick, MAG boxes, and more.</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="feature-icon bg-green-100 text-green-600">
                            <i class="fas fa-check"></i>
                        </div>
                        <h3 class="text-xl font-semibold">99.9% Uptime</h3>
                    </div>
                    <p class="text-gray-600">Reliable servers with minimal downtime for uninterrupted streaming.</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="feature-icon bg-green-100 text-green-600">
                            <i class="fas fa-check"></i>
                        </div>
                        <h3 class="text-xl font-semibold">24/7 Customer Support</h3>
                    </div>
                    <p class="text-gray-600">Dedicated support team available round the clock to assist you.</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg">
                    <div class="flex items-center mb-4">
                        <div class="feature-icon bg-green-100 text-green-600">
                            <i class="fas fa-check"></i>
                        </div>
                        <h3 class="text-xl font-semibold">EPG (Electronic Program Guide)</h3>
                    </div>
                    <p class="text-gray-600">Easy navigation with program schedules for all channels.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- FAQ Section -->
    <section id="faq" class="py-16 bg-gray-50">
        <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-12">
                <h2 class="text-3xl font-bold text-dark mb-4">Frequently Asked Questions</h2>
                <p class="text-lg text-gray-600">Find answers to common questions about our IPTV service</p>
            </div>
            
            <div class="space-y-4">
                <!-- FAQ Item 1 -->
                <div class="bg-white rounded-lg shadow-md overflow-hidden accordion">
                    <button class="w-full px-6 py-4 text-left font-medium text-lg flex justify-between items-center accordion-button">
                        <span>How to install IPTV?</span>
                        <i class="fas fa-chevron-down transition-transform duration-300"></i>
                    </button>
                    <div class="accordion-content">
                        <div class="px-6 pb-4 pt-0">
                            <p class="text-gray-600">Installation is simple. After purchase, you'll receive detailed instructions based on your device. Generally, you'll need to download an IPTV player app (like IPTV Smarters, Tivimate, or similar), enter your credentials, and start streaming. We provide step-by-step guides for all major devices.</p>
                        </div>
                    </div>
                </div>
                
                <!-- FAQ Item 2 -->
                <div class="bg-white rounded-lg shadow-md overflow-hidden accordion">
                    <button class="w-full px-6 py-4 text-left font-medium text-lg flex justify-between items-center accordion-button">
                        <span>Is there a free trial?</span>
                        <i class="fas fa-chevron-down transition-transform duration-300"></i>
                    </button>
                    <div class="accordion-content">
                        <div class="px-6 pb-4 pt-0">
                            <p class="text-gray-600">Yes! We offer a 36-hour free trial so you can test our service before committing to a subscription. The trial gives you full access to all channels and features. To get your trial, simply click on the "36 Hours Trial" button and follow the instructions.</p>
                        </div>
                    </div>
                </div>
                
                <!-- FAQ Item 3 -->
                <div class="bg-white rounded-lg shadow-md overflow-hidden accordion">
                    <button class="w-full px-6 py-4 text-left font-medium text-lg flex justify-between items-center accordion-button">
                        <span>Can I use it on more than one device?</span>
                        <i class="fas fa-chevron-down transition-transform duration-300"></i>
                    </button>
                    <div class="accordion-content">
                        <div class="px-6 pb-4 pt-0">
                            <p class="text-gray-600">Yes, but it depends on your subscription plan. We offer plans from 1 to 5 simultaneous connections. Each connection allows you to use the service on one device at a time. If you need to use multiple devices simultaneously, please choose a plan with multiple connections.</p>
                        </div>
                    </div>
                </div>
                
                <!-- FAQ Item 4 -->
                <div class="bg-white rounded-lg shadow-md overflow-hidden accordion">
                    <button class="w-full px-6 py-4 text-left font-medium text-lg flex justify-between items-center accordion-button">
                        <span>Which devices are supported?</span>
                        <i class="fas fa-chevron-down transition-transform duration-300"></i>
                    </button>
                    <div class="accordion-content">
                        <div class="px-6 pb-4 pt-0">
                            <p class="text-gray-600">Our service works on virtually all devices including: Smart TVs (Samsung, LG, Android TV), Android devices (phones, tablets, boxes), iOS devices (iPhone, iPad), Amazon Fire TV Stick, MAG boxes, Formuler devices, Windows PCs, Macs, and more. We provide setup guides for all supported devices.</p>
                        </div>
                    </div>
                </div>
                
                <!-- FAQ Item 5 -->
                <div class="bg-white rounded-lg shadow-md overflow-hidden accordion">
                    <button class="w-full px-6 py-4 text-left font-medium text-lg flex justify-between items-center accordion-button">
                        <span>What payment methods do you accept?</span>
                        <i class="fas fa-chevron-down transition-transform duration-300"></i>
                    </button>
                    <div class="accordion-content">
                        <div class="px-6 pb-4 pt-0">
                            <p class="text-gray-600">We accept all major credit cards (Visa, MasterCard, American Express), PayPal, and cryptocurrency (Bitcoin, Ethereum). All payments are processed securely through encrypted payment gateways. Your payment information is never stored on our servers.</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Trust Badges -->
    <section class="py-12 bg-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
                <div class="flex flex-col items-center">
                    <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-3">
                        <i class="fas fa-lock text-blue-600 text-2xl"></i>
                    </div>
                    <h3 class="font-medium">Secure Payment</h3>
                </div>
                <div class="flex flex-col items-center">
                    <div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-3">
                        <i class="fas fa-bolt text-green-600 text-2xl"></i>
                    </div>
                    <h3 class="font-medium">Instant Delivery</h3>
                </div>
                <div class="flex flex-col items-center">
                    <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mb-3">
                        <i class="fas fa-headset text-purple-600 text-2xl"></i>
                    </div>
                    <h3 class="font-medium">24/7 Support</h3>
                </div>
                <div class="flex flex-col items-center">
                    <div class="w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mb-3">
                        <i class="fas fa-mobile-alt text-red-600 text-2xl"></i>
                    </div>
                    <h3 class="font-medium">All Devices</h3>
                </div>
            </div>
        </div>
    </section>

    <!-- Payment Methods -->
    <section class="py-8 bg-gray-100">
        <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
            <h3 class="text-center text-lg font-medium mb-6">We Accept</h3>
            <div class="flex justify-center space-x-8">
                <i class="fab fa-cc-visa text-4xl text-blue-900"></i>
                <i class="fab fa-cc-mastercard text-4xl text-red-600"></i>
                <i class="fab fa-cc-amex text-4xl text-blue-500"></i>
                <i class="fab fa-paypal text-4xl text-blue-700"></i>
                <i class="fab fa-bitcoin text-4xl text-orange-500"></i>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-dark text-white py-12">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
                <div>
                    <h3 class="text-xl font-bold mb-4">One<span class="text-primary">IPTV</span></h3>
                    <p class="text-gray-300">Premium IPTV service provider offering the best streaming experience with thousands of channels and VOD content.</p>
                </div>
                <div>
                    <h4 class="font-bold mb-4">Quick Links</h4>
                    <ul class="space-y-2">
                        <li><a href="#home" class="text-gray-300 hover:text-primary transition">Home</a></li>
                        <li><a href="#pricing" class="text-gray-300 hover:text-primary transition">Pricing</a></li>
                        <li><a href="#features" class="text-gray-300 hover:text-primary transition">Features</a></li>
                        <li><a href="#faq" class="text-gray-300 hover:text-primary transition">FAQ</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-bold mb-4">Support</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-300 hover:text-primary transition">Contact Us</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-primary transition">Help Center</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-primary transition">Setup Guides</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-primary transition">Terms of Service</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-bold mb-4">Contact</h4>
                    <ul class="space-y-2">
                        <li class="flex items-center">
                            <i class="fas fa-envelope mr-2 text-primary"></i>
                            <span>support@oneiptv.com</span>
                        </li>
                        <li class="flex items-center">
                            <i class="fab fa-whatsapp mr-2 text-primary"></i>
                            <span>+212 654 578 665</span>
                        </li>
                    </ul>
                </div>
            </div>
            <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
                <p>© 2025 OneIPTV. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>
        // Accordion functionality
        document.querySelectorAll('.accordion-button').forEach(button => {
            button.addEventListener('click', () => {
                const accordion = button.closest('.accordion');
                accordion.classList.toggle('active');
                
                const icon = button.querySelector('i');
                icon.classList.toggle('rotate-180');
                
                const content = accordion.querySelector('.accordion-content');
                if (accordion.classList.contains('active')) {
                    content.style.maxHeight = content.scrollHeight + 'px';
                } else {
                    content.style.maxHeight = '0';
                }
            });
        });
        
        // Connection toggle functionality
        document.querySelectorAll('[role="group"] button').forEach(button => {
            button.addEventListener('click', () => {
                // Remove orange background from all buttons
                document.querySelectorAll('[role="group"] button').forEach(btn => {
                    btn.classList.remove('bg-orange-500');
                    btn.classList.add('bg-blue-500');
                });
                
                // Add orange background to clicked button
                button.classList.remove('bg-blue-500');
                button.classList.add('bg-orange-500');
            });
        });
    </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=OneIPTV/oneiptv" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>