JOHNKARLO commited on
Commit
29549bb
·
verified ·
1 Parent(s): b578d4f

A superhero with massive muscles, but his cape keeps getting caught on everything — he’s stuck in a tree, tangled in a phone cord, and trying to lift a giant banana while looking confused."

Browse files
Files changed (3) hide show
  1. README.md +8 -4
  2. clumsy-colossus.html +241 -0
  3. index.html +364 -18
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Clumsy Colossus Chronicles
3
- emoji: 🚀
4
- colorFrom: blue
5
  colorTo: green
 
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
1
  ---
2
+ title: Clumsy Colossus Chronicles 🦸‍♂️
3
+ colorFrom: gray
 
4
  colorTo: green
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
14
+
clumsy-colossus.html ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Clumsy Colossus | TitansClash</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Bangers&family=Poppins:wght@400;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background-color: #0f172a;
15
+ color: white;
16
+ }
17
+
18
+ .hero-title {
19
+ font-family: 'Bangers', cursive;
20
+ letter-spacing: 2px;
21
+ text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
22
+ }
23
+
24
+ .character-card {
25
+ transition: all 0.3s ease;
26
+ background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
27
+ }
28
+
29
+ .mishap-container {
30
+ perspective: 1000px;
31
+ }
32
+
33
+ .mishap-card {
34
+ transform-style: preserve-3d;
35
+ transition: transform 0.5s;
36
+ }
37
+
38
+ .mishap-card:hover {
39
+ transform: rotateY(10deg) rotateX(5deg);
40
+ }
41
+
42
+ @keyframes wiggle {
43
+ 0%, 100% { transform: rotate(-5deg); }
44
+ 50% { transform: rotate(5deg); }
45
+ }
46
+
47
+ .banana {
48
+ animation: wiggle 2s infinite;
49
+ }
50
+ </style>
51
+ </head>
52
+ <body class="min-h-screen">
53
+ <!-- Navigation -->
54
+ <nav class="bg-gray-900 bg-opacity-90 backdrop-blur-sm fixed w-full z-50">
55
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
56
+ <div class="flex items-center justify-between h-16">
57
+ <div class="flex items-center">
58
+ <div class="flex-shrink-0">
59
+ <a href="index.html" class="text-red-500 font-bold text-xl">TitansClash</a>
60
+ </div>
61
+ </div>
62
+ <div class="hidden md:block">
63
+ <div class="ml-10 flex items-baseline space-x-4">
64
+ <a href="index.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
65
+ <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Characters</a>
66
+ <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Battle</a>
67
+ <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">About</a>
68
+ </div>
69
+ </div>
70
+ </div>
71
+ </div>
72
+ </nav>
73
+
74
+ <!-- Hero Section -->
75
+ <header class="relative pt-32 pb-20">
76
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
77
+ <h1 class="hero-title text-5xl md:text-7xl mb-6 text-yellow-500">
78
+ CLUMSY COLOSSUS
79
+ </h1>
80
+ <p class="text-xl md:text-2xl text-gray-200 max-w-3xl mx-auto mb-8">
81
+ All the strength in the universe... and the coordination of a baby giraffe.
82
+ </p>
83
+ </div>
84
+ </header>
85
+
86
+ <!-- Character Section -->
87
+ <section class="py-12 bg-gray-900">
88
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
89
+ <div class="character-card rounded-xl overflow-hidden shadow-2xl">
90
+ <div class="flex flex-col lg:flex-row">
91
+ <div class="lg:w-1/2 relative">
92
+ <img src="http://static.photos/people/1200x630/3" alt="Clumsy Colossus" class="w-full h-full object-cover">
93
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-6">
94
+ <h2 class="text-3xl font-bold text-white">Stats</h2>
95
+ <div class="grid grid-cols-2 gap-4 mt-4">
96
+ <div>
97
+ <h3 class="text-yellow-400 font-bold">Strength</h3>
98
+ <div class="w-full bg-gray-700 rounded-full h-2.5 mt-2">
99
+ <div class="bg-yellow-500 h-2.5 rounded-full" style="width: 100%"></div>
100
+ </div>
101
+ </div>
102
+ <div>
103
+ <h3 class="text-yellow-400 font-bold">Agility</h3>
104
+ <div class="w-full bg-gray-700 rounded-full h-2.5 mt-2">
105
+ <div class="bg-yellow-500 h-2.5 rounded-full" style="width: 15%"></div>
106
+ </div>
107
+ </div>
108
+ <div>
109
+ <h3 class="text-yellow-400 font-bold">Intelligence</h3>
110
+ <div class="w-full bg-gray-700 rounded-full h-2.5 mt-2">
111
+ <div class="bg-yellow-500 h-2.5 rounded-full" style="width: 60%"></div>
112
+ </div>
113
+ </div>
114
+ <div>
115
+ <h3 class="text-yellow-400 font-bold">Luck</h3>
116
+ <div class="w-full bg-gray-700 rounded-full h-2.5 mt-2">
117
+ <div class="bg-yellow-500 h-2.5 rounded-full" style="width: 5%"></div>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </div>
122
+ </div>
123
+ <div class="lg:w-1/2 p-8">
124
+ <h3 class="text-2xl font-bold mb-4 text-white">Bio</h3>
125
+ <p class="text-gray-300 mb-6">
126
+ Born with the strength of a thousand suns but the grace of a bull in a china shop, Clumsy Colossus tries his best to be a hero despite his constant mishaps. His cape has caused more property damage than any supervillain!
127
+ </p>
128
+ <h3 class="text-2xl font-bold mb-4 text-white">Powers</h3>
129
+ <div class="flex flex-wrap gap-2 mb-6">
130
+ <span class="bg-yellow-800 text-white px-3 py-1 rounded-full">Super Strength</span>
131
+ <span class="bg-yellow-800 text-white px-3 py-1 rounded-full">Near-Invulnerability</span>
132
+ <span class="bg-yellow-800 text-white px-3 py-1 rounded-full">Accidental Destruction</span>
133
+ <span class="bg-yellow-800 text-white px-3 py-1 rounded-full">Cape Malfunction</span>
134
+ </div>
135
+ <h3 class="text-2xl font-bold mb-4 text-white">Weaknesses</h3>
136
+ <div class="flex flex-wrap gap-2">
137
+ <span class="bg-red-800 text-white px-3 py-1 rounded-full">Doorknobs</span>
138
+ <span class="bg-red-800 text-white px-3 py-1 rounded-full">Phone Cords</span>
139
+ <span class="bg-red-800 text-white px-3 py-1 rounded-full">Low Ceilings</span>
140
+ <span class="bg-red-800 text-white px-3 py-1 rounded-full">His Own Cape</span>
141
+ </div>
142
+ </div>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </section>
147
+
148
+ <!-- Mishaps Section -->
149
+ <section class="py-20 bg-gray-800">
150
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
151
+ <h2 class="text-3xl font-bold text-center mb-16 text-white">Classic Colossus Mishaps</h2>
152
+
153
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
154
+ <!-- Mishap 1 -->
155
+ <div class="mishap-container">
156
+ <div class="mishap-card bg-gray-900 rounded-xl overflow-hidden shadow-lg h-full">
157
+ <img src="http://static.photos/outdoor/640x360/1" alt="Stuck in tree" class="w-full h-48 object-cover">
158
+ <div class="p-6">
159
+ <h3 class="text-xl font-bold text-white mb-2">Tree Trouble</h3>
160
+ <p class="text-gray-300">
161
+ Attempting to rescue a cat, Colossus got his cape tangled in the branches. The cat rescued itself... and him.
162
+ </p>
163
+ </div>
164
+ </div>
165
+ </div>
166
+
167
+ <!-- Mishap 2 -->
168
+ <div class="mishap-container">
169
+ <div class="mishap-card bg-gray-900 rounded-xl overflow-hidden shadow-lg h-full">
170
+ <img src="http://static.photos/indoor/640x360/2" alt="Phone cord disaster" class="w-full h-48 object-cover">
171
+ <div class="p-6">
172
+ <h3 class="text-xl font-bold text-white mb-2">Phone Cord Chaos</h3>
173
+ <p class="text-gray-300">
174
+ One heroic spin and the entire office was wrapped in phone cords like a spider's web. Took hours to untangle everyone.
175
+ </p>
176
+ </div>
177
+ </div>
178
+ </div>
179
+
180
+ <!-- Mishap 3 -->
181
+ <div class="mishap-container">
182
+ <div class="mishap-card bg-gray-900 rounded-xl overflow-hidden shadow-lg h-full relative">
183
+ <div class="absolute top-4 right-4 bg-yellow-500 text-black px-2 py-1 rounded text-sm font-bold">NEW</div>
184
+ <img src="http://static.photos/food/640x360/3" alt="Banana incident" class="w-full h-48 object-cover">
185
+ <div class="p-6">
186
+ <h3 class="text-xl font-bold text-white mb-2">The Great Banana Incident</h3>
187
+ <p class="text-gray-300">
188
+ Tried to impress kids by lifting a giant banana prop... slipped on the peel and took out a billboard.
189
+ </p>
190
+ </div>
191
+ </div>
192
+ </div>
193
+ </div>
194
+ </div>
195
+ </section>
196
+
197
+ <!-- Banana Incident Focus -->
198
+ <section class="py-20 bg-gray-900">
199
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
200
+ <div class="flex flex-col lg:flex-row items-center gap-12">
201
+ <div class="lg:w-1/2">
202
+ <img src="http://static.photos/food/640x360/4" alt="Banana mishap" class="w-full rounded-xl shadow-xl banana">
203
+ </div>
204
+ <div class="lg:w-1/2">
205
+ <h2 class="text-3xl font-bold text-white mb-6">The Banana That Broke the Internet</h2>
206
+ <p class="text-gray-300 mb-4">
207
+ Colossus's most viral moment came when he attempted to lift a 500lb banana prop at a children's hospital charity event.
208
+ </p>
209
+ <p class="text-gray-300 mb-6">
210
+ The peel had other plans. Security footage shows the exact moment his foot connected with the peel, sending him careening into a "Thank You Heroes" billboard, which ironically became far more popular after its destruction.
211
+ </p>
212
+ <div class="bg-yellow-900 bg-opacity-50 p-4 rounded-lg border-l-4 border-yellow-500">
213
+ <p class="text-yellow-200 italic">
214
+ "I just wanted to make the kids smile... I didn't think bananas could be so dangerous!"
215
+ <span class="block text-right mt-2">- Clumsy Colossus</span>
216
+ </p>
217
+ </div>
218
+ </div>
219
+ </div>
220
+ </div>
221
+ </section>
222
+
223
+ <!-- Footer -->
224
+ <footer class="bg-gray-900 border-t border-gray-800">
225
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
226
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
227
+ <p class="text-gray-400 text-sm">© 2023 TitansClash. All rights reserved.</p>
228
+ <div class="flex space-x-6 mt-4 md:mt-0">
229
+ <a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
230
+ <a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
231
+ <a href="#" class="text-gray-400 hover:text-white text-sm">Contact Us</a>
232
+ </div>
233
+ </div>
234
+ </div>
235
+ </footer>
236
+
237
+ <script>
238
+ feather.replace();
239
+ </script>
240
+ </body>
241
+ </html>
index.html CHANGED
@@ -1,19 +1,365 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Clash of Titans: Iron Man vs Supergirl</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <style>
11
+ @import url('https://fonts.googleapis.com/css2?family=Bangers&family=Poppins:wght@400;700&display=swap');
12
+
13
+ body {
14
+ font-family: 'Poppins', sans-serif;
15
+ background-color: #0f172a;
16
+ color: white;
17
+ overflow-x: hidden;
18
+ }
19
+
20
+ .hero-title {
21
+ font-family: 'Bangers', cursive;
22
+ letter-spacing: 2px;
23
+ text-shadow: 0 0 10px rgba(255, 99, 71, 0.7),
24
+ 0 0 20px rgba(30, 144, 255, 0.7);
25
+ }
26
+
27
+ .character-card {
28
+ transition: all 0.3s ease;
29
+ transform-style: preserve-3d;
30
+ }
31
+
32
+ .character-card:hover {
33
+ transform: translateY(-10px) scale(1.03);
34
+ }
35
+
36
+ .ironman-bg {
37
+ background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
38
+ }
39
+
40
+ .supergirl-bg {
41
+ background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
42
+ }
43
+
44
+ .battle-arena {
45
+ background: url('http://static.photos/abstract/1200x630/42') no-repeat center center;
46
+ background-size: cover;
47
+ position: relative;
48
+ overflow: hidden;
49
+ }
50
+
51
+ .battle-arena::before {
52
+ content: '';
53
+ position: absolute;
54
+ top: 0;
55
+ left: 0;
56
+ right: 0;
57
+ bottom: 0;
58
+ background: rgba(0, 0, 0, 0.7);
59
+ z-index: 1;
60
+ }
61
+
62
+ .video-container {
63
+ position: relative;
64
+ padding-bottom: 56.25%;
65
+ height: 0;
66
+ overflow: hidden;
67
+ }
68
+
69
+ .video-container iframe {
70
+ position: absolute;
71
+ top: 0;
72
+ left: 0;
73
+ width: 100%;
74
+ height: 100%;
75
+ border: none;
76
+ }
77
+
78
+ .pulse {
79
+ animation: pulse 2s infinite;
80
+ }
81
+
82
+ @keyframes pulse {
83
+ 0% {
84
+ box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
85
+ }
86
+ 70% {
87
+ box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
88
+ }
89
+ 100% {
90
+ box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
91
+ }
92
+ }
93
+ </style>
94
+ </head>
95
+ <body class="min-h-screen">
96
+ <!-- Navigation -->
97
+ <nav class="bg-gray-900 bg-opacity-90 backdrop-blur-sm fixed w-full z-50">
98
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
99
+ <div class="flex items-center justify-between h-16">
100
+ <div class="flex items-center">
101
+ <div class="flex-shrink-0">
102
+ <span class="text-red-500 font-bold text-xl">TitansClash</span>
103
+ </div>
104
+ </div>
105
+ <div class="hidden md:block">
106
+ <div class="ml-10 flex items-baseline space-x-4">
107
+ <a href="#" class="text-white hover:text-red-400 px-3 py-2 rounded-md text-sm font-medium">Home</a>
108
+ <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Characters</a>
109
+ <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Battle</a>
110
+ <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">About</a>
111
+ <a href="clumsy-colossus.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Clumsy Colossus</a>
112
+ </div>
113
+ </div>
114
+ <div class="md:hidden">
115
+ <button class="text-gray-300 hover:text-white focus:outline-none">
116
+ <i data-feather="menu"></i>
117
+ </button>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </nav>
122
+
123
+ <!-- Hero Section -->
124
+ <header class="relative pt-24 pb-32 battle-arena">
125
+ <div class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
126
+ <h1 class="hero-title text-5xl md:text-7xl mb-6">
127
+ <span class="text-red-500">IRON MAN</span>
128
+ <span class="mx-4 text-white">VS</span>
129
+ <span class="text-blue-500">SUPERGIRL</span>
130
+ </h1>
131
+ <p class="text-xl md:text-2xl text-gray-200 max-w-3xl mx-auto mb-8">
132
+ Witness the ultimate showdown between genius billionaire playboy philanthropist and the last daughter of Krypton!
133
+ </p>
134
+ <div class="flex justify-center space-x-4">
135
+ <button class="bg-red-600 hover:bg-red-700 text-white font-bold py-3 px-6 rounded-full flex items-center pulse">
136
+ <i data-feather="play" class="mr-2"></i> Watch Battle
137
+ </button>
138
+ <button class="bg-gray-800 hover:bg-gray-700 text-white font-bold py-3 px-6 rounded-full flex items-center">
139
+ <i data-feather="info" class="mr-2"></i> Learn More
140
+ </button>
141
+ </div>
142
+ </div>
143
+ </header>
144
+
145
+ <!-- Characters Section -->
146
+ <section class="py-20 bg-gray-900">
147
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
148
+ <h2 class="text-3xl font-bold text-center mb-16 text-white">The Combatants</h2>
149
+
150
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12">
151
+ <!-- Iron Man Card -->
152
+ <div class="character-card rounded-xl overflow-hidden shadow-xl ironman-bg">
153
+ <div class="flex flex-col md:flex-row">
154
+ <div class="md:w-1/2">
155
+ <img src="http://static.photos/technology/640x360/1" alt="Iron Man" class="w-full h-full object-cover">
156
+ </div>
157
+ <div class="md:w-1/2 p-6">
158
+ <h3 class="text-2xl font-bold mb-2 text-white">Iron Man</h3>
159
+ <div class="flex items-center mb-4">
160
+ <div class="w-full bg-gray-700 rounded-full h-2.5">
161
+ <div class="bg-red-500 h-2.5 rounded-full" style="width: 85%"></div>
162
+ </div>
163
+ <span class="ml-2 text-white font-bold">85%</span>
164
+ </div>
165
+ <p class="text-gray-200 mb-4">
166
+ Genius. Billionaire. Playboy. Philanthropist. Tony Stark's brilliant mind and cutting-edge armor make him one of Earth's mightiest heroes.
167
+ </p>
168
+ <div class="flex flex-wrap gap-2">
169
+ <span class="bg-red-900 text-white text-xs px-2 py-1 rounded">Tech Genius</span>
170
+ <span class="bg-red-900 text-white text-xs px-2 py-1 rounded">Repulsor Beams</span>
171
+ <span class="bg-red-900 text-white text-xs px-2 py-1 rounded">Flight</span>
172
+ <span class="bg-red-900 text-white text-xs px-2 py-1 rounded">AI Assistance</span>
173
+ </div>
174
+ </div>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Supergirl Card -->
179
+ <div class="character-card rounded-xl overflow-hidden shadow-xl supergirl-bg">
180
+ <div class="flex flex-col md:flex-row">
181
+ <div class="md:w-1/2">
182
+ <img src="http://static.photos/people/640x360/2" alt="Supergirl" class="w-full h-full object-cover">
183
+ </div>
184
+ <div class="md:w-1/2 p-6">
185
+ <h3 class="text-2xl font-bold mb-2 text-white">Supergirl</h3>
186
+ <div class="flex items-center mb-4">
187
+ <div class="w-full bg-gray-700 rounded-full h-2.5">
188
+ <div class="bg-blue-500 h-2.5 rounded-full" style="width: 95%"></div>
189
+ </div>
190
+ <span class="ml-2 text-white font-bold">95%</span>
191
+ </div>
192
+ <p class="text-gray-200 mb-4">
193
+ Kara Zor-El, the last daughter of Krypton. With powers rivaling Superman himself, she's a force to be reckoned with.
194
+ </p>
195
+ <div class="flex flex-wrap gap-2">
196
+ <span class="bg-blue-900 text-white text-xs px-2 py-1 rounded">Super Strength</span>
197
+ <span class="bg-blue-900 text-white text-xs px-2 py-1 rounded">Heat Vision</span>
198
+ <span class="bg-blue-900 text-white text-xs px-2 py-1 rounded">Flight</span>
199
+ <span class="bg-blue-900 text-white text-xs px-2 py-1 rounded">Invulnerability</span>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </div>
204
+ </div>
205
+ </div>
206
+ </section>
207
+
208
+ <!-- Battle Preview Section -->
209
+ <section class="py-20 bg-gray-800">
210
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
211
+ <h2 class="text-3xl font-bold text-center mb-16 text-white">The Epic Battle</h2>
212
+
213
+ <div class="video-container rounded-xl overflow-hidden shadow-2xl">
214
+ <!-- Placeholder for video - in a real scenario, this would be an embedded YouTube/Vimeo video -->
215
+ <div class="w-full h-full bg-black flex items-center justify-center">
216
+ <div class="text-center">
217
+ <i data-feather="play-circle" class="w-16 h-16 text-red-500 mx-auto mb-4"></i>
218
+ <p class="text-white text-xl">Battle Video Coming Soon</p>
219
+ </div>
220
+ </div>
221
+ </div>
222
+
223
+ <div class="mt-12 grid grid-cols-1 md:grid-cols-3 gap-8">
224
+ <div class="bg-gray-900 p-6 rounded-lg">
225
+ <div class="text-red-500 mb-4">
226
+ <i data-feather="zap" class="w-8 h-8"></i>
227
+ </div>
228
+ <h3 class="text-xl font-bold text-white mb-2">High-Tech Arsenal</h3>
229
+ <p class="text-gray-300">Watch as Iron Man deploys his most advanced armor and weapons against Supergirl's raw power.</p>
230
+ </div>
231
+
232
+ <div class="bg-gray-900 p-6 rounded-lg">
233
+ <div class="text-blue-500 mb-4">
234
+ <i data-feather="shield" class="w-8 h-8"></i>
235
+ </div>
236
+ <h3 class="text-xl font-bold text-white mb-2">Kryptonian Might</h3>
237
+ <p class="text-gray-300">Supergirl demonstrates why she's one of the most powerful beings in the universe.</p>
238
+ </div>
239
+
240
+ <div class="bg-gray-900 p-6 rounded-lg">
241
+ <div class="text-yellow-500 mb-4">
242
+ <i data-feather="award" class="w-8 h-8"></i>
243
+ </div>
244
+ <h3 class="text-xl font-bold text-white mb-2">Who Will Win?</h3>
245
+ <p class="text-gray-300">The ultimate battle of brains versus brawn. Place your bets!</p>
246
+ </div>
247
+ </div>
248
+ </div>
249
+ </section>
250
+
251
+ <!-- Countdown Section -->
252
+ <section class="py-16 bg-gray-900">
253
+ <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
254
+ <h2 class="text-2xl font-bold text-white mb-6">Battle Begins In:</h2>
255
+ <div class="flex justify-center space-x-4">
256
+ <div class="bg-red-600 text-white rounded-lg p-4 w-20">
257
+ <div class="text-3xl font-bold" id="days">03</div>
258
+ <div class="text-sm">Days</div>
259
+ </div>
260
+ <div class="bg-red-600 text-white rounded-lg p-4 w-20">
261
+ <div class="text-3xl font-bold" id="hours">12</div>
262
+ <div class="text-sm">Hours</div>
263
+ </div>
264
+ <div class="bg-red-600 text-white rounded-lg p-4 w-20">
265
+ <div class="text-3xl font-bold" id="minutes">45</div>
266
+ <div class="text-sm">Minutes</div>
267
+ </div>
268
+ <div class="bg-red-600 text-white rounded-lg p-4 w-20">
269
+ <div class="text-3xl font-bold" id="seconds">30</div>
270
+ <div class="text-sm">Seconds</div>
271
+ </div>
272
+ </div>
273
+ <button class="mt-8 bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-full flex items-center mx-auto">
274
+ <i data-feather="bell" class="mr-2"></i> Notify Me
275
+ </button>
276
+ </div>
277
+ </section>
278
+
279
+ <!-- Footer -->
280
+ <footer class="bg-gray-900 border-t border-gray-800">
281
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
282
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
283
+ <div>
284
+ <h3 class="text-white font-bold text-lg mb-4">TitansClash</h3>
285
+ <p class="text-gray-400">
286
+ Bringing you the most epic superhero battles from across the multiverse.
287
+ </p>
288
+ </div>
289
+ <div>
290
+ <h3 class="text-white font-bold text-lg mb-4">Quick Links</h3>
291
+ <ul class="space-y-2">
292
+ <li><a href="#" class="text-gray-400 hover:text-white">Home</a></li>
293
+ <li><a href="#" class="text-gray-400 hover:text-white">Characters</a></li>
294
+ <li><a href="#" class="text-gray-400 hover:text-white">Battles</a></li>
295
+ <li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
296
+ <li><a href="clumsy-colossus.html" class="text-gray-400 hover:text-white">Clumsy Colossus</a></li>
297
+ </ul>
298
+ </div>
299
+ <div>
300
+ <h3 class="text-white font-bold text-lg mb-4">Follow Us</h3>
301
+ <div class="flex space-x-4">
302
+ <a href="#" class="text-gray-400 hover:text-white">
303
+ <i data-feather="facebook"></i>
304
+ </a>
305
+ <a href="#" class="text-gray-400 hover:text-white">
306
+ <i data-feather="twitter"></i>
307
+ </a>
308
+ <a href="#" class="text-gray-400 hover:text-white">
309
+ <i data-feather="instagram"></i>
310
+ </a>
311
+ <a href="#" class="text-gray-400 hover:text-white">
312
+ <i data-feather="youtube"></i>
313
+ </a>
314
+ </div>
315
+ </div>
316
+ <div>
317
+ <h3 class="text-white font-bold text-lg mb-4">Newsletter</h3>
318
+ <p class="text-gray-400 mb-4">Subscribe for battle updates and exclusive content.</p>
319
+ <div class="flex">
320
+ <input type="email" placeholder="Your email" class="bg-gray-800 text-white px-4 py-2 rounded-l focus:outline-none w-full">
321
+ <button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-r">
322
+ <i data-feather="send"></i>
323
+ </button>
324
+ </div>
325
+ </div>
326
+ </div>
327
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
328
+ <p class="text-gray-400 text-sm">© 2023 TitansClash. All rights reserved.</p>
329
+ <div class="flex space-x-6 mt-4 md:mt-0">
330
+ <a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
331
+ <a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
332
+ <a href="#" class="text-gray-400 hover:text-white text-sm">Contact Us</a>
333
+ </div>
334
+ </div>
335
+ </div>
336
+ </footer>
337
+
338
+ <script>
339
+ // Countdown timer
340
+ function updateCountdown() {
341
+ const now = new Date();
342
+ const battleDate = new Date();
343
+ battleDate.setDate(now.getDate() + 3); // Set to 3 days from now
344
+
345
+ const diff = battleDate - now;
346
+
347
+ const days = Math.floor(diff / (1000 * 60 * 60 * 24));
348
+ const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
349
+ const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
350
+ const seconds = Math.floor((diff % (1000 * 60)) / 1000);
351
+
352
+ document.getElementById('days').textContent = days.toString().padStart(2, '0');
353
+ document.getElementById('hours').textContent = hours.toString().padStart(2, '0');
354
+ document.getElementById('minutes').textContent = minutes.toString().padStart(2, '0');
355
+ document.getElementById('seconds').textContent = seconds.toString().padStart(2, '0');
356
+ }
357
+
358
+ setInterval(updateCountdown, 1000);
359
+ updateCountdown();
360
+
361
+ // Initialize feather icons
362
+ feather.replace();
363
+ </script>
364
+ </body>
365
  </html>