Add a new section below the existing carousel that displays multiple rows of large game thumbnail placeholders. Follow these exact rules:
Browse filesCreate 5 rows total, one for each category.
Each row must contain exactly 8 thumbnails on ONE horizontal line.
Do NOT stack or split thumbnails into multiple rows.
Thumbnails must be large square image placeholders (1:1 ratio).
All 8 thumbnails in each row must appear side-by-side horizontally on a single line.
Keep all rows centered, evenly spaced, and aligned horizontally.
Do not modify the header, countdown timer, CTA, carousel, or any other part of the page.
- index.html +80 -3
- style.css +35 -0
index.html
CHANGED
|
@@ -161,10 +161,9 @@
|
|
| 161 |
</div>
|
| 162 |
<p class="text-center text-gray-400 text-sm mt-2">Get freespins, Loot Boxes & special pre-launch Giveaways.</p>
|
| 163 |
</div>
|
| 164 |
-
|
| 165 |
<!-- Game Thumbnail Carousel -->
|
| 166 |
<div class="w-full max-w-5xl relative mb-8">
|
| 167 |
-
|
| 168 |
<div class="game-carousel flex gap-6 py-4">
|
| 169 |
<!-- 10 game thumbnails -->
|
| 170 |
<div class="game-thumbnail" style="background-image: url('https://i.postimg.cc/FsLtyHPs/coin-lamp-hit-the-bonus-3oaks.jpg$0')"></div>
|
|
@@ -184,9 +183,87 @@
|
|
| 184 |
<div class="arrow-right w-6 h-6 border-r-2 border-t-2 border-neonmagenta transform rotate-45 opacity-70"></div>
|
| 185 |
</div>
|
| 186 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
</div>
|
| 188 |
</main>
|
| 189 |
-
|
| 190 |
<div class="facebook-popup hidden md:block">
|
| 191 |
<div class="holographic-panel bg-black/50 backdrop-blur-sm border-l-4 border-neonmagenta p-4 rounded-lg w-64">
|
| 192 |
<div class="flex items-center mb-2">
|
|
|
|
| 161 |
</div>
|
| 162 |
<p class="text-center text-gray-400 text-sm mt-2">Get freespins, Loot Boxes & special pre-launch Giveaways.</p>
|
| 163 |
</div>
|
|
|
|
| 164 |
<!-- Game Thumbnail Carousel -->
|
| 165 |
<div class="w-full max-w-5xl relative mb-8">
|
| 166 |
+
<div class="game-carousel-container relative overflow-hidden">
|
| 167 |
<div class="game-carousel flex gap-6 py-4">
|
| 168 |
<!-- 10 game thumbnails -->
|
| 169 |
<div class="game-thumbnail" style="background-image: url('https://i.postimg.cc/FsLtyHPs/coin-lamp-hit-the-bonus-3oaks.jpg$0')"></div>
|
|
|
|
| 183 |
<div class="arrow-right w-6 h-6 border-r-2 border-t-2 border-neonmagenta transform rotate-45 opacity-70"></div>
|
| 184 |
</div>
|
| 185 |
</div>
|
| 186 |
+
|
| 187 |
+
<!-- Game Categories Section -->
|
| 188 |
+
<div class="w-full max-w-7xl mx-auto px-4 py-12">
|
| 189 |
+
<!-- Slots Row -->
|
| 190 |
+
<div class="mb-12">
|
| 191 |
+
<h3 class="text-neonblue text-2xl font-bold mb-6 text-center">SLOTS</h3>
|
| 192 |
+
<div class="flex justify-center gap-6">
|
| 193 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/gaming/320x320/1')"></div>
|
| 194 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/gaming/320x320/2')"></div>
|
| 195 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/gaming/320x320/3')"></div>
|
| 196 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/gaming/320x320/4')"></div>
|
| 197 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/gaming/320x320/5')"></div>
|
| 198 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/gaming/320x320/6')"></div>
|
| 199 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/gaming/320x320/7')"></div>
|
| 200 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/gaming/320x320/8')"></div>
|
| 201 |
+
</div>
|
| 202 |
+
</div>
|
| 203 |
+
|
| 204 |
+
<!-- Table Games Row -->
|
| 205 |
+
<div class="mb-12">
|
| 206 |
+
<h3 class="text-neonmagenta text-2xl font-bold mb-6 text-center">TABLE GAMES</h3>
|
| 207 |
+
<div class="flex justify-center gap-6">
|
| 208 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/casino/320x320/1')"></div>
|
| 209 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/casino/320x320/2')"></div>
|
| 210 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/casino/320x320/3')"></div>
|
| 211 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/casino/320x320/4')"></div>
|
| 212 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/casino/320x320/5')"></div>
|
| 213 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/casino/320x320/6')"></div>
|
| 214 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/casino/320x320/7')"></div>
|
| 215 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/casino/320x320/8')"></div>
|
| 216 |
+
</div>
|
| 217 |
+
</div>
|
| 218 |
+
|
| 219 |
+
<!-- Live Casino Row -->
|
| 220 |
+
<div class="mb-12">
|
| 221 |
+
<h3 class="text-white text-2xl font-bold mb-6 text-center">LIVE CASINO</h3>
|
| 222 |
+
<div class="flex justify-center gap-6">
|
| 223 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/live/320x320/1')"></div>
|
| 224 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/live/320x320/2')"></div>
|
| 225 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/live/320x320/3')"></div>
|
| 226 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/live/320x320/4')"></div>
|
| 227 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/live/320x320/5')"></div>
|
| 228 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/live/320x320/6')"></div>
|
| 229 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/live/320x320/7')"></div>
|
| 230 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/live/320x320/8')"></div>
|
| 231 |
+
</div>
|
| 232 |
+
</div>
|
| 233 |
+
|
| 234 |
+
<!-- Crypto Games Row -->
|
| 235 |
+
<div class="mb-12">
|
| 236 |
+
<h3 class="text-neonblue text-2xl font-bold mb-6 text-center">CRYPTO GAMES</h3>
|
| 237 |
+
<div class="flex justify-center gap-6">
|
| 238 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/crypto/320x320/1')"></div>
|
| 239 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/crypto/320x320/2')"></div>
|
| 240 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/crypto/320x320/3')"></div>
|
| 241 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/crypto/320x320/4')"></div>
|
| 242 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/crypto/320x320/5')"></div>
|
| 243 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/crypto/320x320/6')"></div>
|
| 244 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/crypto/320x320/7')"></div>
|
| 245 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/crypto/320x320/8')"></div>
|
| 246 |
+
</div>
|
| 247 |
+
</div>
|
| 248 |
+
|
| 249 |
+
<!-- Jackpots Row -->
|
| 250 |
+
<div class="mb-12">
|
| 251 |
+
<h3 class="text-neonmagenta text-2xl font-bold mb-6 text-center">JACKPOTS</h3>
|
| 252 |
+
<div class="flex justify-center gap-6">
|
| 253 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/money/320x320/1')"></div>
|
| 254 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/money/320x320/2')"></div>
|
| 255 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/money/320x320/3')"></div>
|
| 256 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/money/320x320/4')"></div>
|
| 257 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/money/320x320/5')"></div>
|
| 258 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/money/320x320/6')"></div>
|
| 259 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/money/320x320/7')"></div>
|
| 260 |
+
<div class="game-category-thumbnail" style="background-image: url('http://static.photos/money/320x320/8')"></div>
|
| 261 |
+
</div>
|
| 262 |
+
</div>
|
| 263 |
+
</div>
|
| 264 |
</div>
|
| 265 |
</main>
|
| 266 |
+
<!-- Facebook Promo Popup -->
|
| 267 |
<div class="facebook-popup hidden md:block">
|
| 268 |
<div class="holographic-panel bg-black/50 backdrop-blur-sm border-l-4 border-neonmagenta p-4 rounded-lg w-64">
|
| 269 |
<div class="flex items-center mb-2">
|
style.css
CHANGED
|
@@ -174,6 +174,41 @@ h1, h2, h3, .countdown-timer {
|
|
| 174 |
border: 1px solid rgba(255, 255, 255, 0.1);
|
| 175 |
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
|
| 176 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 177 |
/* Game Thumbnail Styles */
|
| 178 |
.game-thumbnail {
|
| 179 |
min-width: 150px;
|
|
|
|
| 174 |
border: 1px solid rgba(255, 255, 255, 0.1);
|
| 175 |
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
|
| 176 |
}
|
| 177 |
+
/* Game Category Thumbnails */
|
| 178 |
+
.game-category-thumbnail {
|
| 179 |
+
width: 200px;
|
| 180 |
+
height: 200px;
|
| 181 |
+
background-size: cover;
|
| 182 |
+
background-position: center;
|
| 183 |
+
border-radius: 12px;
|
| 184 |
+
border: 2px solid rgba(15, 240, 252, 0.3);
|
| 185 |
+
position: relative;
|
| 186 |
+
overflow: hidden;
|
| 187 |
+
transition: all 0.3s ease;
|
| 188 |
+
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
|
| 189 |
+
flex-shrink: 0;
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
.game-category-thumbnail:hover {
|
| 193 |
+
transform: scale(1.05);
|
| 194 |
+
border-color: rgba(255, 0, 255, 0.8);
|
| 195 |
+
box-shadow:
|
| 196 |
+
0 10px 30px rgba(15, 240, 252, 0.5),
|
| 197 |
+
0 0 20px rgba(255, 0, 255, 0.3);
|
| 198 |
+
z-index: 10;
|
| 199 |
+
}
|
| 200 |
+
|
| 201 |
+
.game-category-thumbnail::before {
|
| 202 |
+
content: '';
|
| 203 |
+
position: absolute;
|
| 204 |
+
inset: 0;
|
| 205 |
+
background: linear-gradient(
|
| 206 |
+
to bottom,
|
| 207 |
+
transparent 60%,
|
| 208 |
+
rgba(0, 0, 0, 0.8) 100%
|
| 209 |
+
);
|
| 210 |
+
}
|
| 211 |
+
|
| 212 |
/* Game Thumbnail Styles */
|
| 213 |
.game-thumbnail {
|
| 214 |
min-width: 150px;
|