File size: 13,292 Bytes
d45d4f1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9552957
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Epic Roblox Adventure | Play Now!</title>
    <link rel="icon" type="image/x-icon" href="https://www.roblox.com/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
    <style>
        .hero-gradient {
            background: linear-gradient(135deg, #ff4d4d 0%, #f9cb28 100%);
        }
        .game-card {
            transition: all 0.3s ease;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
    </style>
</head>
<body class="bg-gray-900 text-white font-sans">
    <!-- Navigation -->
    <nav class="fixed w-full bg-gray-900 bg-opacity-90 z-50">
        <div class="container mx-auto px-6 py-4">
            <div class="flex items-center justify-between">
                <div class="flex items-center">
                    <i data-feather="box" class="text-red-500 mr-2"></i>
                    <span class="text-xl font-bold">Epic Roblox Adventure</span>
                </div>
                <div class="hidden md:flex space-x-8">
                    <a href="#about" class="hover:text-red-400 transition">About</a>
                    <a href="#features" class="hover:text-red-400 transition">Features</a>
                    <a href="#screenshots" class="hover:text-red-400 transition">Screenshots</a>
                    <a href="#play" class="hover:text-red-400 transition">Play Now</a>
                </div>
                <div class="md:hidden">
                    <button id="menu-btn" class="focus:outline-none">
                        <i data-feather="menu"></i>
                    </button>
                </div>
            </div>
        </div>
    </nav>

    <!-- Mobile Menu -->
    <div id="mobile-menu" class="hidden fixed inset-0 bg-gray-900 bg-opacity-95 z-40 pt-20">
        <div class="flex flex-col items-center space-y-8 text-xl py-10">
            <a href="#about" class="hover:text-red-400 transition">About</a>
            <a href="#features" class="hover:text-red-400 transition">Features</a>
            <a href="#screenshots" class="hover:text-red-400 transition">Screenshots</a>
            <a href="#play" class="hover:text-red-400 transition">Play Now</a>
        </div>
    </div>

    <!-- Hero Section -->
    <section class="hero-gradient min-h-screen flex items-center pt-20">
        <div class="container mx-auto px-6 py-20">
            <div class="flex flex-col md:flex-row items-center">
                <div class="md:w-1/2 mb-10 md:mb-0" data-aos="fade-right">
                    <h1 class="text-5xl md:text-6xl font-bold mb-6">Epic Roblox Adventure</h1>
                    <p class="text-xl mb-8">Join millions of players in this exciting new world full of challenges, treasures, and endless fun!</p>
                    <a href="#play" class="bg-white text-red-500 font-bold px-8 py-4 rounded-full hover:bg-gray-100 transition duration-300 inline-block pulse-animation">
                        Play Now <i data-feather="arrow-right" class="inline ml-2"></i>
                    </a>
                </div>
                <div class="md:w-1/2" data-aos="fade-left">
                    <img src="https://via.placeholder.com/600x400/ff4d4d/ffffff?text=Game+Preview" alt="Game Preview" class="rounded-lg shadow-2xl border-4 border-white">
                </div>
            </div>
        </div>
    </section>

    <!-- About Section -->
    <section id="about" class="py-20 bg-gray-800">
        <div class="container mx-auto px-6">
            <h2 class="text-4xl font-bold text-center mb-16" data-aos="fade-up">About The Game</h2>
            <div class="flex flex-col md:flex-row items-center">
                <div class="md:w-1/2 mb-10 md:mb-0" data-aos="fade-right">
                    <img src="https://via.placeholder.com/500x350/f9cb28/ffffff?text=Gameplay" alt="Gameplay" class="rounded-lg shadow-xl">
                </div>
                <div class="md:w-1/2 md:pl-12" data-aos="fade-left">
                    <p class="text-lg mb-6">Epic Roblox Adventure is a thrilling multiplayer experience where you can explore vast worlds, complete challenging quests, and collect rare items with your friends.</p>
                    <p class="text-lg mb-6">Created by a passionate team of developers, this game offers endless hours of entertainment with regular updates and new content.</p>
                    <div class="flex items-center space-x-4">
                        <div class="flex items-center">
                            <i data-feather="users" class="text-red-500 mr-2"></i>
                            <span>10M+ Players</span>
                        </div>
                        <div class="flex items-center">
                            <i data-feather="star" class="text-yellow-400 mr-2"></i>
                            <span>4.9/5 Rating</span>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section id="features" class="py-20 bg-gray-900">
        <div class="container mx-auto px-6">
            <h2 class="text-4xl font-bold text-center mb-16" data-aos="fade-up">Game Features</h2>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <!-- Feature 1 -->
                <div class="game-card bg-gray-800 p-8 rounded-xl" data-aos="fade-up" data-aos-delay="100">
                    <div class="text-red-500 mb-4">
                        <i data-feather="compass" class="w-10 h-10"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">Open World</h3>
                    <p class="text-gray-300">Explore vast landscapes with hidden secrets and treasures waiting to be discovered.</p>
                </div>
                
                <!-- Feature 2 -->
                <div class="game-card bg-gray-800 p-8 rounded-xl" data-aos="fade-up" data-aos-delay="200">
                    <div class="text-yellow-400 mb-4">
                        <i data-feather="users" class="w-10 h-10"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">Multiplayer</h3>
                    <p class="text-gray-300">Team up with friends or compete against others in exciting challenges and events.</p>
                </div>
                
                <!-- Feature 3 -->
                <div class="game-card bg-gray-800 p-8 rounded-xl" data-aos="fade-up" data-aos-delay="300">
                    <div class="text-blue-400 mb-4">
                        <i data-feather="award" class="w-10 h-10"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">Customization</h3>
                    <p class="text-gray-300">Personalize your character with unique outfits, weapons, and accessories.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Screenshots Section -->
    <section id="screenshots" class="py-20 bg-gray-800">
        <div class="container mx-auto px-6">
            <h2 class="text-4xl font-bold text-center mb-16" data-aos="fade-up">Screenshots</h2>
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
                <div data-aos="fade-up" data-aos-delay="100">
                    <img src="https://via.placeholder.com/600x400/ff4d4d/ffffff?text=Game+Screenshot+1" alt="Screenshot 1" class="rounded-lg shadow-xl w-full h-auto">
                </div>
                <div data-aos="fade-up" data-aos-delay="200">
                    <img src="https://via.placeholder.com/600x400/f9cb28/ffffff?text=Game+Screenshot+2" alt="Screenshot 2" class="rounded-lg shadow-xl w-full h-auto">
                </div>
                <div data-aos="fade-up" data-aos-delay="300">
                    <img src="https://via.placeholder.com/600x400/4d79ff/ffffff?text=Game+Screenshot+3" alt="Screenshot 3" class="rounded-lg shadow-xl w-full h-auto">
                </div>
                <div data-aos="fade-up" data-aos-delay="100">
                    <img src="https://via.placeholder.com/600x400/4dffb8/ffffff?text=Game+Screenshot+4" alt="Screenshot 4" class="rounded-lg shadow-xl w-full h-auto">
                </div>
                <div data-aos="fade-up" data-aos-delay="200">
                    <img src="https://via.placeholder.com/600x400/ff4de7/ffffff?text=Game+Screenshot+5" alt="Screenshot 5" class="rounded-lg shadow-xl w-full h-auto">
                </div>
                <div data-aos="fade-up" data-aos-delay="300">
                    <img src="https://via.placeholder.com/600x400/4d4dff/ffffff?text=Game+Screenshot+6" alt="Screenshot 6" class="rounded-lg shadow-xl w-full h-auto">
                </div>
            </div>
        </div>
    </section>

    <!-- Play Now Section -->
    <section id="play" class="py-20 bg-gray-900">
        <div class="container mx-auto px-6 text-center">
            <h2 class="text-4xl font-bold mb-8" data-aos="fade-up">Ready to Play?</h2>
            <p class="text-xl mb-12 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="100">Join the adventure today and experience the most exciting Roblox game of the year!</p>
            <a href="https://www.roblox.com/games/" target="_blank" class="bg-red-500 hover:bg-red-600 text-white font-bold px-12 py-5 rounded-full text-lg inline-block transition duration-300 pulse-animation" data-aos="fade-up" data-aos-delay="200">
                Play Now on Roblox <i data-feather="external-link" class="inline ml-2"></i>
            </a>
            <div class="mt-16" data-aos="fade-up" data-aos-delay="300">
                <h3 class="text-2xl font-bold mb-6">Follow Us</h3>
                <div class="flex justify-center space-x-6">
                    <a href="#" class="text-gray-400 hover:text-red-500 transition">
                        <i data-feather="twitter" class="w-8 h-8"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-red-500 transition">
                        <i data-feather="youtube" class="w-8 h-8"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-red-500 transition">
                        <i data-feather="instagram" class="w-8 h-8"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-red-500 transition">
                        <i data-feather="discord" class="w-8 h-8"></i>
                    </a>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-800 py-8">
        <div class="container mx-auto px-6 text-center">
            <p>© 2023 Epic Roblox Adventure. All rights reserved.</p>
            <p class="text-gray-400 mt-2">Not affiliated with Roblox Corporation.</p>
        </div>
    </footer>

    <script>
        // Initialize AOS animations
        AOS.init({
            duration: 800,
            easing: 'ease-in-out',
            once: true
        });

        // Mobile menu toggle
        const menuBtn = document.getElementById('menu-btn');
        const mobileMenu = document.getElementById('mobile-menu');
        
        menuBtn.addEventListener('click', () => {
            mobileMenu.classList.toggle('hidden');
            const icon = menuBtn.querySelector('i');
            if (mobileMenu.classList.contains('hidden')) {
                feather.replace();
            } else {
                icon.setAttribute('data-feather', 'x');
                feather.replace();
            }
        });

        // Close mobile menu when clicking a link
        const mobileLinks = document.querySelectorAll('#mobile-menu a');
        mobileLinks.forEach(link => {
            link.addEventListener('click', () => {
                mobileMenu.classList.add('hidden');
                const icon = menuBtn.querySelector('i');
                icon.setAttribute('data-feather', 'menu');
                feather.replace();
            });
        });

        // Smooth scrolling for all links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                document.querySelector(this.getAttribute('href')).scrollIntoView({
                    behavior: 'smooth'
                });
            });
        });
    </script>
    <script>feather.replace();</script>
</body>
</html>