File size: 21,994 Bytes
c034037
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>RedTube Clone</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>
        .video-thumbnail {
            transition: transform 0.3s ease;
        }
        .video-thumbnail:hover {
            transform: scale(1.03);
        }
        .duration-badge {
            background-color: rgba(0, 0, 0, 0.7);
        }
        .premium-badge {
            background-color: #ff0000;
        }
        .nav-link:hover {
            color: #ff0000;
        }
        .search-bar:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.3);
        }
        .category-tag:hover {
            background-color: #ff0000;
            color: white;
        }
        .video-player {
            background-color: #000;
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff0000;
            border-radius: 4px;
        }
    </style>
</head>
<body class="bg-gray-100 text-gray-800">
    <!-- Header -->
    <header class="bg-white shadow-md sticky top-0 z-50">
        <div class="container mx-auto px-4 py-3 flex items-center justify-between">
            <!-- Logo -->
            <div class="flex items-center">
                <a href="#" class="text-2xl font-bold text-red-600 flex items-center">
                    <i class="fas fa-play-circle mr-2"></i>
                    <span>RedTube</span>
                </a>
            </div>

            <!-- Search Bar -->
            <div class="hidden md:flex flex-1 mx-8">
                <div class="relative w-full">
                    <input type="text" placeholder="Search videos..." 
                           class="w-full py-2 px-4 border border-gray-300 rounded-full search-bar focus:border-red-500">
                    <button class="absolute right-0 top-0 h-full px-4 text-gray-500 hover:text-red-500">
                        <i class="fas fa-search"></i>
                    </button>
                </div>
            </div>

            <!-- User Controls -->
            <div class="flex items-center space-x-4">
                <button class="hidden md:block px-4 py-2 bg-red-600 text-white rounded-full hover:bg-red-700 transition">
                    <i class="fas fa-upload mr-2"></i> Upload
                </button>
                <button class="hidden md:block px-4 py-2 border border-gray-300 rounded-full hover:bg-gray-100 transition">
                    <i class="fas fa-user-plus mr-2"></i> Sign Up
                </button>
                <button class="px-3 py-1 text-gray-700 hover:text-red-600">
                    <i class="fas fa-bell text-xl"></i>
                </button>
                <button class="px-3 py-1 text-gray-700 hover:text-red-600">
                    <i class="fas fa-user-circle text-xl"></i>
                </button>
                <button class="md:hidden px-3 py-1 text-gray-700 hover:text-red-600">
                    <i class="fas fa-bars text-xl"></i>
                </button>
            </div>
        </div>
    </header>

    <!-- Main Content -->
    <main class="container mx-auto px-4 py-6">
        <!-- Video Player Section -->
        <section class="mb-8">
            <div class="video-player rounded-lg overflow-hidden shadow-lg">
                <div class="aspect-w-16 aspect-h-9 bg-black">
                    <div class="w-full h-96 flex items-center justify-center relative">
                        <div class="absolute inset-0 flex items-center justify-center">
                            <i class="fas fa-play-circle text-6xl text-red-600 opacity-70"></i>
                        </div>
                        <img src="https://via.placeholder.com/1280x720" alt="Video thumbnail" class="w-full h-full object-cover">
                    </div>
                </div>
                <div class="bg-white p-4">
                    <h1 class="text-2xl font-bold mb-2">Hot amateur couple having passionate sex</h1>
                    <div class="flex items-center justify-between mb-4">
                        <div class="flex items-center">
                            <span class="text-gray-600 mr-4"><i class="fas fa-eye mr-1"></i> 1.2M views</span>
                            <span class="text-gray-600 mr-4"><i class="fas fa-thumbs-up mr-1"></i> 24K</span>
                            <span class="text-gray-600"><i class="fas fa-comment mr-1"></i> 843</span>
                        </div>
                        <div class="flex items-center">
                            <button class="px-3 py-1 bg-gray-200 rounded-full mr-2 hover:bg-gray-300">
                                <i class="fas fa-share mr-1"></i> Share
                            </button>
                            <button class="px-3 py-1 bg-gray-200 rounded-full hover:bg-gray-300">
                                <i class="fas fa-ellipsis-h"></i>
                            </button>
                        </div>
                    </div>
                    <div class="flex items-center mb-4">
                        <img src="https://via.placeholder.com/50" alt="Channel" class="w-10 h-10 rounded-full mr-3">
                        <div>
                            <h3 class="font-semibold">Amateur Couple</h3>
                            <p class="text-sm text-gray-600">1.5M subscribers</p>
                        </div>
                        <button class="ml-auto px-4 py-2 bg-red-600 text-white rounded-full hover:bg-red-700">
                            Subscribe
                        </button>
                    </div>
                    <div class="bg-gray-100 p-3 rounded-lg">
                        <p class="text-gray-800">Published on May 15, 2023</p>
                        <p class="mt-2">Watch this hot amateur couple as they explore each other's bodies in this passionate lovemaking session. Full video available for premium members.</p>
                    </div>
                </div>
            </div>
        </section>

        <!-- Related Videos -->
        <section>
            <div class="flex items-center justify-between mb-6">
                <h2 class="text-xl font-bold">Related Videos</h2>
                <div class="flex space-x-2">
                    <button class="px-3 py-1 bg-gray-200 rounded-full hover:bg-gray-300">
                        <i class="fas fa-filter mr-1"></i> Filter
                    </button>
                    <button class="px-3 py-1 bg-gray-200 rounded-full hover:bg-gray-300">
                        <i class="fas fa-sort mr-1"></i> Sort
                    </button>
                </div>
            </div>

            <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
                <!-- Video Card 1 -->
                <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
                    <div class="relative">
                        <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
                        <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">12:34</span>
                        <span class="premium-badge absolute top-2 left-2 text-white text-xs px-2 py-1 rounded">PREMIUM</span>
                    </div>
                    <div class="p-3">
                        <div class="flex">
                            <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
                            <div>
                                <h3 class="font-semibold text-sm line-clamp-2">Busty blonde gets fucked hard in the kitchen</h3>
                                <p class="text-gray-600 text-xs">Hot Amateurs</p>
                                <p class="text-gray-600 text-xs">1.2M views • 3 days ago</p>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Video Card 2 -->
                <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
                    <div class="relative">
                        <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
                        <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">8:21</span>
                    </div>
                    <div class="p-3">
                        <div class="flex">
                            <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
                            <div>
                                <h3 class="font-semibold text-sm line-clamp-2">Step sister caught masturbating and fucked</h3>
                                <p class="text-gray-600 text-xs">Family Strokes</p>
                                <p class="text-gray-600 text-xs">2.7M views • 1 week ago</p>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Video Card 3 -->
                <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
                    <div class="relative">
                        <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
                        <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">25:14</span>
                        <span class="premium-badge absolute top-2 left-2 text-white text-xs px-2 py-1 rounded">PREMIUM</span>
                    </div>
                    <div class="p-3">
                        <div class="flex">
                            <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
                            <div>
                                <h3 class="font-semibold text-sm line-clamp-2">Lesbian threesome with big tits and toys</h3>
                                <p class="text-gray-600 text-xs">Girls Way</p>
                                <p class="text-gray-600 text-xs">850K views • 2 days ago</p>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Video Card 4 -->
                <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
                    <div class="relative">
                        <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
                        <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">18:07</span>
                    </div>
                    <div class="p-3">
                        <div class="flex">
                            <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
                            <div>
                                <h3 class="font-semibold text-sm line-clamp-2">Massive cock destroys tight pussy in doggy</h3>
                                <p class="text-gray-600 text-xs">BBC Paradise</p>
                                <p class="text-gray-600 text-xs">1.8M views • 5 days ago</p>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Video Card 5 -->
                <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
                    <div class="relative">
                        <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
                        <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">15:42</span>
                    </div>
                    <div class="p-3">
                        <div class="flex">
                            <img src="https://via.placeholder.com/40"alt="Channel" class="w-10 h-10 rounded-full mr-3">
                            <div>
                                <h3 class="font-semibold text-sm line-clamp-2">MILF teacher seduces young student after class</h3>
                                <p class="text-gray-600 text-xs">Moms Teach Sex</p>
                                <p class="text-gray-600 text-xs">3.1M views • 2 weeks ago</p>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Video Card 6 -->
                <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
                    <div class="relative">
                        <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
                        <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">22:18</span>
                        <span class="premium-badge absolute top-2 left-2 text-white text-xs px-2 py-1 rounded">PREMIUM</span>
                    </div>
                    <div class="p-3">
                        <div class="flex">
                            <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
                            <div>
                                <h3 class="font-semibold text-sm line-clamp-2">Hardcore anal with screaming orgasm</h3>
                                <p class="text-gray-600 text-xs">Anal Adventures</p>
                                <p class="text-gray-600 text-xs">1.5M views • 4 days ago</p>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Video Card 7 -->
                <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
                    <div class="relative">
                        <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
                        <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">9:56</span>
                    </div>
                    <div class="p-3">
                        <div class="flex">
                            <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
                            <div>
                                <h3 class="font-semibold text-sm line-clamp-2">Public flashing and outdoor sex with stranger</h3>
                                <p class="text-gray-600 text-xs">Public Agent</p>
                                <p class="text-gray-600 text-xs">2.3M views • 1 week ago</p>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Video Card 8 -->
                <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
                    <div class="relative">
                        <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
                        <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">30:45</span>
                    </div>
                    <div class="p-3">
                        <div class="flex">
                            <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
                            <div>
                                <h3 class="font-semibold text-sm line-clamp-2">VR Porn experience with multiple positions</h3>
                                <p class="text-gray-600 text-xs">Virtual Real Porn</p>
                                <p class="text-gray-600 text-xs">980K views • 3 days ago</p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </section>
    </main>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white py-8">
        <div class="container mx-auto px-4">
            <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
                <div>
                    <h3 class="text-xl font-bold mb-4">RedTube</h3>
                    <p class="text-gray-400 mb-4">The best free porn videos on the internet.</p>
                    <div class="flex space-x-4">
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
                    </div>
                </div>
                <div>
                    <h4 class="font-semibold mb-4">Categories</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Amateur</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Anal</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Asian</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">BBW</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Big Tits</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-semibold mb-4">Legal</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">DMCA</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">2257 Statement</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Content Removal</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-semibold mb-4">Help</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Contact Us</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Premium Membership</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Advertise</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Webmasters</a></li>
                    </ul>
                </div>
            </div>
            <div class="border-t border-gray-800 mt-8 pt-6 text-center text-gray-500 text-sm">
                <p>© 2023 RedTube. All rights reserved. All models are 18+ years old.</p>
            </div>
        </div>
    </footer>

    <script>
        // Simple JavaScript for demonstration
        document.addEventListener('DOMContentLoaded', function() {
            // Mobile menu toggle would go here
            // Video player controls would go here
            
            // Example: Add click event to video thumbnails
            const videoThumbnails = document.querySelectorAll('.video-thumbnail');
            videoThumbnails.forEach(thumbnail => {
                thumbnail.addEventListener('click', function() {
                    // In a real app, this would load the selected video
                    alert('Loading video...');
                });
            });
            
            // Example: Search functionality
            const searchInput = document.querySelector('.search-bar');
            const searchButton = document.querySelector('.search-bar + button');
            
            function performSearch() {
                const query = searchInput.value.trim();
                if (query) {
                    alert(`Searching for: ${query}`);
                    // In a real app, this would trigger a search request
                }
            }
            
            searchButton.addEventListener('click', performSearch);
            searchInput.addEventListener('keypress', function(e) {
                if (e.key === 'Enter') {
                    performSearch();
                }
            });
        });
    </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=MattGPT/redtube" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>