File size: 15,935 Bytes
7bf0756
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Mabar Dead Rail Roblox | Community</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>
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0f172a;
            color: #f8fafc;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
            }
        }
        
        .train-track {
            position: relative;
            overflow: hidden;
        }
        
        .train-track::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: repeating-linear-gradient(
                to right,
                #cbd5e1,
                #cbd5e1 20px,
                transparent 20px,
                transparent 40px
            );
            transform: translateY(-50%);
        }
    </style>
</head>
<body class="min-h-screen">
    <!-- Header -->
    <header class="gradient-bg shadow-lg">
        <div class="container mx-auto px-4 py-6">
            <div class="flex flex-col md:flex-row items-center justify-between">
                <div class="flex items-center mb-4 md:mb-0">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-12 h-12 text-blue-400">
                        <path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z"/>
                    </svg>
                    <div class="ml-3">
                        <h1 class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">Mabar Dead Rail</h1>
                        <p class="text-sm text-gray-300">Roblox Community</p>
                    </div>
                </div>
                
                <nav class="flex space-x-6">
                    <a href="#home" class="text-blue-400 hover:text-blue-300 font-medium">Home</a>
                    <a href="#about" class="text-gray-300 hover:text-blue-300 font-medium">About</a>
                    <a href="#join" class="text-gray-300 hover:text-blue-300 font-medium">Join Us</a>
                </nav>
            </div>
        </div>
    </header>

    <!-- Hero Section -->
    <section id="home" class="py-16 train-track relative">
        <div class="container mx-auto px-4">
            <div class="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">Let's Play <span class="text-blue-400">Dead Rail</span> Together!</h2>
                    <p class="text-lg text-gray-300 mb-6">Join our community of passionate Roblox Dead Rail players. Experience the thrill of train survival with friends!</p>
                    
                    <div class="flex flex-wrap gap-4">
                        <a href="#join" class="px-6 py-3 bg-blue-600 hover:bg-blue-700 rounded-lg font-medium flex items-center pulse-animation">
                            <i class="fas fa-users mr-2"></i> Join Now
                        </a>
                        <a href="#about" class="px-6 py-3 bg-gray-700 hover:bg-gray-600 rounded-lg font-medium flex items-center">
                            <i class="fas fa-info-circle mr-2"></i> Learn More
                        </a>
                    </div>
                </div>
                
                <div class="md:w-1/2 flex justify-center">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" class="w-64 h-64 text-blue-400">
                        <path fill="currentColor" d="M352 0c-17.7 0-32 14.3-32 32v96H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32H48c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h16v32c0 17.7 14.3 32 32 32s32-14.3 32-32V416H352v32c0 17.7 14.3 32 32 32s32-14.3 32-32V416h16c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48h-48V224h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H384V32c0-17.7-14.3-32-32-32zM96 224v64H48v96h48v-96h80v96h48V288H176V224H96zm288 0v64h-80v96h80v-96h48v96h48V288h-48V224H384z"/>
                    </svg>
                </div>
            </div>
        </div>
    </section>

    <!-- About Section -->
    <section id="about" class="py-16 bg-gray-800">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12">About <span class="text-blue-400">Dead Rail</span></h2>
            
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="bg-gray-700 p-6 rounded-xl card-hover">
                    <div class="text-blue-400 text-4xl mb-4">
                        <i class="fas fa-train"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">Train Survival</h3>
                    <p class="text-gray-300">Navigate through dangerous landscapes aboard a train, managing resources and avoiding hazards.</p>
                </div>
                
                <div class="bg-gray-700 p-6 rounded-xl card-hover">
                    <div class="text-blue-400 text-4xl mb-4">
                        <i class="fas fa-users"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">Multiplayer Experience</h3>
                    <p class="text-gray-300">Team up with friends or compete against others in this thrilling survival experience.</p>
                </div>
                
                <div class="bg-gray-700 p-6 rounded-xl card-hover">
                    <div class="text-blue-400 text-4xl mb-4">
                        <i class="fas fa-route"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">Dynamic Routes</h3>
                    <p class="text-gray-300">Every journey is different with randomly generated routes and challenges.</p>
                </div>
            </div>
            
            <div class="mt-12 bg-gray-700 rounded-xl p-6 max-w-4xl mx-auto">
                <h3 class="text-2xl font-semibold mb-4 text-center">Why Join Our Community?</h3>
                <p class="text-gray-300 text-center">
                    Our Mabar Dead Rail community is the perfect place to find teammates, share strategies, 
                    and participate in exclusive events. Whether you're a beginner or an experienced player, 
                    you'll find a welcoming group ready to play together!
                </p>
            </div>
        </div>
    </section>

    <!-- Join Section -->
    <section id="join" class="py-16 gradient-bg">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12">Join Our <span class="text-blue-400">Community</span></h2>
            
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
                <!-- Roblox Server -->
                <div class="bg-gray-800 p-6 rounded-xl card-hover flex flex-col items-center text-center">
                    <div class="w-20 h-20 mb-4 bg-blue-600 rounded-full flex items-center justify-center">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-10 h-10 text-white">
                            <path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z"/>
                        </svg>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">Roblox Server</h3>
                    <p class="text-gray-300 mb-4">Join our official Dead Rail server on Roblox</p>
                    <a href="https://www.roblox.com/games/" target="_blank" class="mt-auto px-6 py-2 bg-blue-600 hover:bg-blue-700 rounded-lg font-medium">
                        Join Server
                    </a>
                </div>
                
                <!-- WhatsApp Group -->
                <div class="bg-gray-800 p-6 rounded-xl card-hover flex flex-col items-center text-center">
                    <div class="w-20 h-20 mb-4 bg-green-600 rounded-full flex items-center justify-center">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-10 h-10 text-white">
                            <path fill="currentColor" d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/>
                        </svg>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">WhatsApp Group</h3>
                    <p class="text-gray-300 mb-4">Chat with our community members</p>
                    <a href="https://wa.me/" target="_blank" class="mt-auto px-6 py-2 bg-green-600 hover:bg-green-700 rounded-lg font-medium">
                        Join Group
                    </a>
                </div>
                
                <!-- Discord Server -->
                <div class="bg-gray-800 p-6 rounded-xl card-hover flex flex-col items-center text-center">
                    <div class="w-20 h-20 mb-4 bg-indigo-600 rounded-full flex items-center justify-center">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-10 h-10 text-white">
                            <path fill="currentColor" d="M19.54 0c1.356 0 2.46 1.104 2.46 2.472v19.056c0 1.368-1.104 2.472-2.46 2.472H16.5v-5.851c1.241-.543 2.148-1.69 2.148-3.02 0-1.812-1.511-3.281-3.375-3.281-1.864 0-3.375 1.469-3.375 3.281 0 1.33.907 2.477 2.148 3.02V24H4.46C3.104 24 2 22.896 2 21.528V2.472C2 1.104 3.104 0 4.46 0h15.08zm-6.948 12.928c-.931 0-1.685.734-1.685 1.64 0 .905.754 1.64 1.685 1.64.931 0 1.685-.735 1.685-1.64 0-.906-.754-1.64-1.685-1.64zm-5.315 0c-.931 0-1.685.734-1.685 1.64 0 .905.754 1.64 1.685 1.64.931 0 1.685-.735 1.685-1.64 0-.906-.754-1.64-1.685-1.64zm10.63-8.4c-.465 0-.842.368-.842.823v9.887c0 .455.377.823.842.823h3.232V5.151h-3.232z"/>
                        </svg>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">Discord Server</h3>
                    <p class="text-gray-300 mb-4">Join our active Discord community</p>
                    <a href="https://discord.gg/" target="_blank" class="mt-auto px-6 py-2 bg-indigo-600 hover:bg-indigo-700 rounded-lg font-medium">
                        Join Discord
                    </a>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 py-8">
        <div class="container mx-auto px-4">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="flex items-center mb-4 md:mb-0">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-8 h-8 text-blue-400">
                        <path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z"/>
                    </svg>
                    <div class="ml-2">
                        <h3 class="text-lg font-bold">Mabar Dead Rail</h3>
                        <p class="text-xs text-gray-400">Roblox Community</p>
                    </div>
                </div>
                
                <div class="flex space-x-6">
                    <a href="#" class="text-gray-400 hover:text-blue-400">
                        <i class="fab fa-twitter text-xl"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-blue-400">
                        <i class="fab fa-instagram text-xl"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-blue-400">
                        <i class="fab fa-youtube text-xl"></i>
                    </a>
                </div>
            </div>
            
            <div class="border-t border-gray-800 mt-6 pt-6 text-center text-gray-400 text-sm">
                <p>© 2023 Mabar Dead Rail Community. All rights reserved.</p>
                <p class="mt-2">Not affiliated with Roblox Corporation.</p>
            </div>
        </div>
    </footer>

    <script>
        // Smooth scrolling for anchor links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                
                document.querySelector(this.getAttribute('href')).scrollIntoView({
                    behavior: 'smooth'
                });
            });
        });
        
        // Animation for train icon
        const trainIcon = document.querySelector('.train-track svg');
        let pos = 0;
        let direction = 1;
        
        function animateTrain() {
            pos += direction * 0.5;
            
            if (pos > 20 || pos < -20) {
                direction *= -1;
            }
            
            trainIcon.style.transform = `translateX(${pos}px)`;
            requestAnimationFrame(animateTrain);
        }
        
        animateTrain();
    </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=XBotz/dead-trail" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>