File size: 21,719 Bytes
e4ef621 |
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 |
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HUGE WIN - ¡Regístrate y reclama tu bono de $1000!</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@400;600;700;800&display=swap');
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
color: white;
}
.hero-gradient {
background: linear-gradient(90deg, #ff4d4d 0%, #f9cb28 100%);
}
.promo-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.game-card {
transition: all 0.3s ease;
}
.game-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="bg-gray-900 py-4 px-6 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center">
<span class="text-2xl font-bold bg-gradient-to-r from-yellow-400 to-red-500 bg-clip-text text-transparent">HUGE WIN</span>
</div>
<div class="hidden md:flex space-x-6">
<a href="#beneficios" class="text-white hover:text-yellow-400 transition">Beneficios</a>
<a href="#juegos" class="text-white hover:text-yellow-400 transition">Juegos</a>
<a href="#promocion" class="text-white hover:text-yellow-400 transition">Promoción</a>
</div>
<div class="md:hidden">
<button class="text-white focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient py-20 px-6">
<div class="container mx-auto flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6">¡GANA HASTA <span class="text-black">$1000</span> CON TU REGISTRO!</h1>
<p class="text-xl mb-8">La nueva plataforma de apuestas que está revolucionando Argentina. Registrate ahora y reclama tu bono exclusivo.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="https://tox.bet" class="bg-black text-white py-4 px-8 rounded-full font-bold text-lg hover:bg-gray-800 transition duration-300 text-center pulse">REGISTRATE AHORA</a>
<a href="#promocion" class="bg-white text-black py-4 px-8 rounded-full font-bold text-lg hover:bg-gray-200 transition duration-300 text-center">VER PROMOCIÓN</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://images.unsplash.com/photo-1614732414444-096e5f1122d5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Juegos de azar" class="rounded-xl shadow-2xl max-w-md w-full">
</div>
</div>
</section>
<!-- Promo Code Section -->
<section id="promocion" class="py-16 px-6">
<div class="container mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">¡PROMOCIÓN EXCLUSIVA PARA ARGENTINA!</h2>
<p class="text-xl max-w-2xl mx-auto">Usa el código <span class="font-bold">HUGE</span> al registrarte y reclama tu bono de bienvenida de $1000</p>
</div>
<div class="max-w-4xl mx-auto promo-card rounded-2xl p-8 md:p-12">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<div class="bg-yellow-400 text-black text-2xl font-bold py-4 px-6 rounded-lg text-center mb-6">
CÓDIGO: <span class="text-red-600">HUGE</span>
</div>
<img src="https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80" alt="Dinero" class="rounded-lg w-full">
</div>
<div class="md:w-1/2">
<h3 class="text-2xl font-bold mb-4">Cómo reclamar tu bono de $1000:</h3>
<ol class="space-y-4">
<li class="flex items-start">
<span class="bg-yellow-400 text-black font-bold rounded-full w-8 h-8 flex items-center justify-center mr-4">1</span>
<span>Regístrate en HUGE WIN haciendo clic en el botón</span>
</li>
<li class="flex items-start">
<span class="bg-yellow-400 text-black font-bold rounded-full w-8 h-8 flex items-center justify-center mr-4">2</span>
<span>Ingresa el código promocional <span class="font-bold">HUGE</span> durante el registro</span>
</li>
<li class="flex items-start">
<span class="bg-yellow-400 text-black font-bold rounded-full w-8 h-8 flex items-center justify-center mr-4">3</span>
<span>Realiza tu primer depósito (mínimo $500)</span>
</li>
<li class="flex items-start">
<span class="bg-yellow-400 text-black font-bold rounded-full w-8 h-8 flex items-center justify-center mr-4">4</span>
<span>¡Recibe tu bono de $1000 y comienza a jugar!</span>
</li>
</ol>
<a href="https://tox.bet" class="mt-8 inline-block bg-gradient-to-r from-yellow-400 to-red-500 text-black py-3 px-8 rounded-full font-bold hover:opacity-90 transition duration-300">REGISTRATE AHORA</a>
</div>
</div>
</div>
</div>
</section>
<!-- Benefits Section -->
<section id="beneficios" class="py-16 px-6 bg-gray-800">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center">¿Por qué elegir HUGE WIN?</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-900 rounded-xl p-8 text-center">
<div class="bg-yellow-400 text-black w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-bolt text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-4">Retiros Rápidos</h3>
<p>Recibe tu dinero en menos de 24 horas con nuestros métodos de pago locales adaptados para Argentina.</p>
</div>
<div class="bg-gray-900 rounded-xl p-8 text-center">
<div class="bg-yellow-400 text-black w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-gift text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-4">Bonos Exclusivos</h3>
<p>Ofertas especiales para jugadores argentinos con promociones semanales y torneos con grandes premios.</p>
</div>
<div class="bg-gray-900 rounded-xl p-8 text-center">
<div class="bg-yellow-400 text-black w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-headset text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-4">Soporte en Español</h3>
<p>Atención al cliente 24/7 en español con agentes especializados en resolver tus consultas rápidamente.</p>
</div>
</div>
</div>
</section>
<!-- Games Section -->
<section id="juegos" class="py-16 px-6">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center">Nuestros juegos más populares</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="game-card bg-gray-900 rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1620413274959-6e755b8f2e9b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Tragamonedas" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Tragamonedas</h3>
<p class="text-gray-400 mb-4">Más de 500 máquinas diferentes con jackpots progresivos.</p>
<a href="https://tox.bet" class="text-yellow-400 font-bold hover:text-yellow-300 transition">Jugar ahora →</a>
</div>
</div>
<div class="game-card bg-gray-900 rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1600857544200-b2f666a9a1d9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80" alt="Ruleta" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Ruleta</h3>
<p class="text-gray-400 mb-4">Ruleta europea, americana y francesa con crupieres en vivo.</p>
<a href="https://tox.bet" class="text-yellow-400 font-bold hover:text-yellow-300 transition">Jugar ahora →</a>
</div>
</div>
<div class="game-card bg-gray-900 rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1601379327921-005911b58b10?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Blackjack" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Blackjack</h3>
<p class="text-gray-400 mb-4">Variantes clásicas y modernas con crupieres profesionales.</p>
<a href="https://tox.bet" class="text-yellow-400 font-bold hover:text-yellow-300 transition">Jugar ahora →</a>
</div>
</div>
<div class="game-card bg-gray-900 rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1604917015979-3aaf50a0d52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Póker" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Póker</h3>
<p class="text-gray-400 mb-4">Torneos diarios con premios garantizados y mesas de cash.</p>
<a href="https://tox.bet" class="text-yellow-400 font-bold hover:text-yellow-300 transition">Jugar ahora →</a>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="https://tox.bet" class="inline-block bg-gradient-to-r from-yellow-400 to-red-500 text-black py-4 px-12 rounded-full font-bold text-lg hover:opacity-90 transition duration-300">VER TODOS LOS JUEGOS</a>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 px-6 bg-gray-800">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center">Jugadores que ya ganaron con HUGE WIN</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-900 rounded-xl p-8">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-yellow-400 flex items-center justify-center text-black font-bold mr-4">JG</div>
<div>
<h4 class="font-bold">Juan G.</h4>
<p class="text-yellow-400">Buenos Aires</p>
</div>
</div>
<p>"Con el bono de $1000 pude probar varias estrategias en la ruleta y terminé ganando $8500 en mi primera semana. ¡Increíble!"</p>
</div>
<div class="bg-gray-900 rounded-xl p-8">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-yellow-400 flex items-center justify-center text-black font-bold mr-4">MP</div>
<div>
<h4 class="font-bold">María P.</h4>
<p class="text-yellow-400">Córdoba</p>
</div>
</div>
<p>"Nunca había visto retiros tan rápidos. A las 3 horas de solicitar mi retiro ya tenía el dinero en mi cuenta. 100% recomendado."</p>
</div>
<div class="bg-gray-900 rounded-xl p-8">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-yellow-400 flex items-center justify-center text-black font-bold mr-4">CR</div>
<div>
<h4 class="font-bold">Carlos R.</h4>
<p class="text-yellow-400">Mendoza</p>
</div>
</div>
<p>"Gané el jackpot en las tragamonedas con mi bono de bienvenida. ¡$12,000 que cambiaron mi vida! Gracias HUGE WIN."</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 px-6 hero-gradient">
<div class="container mx-auto text-center">
<h2 class="text-3xl md:text-5xl font-bold mb-8">¿Qué estás esperando?</h2>
<p class="text-xl mb-12 max-w-2xl mx-auto">Regístrate ahora con el código <span class="font-bold">HUGE</span> y reclama tu bono de $1000 para comenzar a ganar.</p>
<div class="max-w-md mx-auto bg-black bg-opacity-40 rounded-2xl p-8 mb-12">
<h3 class="text-2xl font-bold mb-4">TU CÓDIGO PROMOCIONAL:</h3>
<div class="bg-white text-black text-3xl font-bold py-4 px-6 rounded-lg mb-6">HUGE</div>
<p class="mb-6">Úsalo durante el registro para activar tu bono</p>
<a href="https://tox.bet" class="inline-block bg-gradient-to-r from-yellow-400 to-red-500 text-black py-4 px-12 rounded-full font-bold text-lg hover:opacity-90 transition duration-300">REGISTRATE AHORA</a>
</div>
<div class="flex flex-wrap justify-center gap-4 max-w-2xl mx-auto">
<div class="flex items-center">
<i class="fas fa-shield-alt text-yellow-400 mr-2"></i>
<span>Juego seguro</span>
</div>
<div class="flex items-center">
<i class="fas fa-lock text-yellow-400 mr-2"></i>
<span>Protección de datos</span>
</div>
<div class="flex items-center">
<i class="fas fa-credit-card text-yellow-400 mr-2"></i>
<span>Métodos argentinos</span>
</div>
<div class="flex items-center">
<i class="fas fa-certificate text-yellow-400 mr-2"></i>
<span>Licencia internacional</span>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 py-12 px-6">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between mb-8">
<div class="mb-8 md:mb-0">
<span class="text-2xl font-bold bg-gradient-to-r from-yellow-400 to-red-500 bg-clip-text text-transparent">HUGE WIN</span>
<p class="mt-4 max-w-xs">La plataforma de apuestas preferida por los jugadores argentinos con las mejores promociones y juegos.</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-8">
<div>
<h4 class="text-lg font-bold mb-4">Enlaces</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-yellow-400 transition">Inicio</a></li>
<li><a href="#beneficios" class="hover:text-yellow-400 transition">Beneficios</a></li>
<li><a href="#juegos" class="hover:text-yellow-400 transition">Juegos</a></li>
<li><a href="#promocion" class="hover:text-yellow-400 transition">Promociones</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-yellow-400 transition">Términos</a></li>
<li><a href="#" class="hover:text-yellow-400 transition">Privacidad</a></li>
<li><a href="#" class="hover:text-yellow-400 transition">Juego Responsable</a></li>
<li><a href="#" class="hover:text-yellow-400 transition">Ayuda</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Contacto</h4>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-envelope text-yellow-400 mr-2"></i>
<span>soporte@hugewin.com</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone text-yellow-400 mr-2"></i>
<span>+54 11 1234-5678</span>
</li>
<li class="flex items-center">
<i class="fas fa-comment-dots text-yellow-400 mr-2"></i>
<span>Chat en vivo 24/7</span>
</li>
</ul>
</div>
</div>
</div>
<div class="pt-8 border-t border-gray-800 text-center text-gray-500">
<p>© 2023 HUGE WIN. Todos los derechos reservados. | +18 Juego responsable.</p>
</div>
</div>
</footer>
<script>
// Simple animation for promo code
document.addEventListener('DOMContentLoaded', function() {
const promoCode = document.querySelector('.promo-card .bg-yellow-400');
setInterval(() => {
promoCode.style.transform = 'scale(1.05)';
setTimeout(() => {
promoCode.style.transform = 'scale(1)';
}, 500);
}, 2000);
// 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'
});
});
});
});
</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=timoon811/huga-land" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |