nioplay-landing-v10 / index.html
ProjectGenesis's picture
Promote version 82f6bce to main
8f6a302 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>The Lucky Clovers Casino - Unparallel Gaming Since 2019</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/11.0.5/swiper-bundle.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/11.0.5/swiper-bundle.min.css">
<style>
:root {
--neon-orange: #FF6A00;
--neon-blue: #00E4FF;
--glow-orange: 0 0 10px rgba(255, 106, 0, 0.7), 0 0 20px rgba(255, 106, 0, 0.5), 0 0 30px rgba(255, 106, 0, 0.3);
--glow-blue: 0 0 10px rgba(0, 228, 255, 0.7), 0 0 20px rgba(0, 228, 255, 0.5), 0 0 30px rgba(0, 228, 255, 0.3);
--glow-white: 0 0 5px rgba(245, 245, 245, 0.8), 0 0 10px rgba(245, 245, 245, 0.6);
--glow-yellow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #000;
background-image: radial-gradient(circle at 20% 30%, rgba(40, 10, 0, 0.4) 0%, transparent 70%),
radial-gradient(circle at 80% 70%, rgba(0, 40, 50, 0.3) 0%, transparent 60%);
color: #F5F5F5;
overflow-x: hidden;
position: relative;
}
.orbitron {
font-family: 'Orbitron', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
}
.neon-orange {
color: var(--neon-orange);
text-shadow: var(--glow-orange);
}
.neon-blue {
color: var(--neon-blue);
text-shadow: var(--glow-blue);
}
.neon-glow-orange {
text-shadow: var(--glow-orange);
}
.neon-glow-blue {
text-shadow: var(--glow-blue);
}
.neon-glow-white {
text-shadow: var(--glow-white);
}
.neon-glow-yellow {
text-shadow: var(--glow-yellow);
}
.glass-card {
background: rgba(20, 20, 20, 0.4);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 106, 0, 0.2);
box-shadow: 0 0 15px rgba(255, 106, 0, 0.1);
transition: all 0.3s ease;
}
.btn-orange {
background: linear-gradient(135deg, #FF6A00, #FF4500);
box-shadow: var(--glow-orange);
transition: all 0.3s ease;
font-weight: 600;
}
.btn-orange:hover {
transform: translateY(-3px);
box-shadow: 0 0 25px rgba(255, 106, 0, 0.8);
animation: pulse-orange 1.5s infinite;
}
.btn-blue {
background: transparent;
border: 2px solid var(--neon-blue);
box-shadow: var(--glow-blue);
transition: all 0.3s ease;
}
.btn-blue:hover {
transform: translateY(-3px);
background: rgba(0, 228, 255, 0.1);
animation: pulse-blue 1.5s infinite alternate;
}
.pill-badge {
background: rgba(255, 106, 0, 0.2);
border: 1px solid var(--neon-orange);
box-shadow: var(--glow-orange);
animation: pulse-orange 2s infinite;
font-size: 0.75rem;
letter-spacing: 1px;
}
.game-card {
position: relative;
overflow: hidden;
transform: translateY(0);
}
.game-card:hover {
transform: scale(1.05);
box-shadow: 0 0 30px rgba(255, 106, 0, 0.5);
z-index: 10;
}
.game-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 50%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
transition: all 0.6s ease;
}
.game-card:hover::before {
left: 100%;
}
.accordion-item {
border-bottom: 1px solid rgba(255, 106, 0, 0.3);
}
.accordion-header {
cursor: pointer;
transition: all 0.3s ease;
}
.accordion-header:hover {
color: var(--neon-orange);
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.accordion-content.open {
max-height: 300px;
}
.trust-icon {
transition: all 0.3s ease;
}
.trust-icon:hover {
transform: scale(1.2);
animation: pulse-blue 1s infinite;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 0 30px rgba(0, 228, 255, 0.3);
}
.social-icon:hover {
color: var(--neon-blue);
text-shadow: var(--glow-blue);
}
.nav-scrolled {
background: rgba(10, 10, 10, 0.9);
backdrop-filter: blur(15px);
box-shadow: 0 5px 20px rgba(255, 106, 0, 0.1);
}
@keyframes pulse-orange {
0% { box-shadow: 0 0 10px rgba(255, 106, 0, 0.7); }
50% { box-shadow: 0 0 25px rgba(255, 106, 0, 0.9); }
100% { box-shadow: 0 0 10px rgba(255, 106, 0, 0.7); }
}
@keyframes pulse-blue {
0% { box-shadow: 0 0 10px rgba(0, 228, 255, 0.7); }
50% { box-shadow: 0 0 25px rgba(0, 228, 255, 0.9); }
100% { box-shadow: 0 0 10px rgba(0, 228, 255, 0.7); }
}
@keyframes flicker-blue {
0% { box-shadow: var(--glow-blue); }
100% { box-shadow: 0 0 15px rgba(0, 228, 255, 0.9), 0 0 30px rgba(0, 228, 255, 0.6); }
}
@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0); }
}
.floating {
animation: float 3s ease-in-out infinite;
}
.section-title {
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, var(--neon-orange), transparent);
box-shadow: var(--glow-orange);
}
.volatility-bar {
height: 8px;
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
overflow: hidden;
}
.volatility-fill {
height: 100%;
background: linear-gradient(90deg, #FF6A00, #FF4500);
border-radius: 4px;
}
.rtp-bar {
height: 8px;
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
overflow: hidden;
}
.rtp-fill {
height: 100%;
background: linear-gradient(90deg, #00E4FF, #0099FF);
border-radius: 4px;
}
.testimonial-card {
transition: all 0.3s ease;
min-width: 250px;
}
.testimonial-card:hover {
transform: scale(1.02);
box-shadow: 0 0 15px rgba(0, 228, 255, 0.2);
}
@media (min-width: 768px) {
.testimonial-card {
min-width: auto;
width: 100%;
}
}
.feature-tag {
background: rgba(255, 106, 0, 0.2);
border: 1px solid var(--neon-orange);
box-shadow: var(--glow-orange);
transition: all 0.3s ease;
font-size: 0.75rem;
}
.feature-tag:hover {
background: rgba(255, 106, 0, 0.4);
animation: pulse-orange 1s infinite;
}
#meteorCanvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
/* New Styles */
.floating-coins {
position: absolute;
animation: float 4s ease-in-out infinite;
z-index: -1;
}
.coin-counter {
font-family: 'Orbitron', sans-serif;
font-size: 2rem;
font-weight: 700;
background: linear-gradient(90deg, #FFD700, #FFA500);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
margin: 0 5px;
text-shadow: var(--glow-orange);
transition: all 0.3s ease;
}
.coin-counter-animation {
animation: jackpotPulse 0.5s ease-out;
text-shadow: 0 0 10px #FFD700, 0 0 20px #FFA500, 0 0 30px #FF6A00 !important;
}
.jackpot-counter {
font-family: 'Orbitron', sans-serif;
font-size: 3rem;
font-weight: 700;
background: linear-gradient(90deg, #FFD700, #FFA500);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
margin: 0 5px;
text-shadow: var(--glow-orange);
transition: all 0.3s ease;
}
.jackpot-amount {
background: linear-gradient(90deg, #FFD700, #FFA500);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: var(--glow-orange);
}
.jackpot-animation {
animation: jackpotPulse 0.5s ease-out;
text-shadow: 0 0 10px #FFD700, 0 0 20px #FFA500, 0 0 30px #FF6A00 !important;
}
@keyframes jackpotPulse {
0% {
transform: scale(1);
color: var(--neon-orange);
text-shadow: var(--glow-orange);
}
50% {
transform: scale(1.2);
color: #FFD700;
text-shadow: 0 0 15px #FFD700, 0 0 30px #FFA500, 0 0 45px #FF6A00;
}
100% {
transform: scale(1);
color: var(--neon-orange);
text-shadow: var(--glow-orange);
}
}
.vip-progress {
height: 10px;
background: rgba(255,255,255,0.1);
border-radius: 5px;
overflow: hidden;
}
.vip-progress-fill {
height: 100%;
background: linear-gradient(90deg, #FF6A00, #FFD700, #FF6A00);
width: 0%;
transition: width 2s ease;
box-shadow: 0 0 10px rgba(255, 106, 0, 0.7);
animation: pulse-orange 2s infinite;
}
.reward-tier {
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.reward-tier::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
transition: 0.5s;
}
.reward-tier:hover::before {
left: 100%;
}
.reward-tier.active {
transform: translateY(-10px);
box-shadow: 0 0 30px rgba(255, 106, 0, 0.3);
z-index: 1;
background: rgba(20,20,20,0.6);
border: 1px solid rgba(255, 106, 0, 0.4);
}
.reward-tier.active::after {
content: '';
position: absolute;
top: -1px;
right: -1px;
width: 15px;
height: 15px;
background: var(--neon-orange);
border-radius: 50%;
box-shadow: var(--glow-orange);
}
.bonus-chip {
position: absolute;
background: linear-gradient(145deg, #FF4500, #FF6A00);
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-weight: bold;
font-size: 1.2rem;
text-shadow: 0 0 5px rgba(0,0,0,0.8);
transform-origin: center;
z-index: 1;
}
.game-thumb {
position: relative;
overflow: hidden;
border-radius: 12px;
height: 0;
padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.game-thumb-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 15px;
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
opacity: 0;
transition: opacity 0.3s ease;
}
.game-card:hover .game-thumb-overlay {
opacity: 1;
}
@keyframes glow-gold {
0% { text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.9); }
}
@keyframes pulse {
0% { transform: scale(0.9); opacity: 0.7; }
50% { transform: scale(1.05); opacity: 1; }
100% { transform: scale(0.9); opacity: 0.7; }
}
@keyframes coin-spin {
0% { transform: rotateY(0deg); }
100% { transform: rotateY(360deg); }
}
.featured-games-container {
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
overflow-x: auto;
width: 100%;
padding-bottom: 20px;
}
.featured-games-container::-webkit-scrollbar {
display: none;
}
.featured-games-grid {
display: inline-flex;
gap: 1.5rem;
padding: 0 1.5rem;
}
.game-card {
flex: 0 0 300px;
min-width: 300px;
}
.ticker-item {
white-space: nowrap;
margin: 0 2rem;
display: inline-block;
animation: ticker-scroll 15s linear infinite;
}
@keyframes ticker-scroll {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
.hero-actions {
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
width: 100%;
max-width: 500px;
margin: 0 auto;
}
.feature-badge {
position: absolute;
top: -10px;
right: -10px;
z-index: 20;
}
@media (min-width: 768px) {
.hero-actions {
flex-direction: row;
justify-content: center;
}
.featured-games-grid {
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
}
/* Mobile-specific styles */
@media (max-width: 767px) {
/* Typography scaling */
html {
font-size: 12px;
}
/* Section spacing */
section {
padding: 2rem 1rem;
}
/* Hero section adjustments */
.hero h1 {
font-size: 2rem;
line-height: 1.1;
padding: 0;
margin-bottom: 1rem;
}
/* Button sizing */
.btn-orange, .btn-blue {
padding: 0.6rem 1rem;
font-size: 0.9rem;
width: 100%;
max-width: 220px;
}
/* Trust icons grid */
.trust-bar .flex {
flex-wrap: nowrap;
overflow-x: auto;
padding-bottom: 5px;
gap: 0.3rem;
}
.trust-icon {
padding: 0.3rem;
min-width: 80px;
}
.trust-icon span:first-child {
font-size: 1rem;
}
/* Game cards */
.game-card {
min-width: 220px;
padding: 0.8rem;
}
/* Section titles */
.section-title {
font-size: 1.8rem;
}
/* VIP progress */
.vip-tier {
padding: 0.4rem;
font-size: 0.7rem;
}
/* Testimonials grid */
.grid-cols-1 {
gap: 1rem;
}
/* Footer adjustments */
footer {
padding: 1.5rem 1rem;
}
.footer-links {
flex-direction: column;
gap: 0.5rem;
}
/* Reduce element sizes */
.step-card,
.feature-card,
.testimonial-card,
.reward-tier {
padding: 1rem;
}
.step-icon,
.feature-card div,
.reward-tier div {
font-size: 2rem;
margin-bottom: 0.5rem;
}
/* Hide decorative elements */
.floating-coins,
.trust-bar img,
.step-number,
.bonus-chip {
display: none;
}
/* Jackpot counter */
.jackpot-counter {
font-size: 1.2rem;
padding: 0.5rem 1rem;
}
/* Final CTA */
.final-cta h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
}
.final-cta button {
padding: 0.8rem 1.5rem;
font-size: 1rem;
}
/* Payment marquee */
.marquee-content {
gap: 0.8rem;
}
.payment-icon {
width: 24px;
height: 24px;
}
.payment-icon img {
width: 12px;
height: 12px;
}
}
</style>
</head>
<body class="relative">
<!-- Sticky Payment Marquee -->
<div class="sticky-payment-header bg-black/90 backdrop-blur-sm border-b border-orange-500/10 py-1 z-50">
<!-- Rewards Ticker -->
<div class="reward-ticker bg-gradient-to-r from-orange-900/30 to-blue-900/30 py-1 px-4 text-center overflow-hidden">
<div class="marquee-content orbitron text-xs md:text-sm whitespace-nowrap">
<span class="ticker-item neon-orange">🎰 300% WELCOME BONUS 🎰</span>
<span class="ticker-item neon-blue">💰 10% WEEKLY CASHBACK 💰</span>
<span class="ticker-item neon-orange">🔥 $50,000+ PAID OUT DAILY 🔥</span>
<span class="ticker-item neon-blue">⚡ INSTANT CASHOUTS ⚡</span>
<span class="ticker-item neon-orange">🎁 MONTHLY GIVEAWAYS 🎁</span>
</div>
</div>
<div class="marquee-container relative overflow-hidden w-full">
<div class="marquee-content flex items-center justify-around gap-8 py-1 animate-marquee whitespace-nowrap">
<div class="payment-icon flex items-center justify-center w-8 h-8 rounded-full bg-blue-900/30 backdrop-blur-sm">
<img src="https://upload.wikimedia.org/wikipedia/commons/4/46/Bitcoin.svg" alt="Bitcoin" class="h-4 w-4">
</div>
<div class="payment-icon flex items-center justify-center w-8 h-8 rounded-full bg-purple-900/30 backdrop-blur-sm">
<img src="https://i.postimg.cc/43H5x0QS/ethereum-eth-white-logo-sign-png-701751694771762mrip4l9ayo.png" alt="Ethereum" class="h-4 w-4">
</div>
<div class="payment-icon flex items-center justify-center w-8 h-8 rounded-full bg-blue-800/30 backdrop-blur-sm">
<img src="https://upload.wikimedia.org/wikipedia/commons/e/e3/Litecoin_Logo.jpg$0" alt="Litecoin" class="h-4 w-4">
</div>
<div class="payment-icon flex items-center justify-center w-8 h-8 rounded-full bg-blue-600/30 backdrop-blur-sm">
<img src="https://i.postimg.cc/YC5DtBmP/App-Icon.png" alt="Visa" class="h-4 w-4">
</div>
<div class="payment-icon flex items-center justify-center w-8 h-8 rounded-full bg-green-600/30 backdrop-blur-sm">
<img src="https://i.postimg.cc/LXLpmVXq/chime.png" alt="Mastercard" class="h-4 w-4">
</div>
<div class="payment-icon flex items-center justify-center w-8 h-8 rounded-full bg-blue-500/30 backdrop-blur-sm">
<img src="https://i.postimg.cc/x85BdpSS/Pay-Pal-Logo2014.png" alt="PayPal" class="h-4 w-4">
</div>
<div class="payment-icon flex items-center justify-center w-8 h-8 rounded-full bg-green-600/30 backdrop-blur-sm">
<img src="https://upload.wikimedia.org/wikipedia/commons/c/c5/Square_Cash_app_logo.svg" alt="CashApp" class="h-4 w-4">
</div>
<div class="payment-icon flex items-center justify-center w-8 h-8 rounded-full bg-purple-600/30 backdrop-blur-sm">
<img src="https://i.postimg.cc/d3sSgRTP/Zelle-Symbol.png" alt="Zelle" class="h-4 w-4">
</div>
</div>
</div>
</div>
<!-- Meteor Canvas Background -->
<canvas id="meteorCanvas"></canvas>
<!-- Hero Section -->
<section class="min-h-[70vh] flex flex-col justify-center items-center px-4 pt-0 pb-4 relative overflow-hidden">
<div class="mb-8">
<img src="https://i.postimg.cc/QdZ9kf2y/FIVEXBET.png" alt="The Lucky Clovers Logo" class="w-32 h-32 mx-auto object-contain">
</div>
<div class="text-center max-w-6xl z-10 relative w-full px-8">
<h1 class="orbitron text-3xl md:text-6xl lg:text-7xl mb-4 neon-orange floating">THE LUCKY CLOVERS CASINO</h1>
<div class="hero-actions mb-4">
<button class="btn-orange px-4 py-3 rounded-full orbitron text-base md:text-lg w-full sm:w-auto" onclick="window.location.href='https://nioplay.net'">SIGN-UP
</button>
<button class="btn-blue px-4 py-3 rounded-full orbitron text-base md:text-lg w-full sm:w-auto" onclick="window.location.href='https://nioplay.net'"> REDEEM
</button>
</div>
<p class="text-lg md:text-xl mb-4 text-white max-w-3xl mx-auto">
JOIN <span class="coin-counter">1,000,000</span> PLAYERS WINNING AT THE LUCKY CLOVERS CASINO
</p>
<!-- Payment Methods Bar -->
<div class="payment-methods relative z-20 mt-8 max-w-6xl mx-auto">
<div class="text-center mb-4">
<p class="orbitron text-sm neon-blue mb-2">instant deposit and withdrawals</p>
<h3 class="orbitron text-xl md:text-2xl neon-orange"></h3>
</div>
<div class="flex flex-wrap justify-center gap-4 md:gap-8">
<!-- Bitcoin -->
<div class="payment-method-icon w-14 h-14 md:w-16 md:h-16 rounded-full bg-gradient-to-br from-yellow-600 to-yellow-800 flex items-center justify-center shadow-lg hover:shadow-yellow-500/40 transition-all">
<img src="https://upload.wikimedia.org/wikipedia/commons/4/46/Bitcoin.svg" alt="Bitcoin" class="h-6 w-6 md:h-8 md:w-8 object-contain">
</div>
<!-- Ethereum -->
<div class="payment-method-icon w-14 h-14 md:w-16 md:h-16 rounded-full bg-gradient-to-br from-purple-600 to-gray-800 flex items-center justify-center shadow-lg hover:shadow-purple-500/40 transition-all">
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6f/Ethereum-icon-purple.svg" alt="Ethereum" class="h-6 w-6 md:h-8 md:w-8 object-contain">
</div>
<!-- Litecoin -->
<div class="payment-method-icon w-14 h-14 md:w-16 md:h-16 rounded-full bg-gradient-to-br from-blue-400 to-gray-700 flex items-center justify-center shadow-lg hover:shadow-blue-500/40 transition-all">
<img src="https://upload.wikimedia.org/wikipedia/commons/e/e3/Litecoin_Logo.jpg" alt="Litecoin" class="h-6 w-6 md:h-8 md:w-8 object-contain">
</div>
<!-- Chime -->
<div class="payment-method-icon w-14 h-14 md:w-16 md:h-16 rounded-full bg-gradient-to-br from-green-500 to-green-700 flex items-center justify-center shadow-lg hover:shadow-green-500/40 transition-all">
<img src="https://i.postimg.cc/LXLpmVXq/chime.png" alt="Chime" class="h-6 w-6 md:h-8 md:w-8 object-contain">
</div>
<!-- Cash App -->
<div class="payment-method-icon w-14 h-14 md:w-16 md:h-16 rounded-full bg-gradient-to-br from-green-400 to-green-600 flex items-center justify-center shadow-lg hover:shadow-green-400/40 transition-all">
<img src="https://upload.wikimedia.org/wikipedia/commons/c/c5/Square_Cash_app_logo.svg" alt="Cash App" class="h-6 w-6 md:h-8 md:w-8 object-contain">
</div>
<!-- PayPal -->
<div class="payment-method-icon w-14 h-14 md:w-16 md:h-16 rounded-full bg-gradient-to-br from-blue-500 to-blue-800 flex items-center justify-center shadow-lg hover:shadow-blue-500/40 transition-all">
<img src="https://i.postimg.cc/x85BdpSS/Pay-Pal-Logo2014.png" alt="PayPal" class="h-6 w-6 md:h-8 md:w-8 object-contain">
</div>
<!-- Venmo -->
<div class="payment-method-icon w-14 h-14 md:w-16 md:h-16 rounded-full bg-gradient-to-br from-blue-400 to-blue-600 flex items-center justify-center shadow-lg hover:shadow-blue-400/40 transition-all">
<img src="https://i.postimg.cc/YC5DtBmP/App-Icon.png" alt="Venmo" class="h-6 w-6 md:h-8 md:w-8 object-contain">
</div>
<!-- Zelle -->
<div class="payment-method-icon w-14 h-14 md:w-16 md:h-16 rounded-full bg-gradient-to-br from-purple-600 to-purple-800 flex items-center justify-center shadow-lg hover:shadow-purple-600/40 transition-all">
<img src="https://i.postimg.cc/d3sSgRTP/Zelle-Symbol.png" alt="Zelle" class="h-6 w-6 md:h-8 md:w-8 object-contain">
</div>
</div>
</div>
</section>
<!-- How Nioplay Works -->
<section class="pt-0 pb-2 px-4 relative overflow-hidden">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-6">
<h2 class="orbitron text-3xl md:text-4xl mb-4 neon-orange section-title">HOW Lucky clovers WORKS</h2>
<p class="text-xl opacity-90 white">Join thousands winning cash & prizes every day</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<!-- Step 1 -->
<div class="step-card glass-card rounded-xl p-4 text-center relative overflow-hidden transition-all hover:transform hover:scale-105">
<div class="absolute -top-10 -right-10 w-40 h-40 bg-orange-500/10 rounded-full filter blur-xl"></div>
<div class="step-number orbitron text-6xl neon-orange opacity-20 absolute -top-8 -left-8">1</div>
<div class="relative z-10">
<div class="step-icon text-5xl mb-6 neon-orange">🚀</div>
<h3 class="orbitron text-2xl mb-4 neon-orange">SIGN UP</h3>
<p class="mb-4 opacity-90">Create your account in seconds. Receive free credit and 300% bonus on all deposits</p>
<div class="inline-block pill-badge orbitron text-xs py-2 px-4 rounded-full neon-glow-orange">+300% bonus deposit</div>
</div>
</div>
<!-- Step 2 -->
<div class="step-card glass-card rounded-2xl p-8 text-center relative overflow-hidden transition-all hover:transform hover:scale-105">
<div class="absolute -top-10 -right-10 w-40 h-40 bg-blue-500/10 rounded-full filter blur-xl"></div>
<div class="step-number orbitron text-6xl neon-blue opacity-20 absolute -top-8 -left-8">2</div>
<div class="relative z-10">
<div class="step-icon text-5xl mb-6 neon-blue">🎰</div>
<h3 class="orbitron text-2xl mb-4 neon-blue">PLAY & WIN</h3>
<p class="mb-4 opacity-90">Spin slots, hit blackjack, collect winnings from fish tables, and collect your jackpot winnings.</p>
<div class="inline-block pill-badge orbitron text-xs py-2 px-4 rounded-full neon-glow-blue">1,000,000+ PLAYERS</div>
</div>
</div>
<!-- Step 3 -->
<div class="step-card glass-card rounded-2xl p-8 text-center relative overflow-hidden transition-all hover:transform hover:scale-105">
<div class="absolute -top-10 -right-10 w-40 h-40 bg-orange-500/10 rounded-full filter blur-xl"></div>
<div class="step-number orbitron text-6xl neon-orange opacity-20 absolute -top-8 -left-8">3</div>
<div class="relative z-10">
<div class="step-icon text-5xl mb-6 neon-orange">💰</div>
<h3 class="orbitron text-2xl mb-4 neon-orange">CASHOUT</h3>
<p class="mb-4 opacity-90">Cash out via Chime, CashApp, Crypto, Paypal, or Zelle in as fast as 3 minutes!</p>
<div class="inline-block pill-badge orbitron text-xs py-2 px-4 rounded-full neon-glow-orange">24/7 Fast Cashout Service</div>
</div>
</div>
</div>
<div class="mt-16 text-center">
<button class="btn-orange px-8 py-4 rounded-full orbitron text-xl mx-auto" onclick="window.location.href='https://nioplay.net'">START WINNING NOW</button>
</div>
</div>
</section>
<!-- Featured Games -->
<section class="py-6 px-4">
<div class="max-w-8xl mx-auto">
<div class="text-center mb-6">
<h2 class="orbitron text-3xl md:text-4xl mb-4 neon-orange section-title">GAME PLATFORMS</h2>
<p class="text-lg opacity-90 mb-6">Top-rated games with massive win potential</p>
<div class="jackpot-counter inline-block px-6 py-2 rounded-full">
<span class="text-white">$</span> <span id="jackpot-amount" class="jackpot-amount">81,279.00</span> <span class="text-white">WON IN JACKPOTS</span>
</div>
</div>
<div class="featured-games-container overflow-x-auto pb-4" style="width: 100%; max-width: 100vw;">
<div class="featured-games-grid inline-flex space-x-6" style="width: 100%;">
<!-- Game Card 1 -->
<div class="game-card glass-card rounded-2xl overflow-hidden transition-all duration-300">
<div class="relative">
<div class="game-thumb bg-gradient-to-br from-gray-900 to-black relative">
<div class="absolute inset-0 bg-[url('https://i.postimg.cc/3JWv9ybg/images.jpg')] bg-cover bg-center opacity-80"></div>
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent"></div>
<div class="absolute inset-0 flex items-center justify-center">
<span class="orbitron text-2xl neon-orange"></span>
</div>
<div class="game-thumb-overlay">
<button class="btn-blue w-full py-3 rounded-full orbitron text-sm" onclick="window.location.href='https://nioplay.net'">
PLAY NOW
</button>
</div>
</div>
</div>
<div class="p-6">
<h3 class="orbitron text-xl mb-2 neon-orange">ORIONSTAR</h3>
<div class="flex items-center mb-3">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<span class="text-sm">4.7 / 5</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-sm mb-1">
<span>Volatility</span>
<span>High</span>
</div>
<div class="volatility-bar">
<div class="volatility-fill w-4/5"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Popularity</span>
<span>96.5%</span>
</div>
<div class="rtp-bar">
<div class="rtp-fill w-11/12"></div>
</div>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="feature-tag text-xs py-1 px-3 rounded-full">Slots</span>
<span class="feature-tag text-xs py-1 px-3 rounded-full">Fish Tables</span>
</div>
<div class="pill-badge orbitron text-xs py-1 px-3 rounded-full mb-4 text-center">+100% Deposits</div>
</div>
</div>
<!-- Game Card 2 -->
<div class="game-card glass-card rounded-2xl overflow-hidden transition-all duration-300">
<div class="relative">
<div class="game-thumb bg-gradient-to-br from-gray-900 to-black relative">
<div class="absolute inset-0 bg-[url('https://i.postimg.cc/KjW4CNsb/kvxe-FW-3-400x400.jpg')] bg-cover bg-center opacity-80"></div>
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent"></div>
<div class="absolute inset-0 flex items-center justify-center">
<span class="orbitron text-2xl neon-blue"></span>
</div>
<div class="game-thumb-overlay">
<button class="btn-blue w-full py-3 rounded-full orbitron text-sm">
PLAY NOW
</button>
</div>
</div>
</div>
<div class="p-6">
<h3 class="orbitron text-xl mb-2 neon-blue">FIREKIRIN</h3>
<div class="flex items-center mb-3">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-sm">5.0 / 5</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-sm mb-1">
<span>Volatility</span>
<span>Medium</span>
</div>
<div class="volatility-bar">
<div class="volatility-fill w-3/5"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Popularity</span>
<span>97.2%</span>
</div>
<div class="rtp-bar">
<div class="rtp-fill w-full"></div>
</div>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="feature-tag text-xs py-1 px-3 rounded-full">Slots</span>
<span class="feature-tag text-xs py-1 px-3 rounded-full">Fish Tables</span>
</div>
<div class="pill-badge orbitron text-xs py-1 px-3 rounded-full mb-4 text-center">+50% Deposits</div>
</div>
</div>
<!-- Game Card 3 -->
<div class="game-card glass-card rounded-2xl overflow-hidden transition-all duration-300">
<div class="relative">
<div class="game-thumb bg-gradient-to-br from-gray-900 to-black relative">
<div class="absolute inset-0 bg-[url('https://i.postimg.cc/tJs4d6Cb/42e66e-2aca249e691447dcb67400352f7ef8e4-mv2-jpg.avif')] bg-cover bg-center opacity-80"></div>
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent"></div>
<div class="absolute inset-0 flex items-center justify-center">
<span class="orbitron text-2xl neon-orange"></span>
</div>
<div class="game-thumb-overlay">
<button class="btn-blue w-full py-3 rounded-full orbitron text-sm">
PLAY NOW
</button>
</div>
</div>
</div>
<div class="p-6">
<h3 class="orbitron text-xl mb-2 neon-orange">VBLINK</h3>
<div class="flex items-center mb-3">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<span class="text-sm">4.2 / 5</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-sm mb-1">
<span>Volatility</span>
<span>Low</span>
</div>
<div class="volatility-bar">
<div class="volatility-fill w-2/5"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Popularity</span>
<span>99.2%</span>
</div>
<div class="rtp-bar">
<div class="rtp-fill w-10/12"></div>
</div>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="feature-tag text-xs py-1 px-3 rounded-full">Blackjack</span>
<span class="feature-tag text-xs py-1 px-3 rounded-full">Jackpot</span>
</div>
<div class="pill-badge orbitron text-xs py-1 px-3 rounded-full mb-4 text-center">+100% Deposits</div>
</div>
</div>
<!-- Game Card 4 (same as 1) -->
<div class="game-card glass-card rounded-2xl overflow-hidden transition-all duration-300">
<div class="relative">
<div class="game-thumb bg-gradient-to-br from-gray-900 to-black relative">
<div class="absolute inset-0 bg-[url('https://i.postimg.cc/q7QJ9wzQ/unnamed.png')] bg-cover bg-center opacity-80"></div>
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent"></div>
<div class="absolute inset-0 flex items-center justify-center">
<span class="orbitron text-2xl neon-orange"></span>
</div>
<div class="game-thumb-overlay">
<button class="btn-blue w-full py-3 rounded-full orbitron text-sm">
PLAY NOW
</button>
</div>
</div>
</div>
<div class="p-6">
<h3 class="orbitron text-xl mb-2 neon-blue">JUWA 777</h3>
<div class="flex items-center mb-3">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<span class="text-sm">4.7 / 5</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-sm mb-1">
<span>Volatility</span>
<span>High</span>
</div>
<div class="volatility-bar">
<div class="volatility-fill w-4/5"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Popularity</span>
<span>96.5%</span>
</div>
<div class="rtp-bar">
<div class="rtp-fill w-11/12"></div>
</div>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="feature-tag text-xs py-1 px-3 rounded-full">Megaways Slot</span>
<span class="feature-tag text-xs py-1 px-3 rounded-full">Fish Tables</span>
</div>
<div class="pill-badge orbitron text-xs py-1 px-3 rounded-full mb-4 text-center">+75% Deposits</div>
</div>
</div>
<!-- Game Card 5 (same as 1) -->
<div class="game-card glass-card rounded-2xl overflow-hidden transition-all duration-300">
<div class="relative">
<div class="game-thumb bg-gradient-to-br from-gray-900 to-black relative">
<div class="absolute inset-0 bg-[url('https://i.postimg.cc/gJQnTs72/432971438-122097266234271122-5132638393045558399-n.webp')] bg-cover bg-center opacity-80"></div>
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent"></div>
<div class="absolute inset-0 flex items-center justify-center">
<span class="orbitron text-2xl neon-orange"></span>
</div>
<div class="game-thumb-overlay">
<button class="btn-blue w-full py-3 rounded-full orbitron text-sm">
PLAY NOW
</button>
</div>
</div>
</div>
<div class="p-6">
<h3 class="orbitron text-xl mb-2 neon-orange">ULTRA PANDA</h3>
<div class="flex items-center mb-3">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<span class="text-sm">4.8 / 5</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-sm mb-1">
<span>Volatility</span>
<span>Medium</span>
</div>
<div class="volatility-bar">
<div class="volatility-fill w-4/5"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Popularity</span>
<span>94.8%</span>
</div>
<div class="rtp-bar">
<div class="rtp-fill w-11/12"></div>
</div>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="feature-tag text-xs py-1 px-3 rounded-full">Classic Slots</span>
<span class="feature-tag text-xs py-1 px-3 rounded-full">Megaways Slots</span>
</div>
<div class="pill-badge orbitron text-xs py-1 px-3 rounded-full mb-4 text-center">+200% Deposits</div>
</div>
</div>
</div>
</div>
</section>
<!-- Rewards Section -->
<section class="py-4 px-4">
<div class="max-w-3xl mx-auto">
<div class="text-center mb-4">
<h2 class="orbitron text-2xl md:text-3xl mb-2 neon-orange">WEEKLY CASHBACK</h2>
<p class="text-sm opacity-90">Earn rewards as you play</p>
</div>
<div class="glass-card rounded-xl p-4 mb-4">
<div class="flex items-center justify-between mb-2">
<div>
<span class="orbitron text-sm neon-orange">LEVEL 2 / 10% CASHBACK</span>
<div class="text-xs opacity-80">$2,942 / $7,000 to next level</div>
</div>
<div class="vip-progress w-24">
<div class="vip-progress-fill" style="width: 42%;"></div>
</div>
</div>
<div class="grid grid-cols-2 gap-2 text-center">
<div class="glass-card p-2 rounded-lg">
<div class="text-lg neon-orange mb-1">🪙</div>
<div class="orbitron text-xs">+200% Bonus</div>
</div>
<div class="glass-card p-2 rounded-lg">
<div class="text-lg neon-blue mb-1">💵</div>
<div class="orbitron text-xs">Cash Giveaways</div>
</div>
<div class="glass-card p-2 rounded-lg">
<div class="text-lg neon-orange mb-1"></div>
<div class="orbitron text-xs">Fast Cashout</div>
</div>
<div class="glass-card p-2 rounded-lg">
<div class="text-lg neon-blue mb-1">🎁</div>
<div class="orbitron text-xs">Monthly Gifts</div>
</div>
</div>
</div>
</div>
</section>
=======
<section class="py-12 px-4">
<div class="max-w-8xl mx-auto">
<div class="text-center mb-8">
<h2 class="orbitron text-3xl md:text-4xl mb-4 neon-orange section-title">GAME PLATFORMS</h2>
<p class="text-lg opacity-90 mb-6">Top-rated games with massive win potential</p>
<div class="jackpot-counter inline-block px-6 py-2 rounded-full">
<span class="text-white">$</span> <span id="jackpot-amount" class="jackpot-amount">81,279.00</span> <span class="text-white">WON IN JACKPOTS</span>
</div>
</div>
<div class="featured-games-container overflow-x-auto pb-4">
<div class="featured-games-grid inline-flex space-x-6">
<!-- Game Card 1 -->
<div class="game-card glass-card rounded-2xl overflow-hidden transition-all duration-300">
<div class="relative">
<div class="game-thumb bg-gradient-to-br from-gray-900 to-black relative">
<div class="absolute inset-0 bg-[url('https://i.postimg.cc/NG3v2kJ2/bacarrat.png')] bg-cover bg-center opacity-80"></div>
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent"></div>
<div class="absolute inset-0 flex items-center justify-center">
<span class="orbitron text-2xl neon-orange"></span>
</div>
<div class="game-thumb-overlay">
<button class="btn-blue w-full py-3 rounded-full orbitron text-sm" onclick="window.location.href='https://nioplay.net'">
PLAY NOW
</button>
</div>
</div>
</div>
<div class="p-6">
<h3 class="orbitron text-xl mb-2 neon-orange">ORIONSTAR</h3>
<div class="flex items-center mb-3">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<span class="text-sm">4.7 / 5</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-sm mb-1">
<span>Volatility</span>
<span>High</span>
</div>
<div class="volatility-bar">
<div class="volatility-fill w-4/5"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Popularity</span>
<span>96.5%</span>
</div>
<div class="rtp-bar">
<div class="rtp-fill w-11/12"></div>
</div>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="feature-tag text-xs py-1 px-3 rounded-full">Slots</span>
<span class="feature-tag text-xs py-1 px-3 rounded-full">Fish Tables</span>
</div>
<div class="pill-badge orbitron text-xs py-1 px-3 rounded-full mb-4 text-center">+100% Deposits</div>
</div>
</div>
<!-- Game Card 2 -->
<div class="game-card glass-card rounded-2xl overflow-hidden transition-all duration-300">
<div class="relative">
<div class="game-thumb bg-gradient-to-br from-gray-900 to-black relative">
<div class="absolute inset-0 bg-[url('https://i.postimg.cc/Pq9tqs00/1-C2-AD34-F-534-D-48-BF-B0-A5-868-C7-FEEE6-BA.jpg')] bg-cover bg-center opacity-80"></div>
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent"></div>
<div class="absolute inset-0 flex items-center justify-center">
<span class="orbitron text-2xl neon-blue"></span>
</div>
<div class="game-thumb-overlay">
<button class="btn-blue w-full py-3 rounded-full orbitron text-sm">
PLAY NOW
</button>
</div>
</div>
</div>
<div class="p-6">
<h3 class="orbitron text-xl mb-2 neon-blue">FIREKIRIN</h3>
<div class="flex items-center mb-3">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-sm">5.0 / 5</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-sm mb-1">
<span>Volatility</span>
<span>Medium</span>
</div>
<div class="volatility-bar">
<div class="volatility-fill w-3/5"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Popularity</span>
<span>97.2%</span>
</div>
<div class="rtp-bar">
<div class="rtp-fill w-full"></div>
</div>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="feature-tag text-xs py-1 px-3 rounded-full">Slots</span>
<span class="feature-tag text-xs py-1 px-3 rounded-full">Fish Tables</span>
</div>
<div class="pill-badge orbitron text-xs py-1 px-3 rounded-full mb-4 text-center">+50% Deposits</div>
</div>
</div>
<!-- Game Card 3 -->
<div class="game-card glass-card rounded-2xl overflow-hidden transition-all duration-300">
<div class="relative">
<div class="game-thumb bg-gradient-to-br from-gray-900 to-black relative">
<div class="absolute inset-0 bg-[url('https://i.postimg.cc/Hx7y28Rx/IMG-5958.jpg')] bg-cover bg-center opacity-80"></div>
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent"></div>
<div class="absolute inset-0 flex items-center justify-center">
<span class="orbitron text-2xl neon-orange"></span>
</div>
<div class="game-thumb-overlay">
<button class="btn-blue w-full py-3 rounded-full orbitron text-sm">
PLAY NOW
</button>
</div>
</div>
</div>
<div class="p-6">
<h3 class="orbitron text-xl mb-2 neon-orange">VBLINK</h3>
<div class="flex items-center mb-3">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<span class="text-sm">4.2 / 5</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-sm mb-1">
<span>Volatility</span>
<span>Low</span>
</div>
<div class="volatility-bar">
<div class="volatility-fill w-2/5"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Popularity</span>
<span>99.2%</span>
</div>
<div class="rtp-bar">
<div class="rtp-fill w-10/12"></div>
</div>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="feature-tag text-xs py-1 px-3 rounded-full">Blackjack</span>
<span class="feature-tag text-xs py-1 px-3 rounded-full">Jackpot</span>
</div>
<div class="pill-badge orbitron text-xs py-1 px-3 rounded-full mb-4 text-center">+100% Deposits</div>
</div>
</div>
<!-- Game Card 4 (same as 1) -->
<div class="game-card glass-card rounded-2xl overflow-hidden transition-all duration-300">
<div class="relative">
<div class="game-thumb bg-gradient-to-br from-gray-900 to-black relative">
<div class="absolute inset-0 bg-[url('https://i.postimg.cc/wMhxPffZ/1-E1-B002-F-B6-B1-4-D2-C-A21-D-04-BFE2-AECB26.jpg')] bg-cover bg-center opacity-80"></div>
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent"></div>
<div class="absolute inset-0 flex items-center justify-center">
<span class="orbitron text-2xl neon-orange"></span>
</div>
<div class="game-thumb-overlay">
<button class="btn-blue w-full py-3 rounded-full orbitron text-sm">
PLAY NOW
</button>
</div>
</div>
</div>
<div class="p-6">
<h3 class="orbitron text-xl mb-2 neon-blue">JUWA 777</h3>
<div class="flex items-center mb-3">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<span class="text-sm">4.7 / 5</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-sm mb-1">
<span>Volatility</span>
<span>High</span>
</div>
<div class="volatility-bar">
<div class="volatility-fill w-4/5"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Popularity</span>
<span>96.5%</span>
</div>
<div class="rtp-bar">
<div class="rtp-fill w-11/12"></div>
</div>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="feature-tag text-xs py-1 px-3 rounded-full">Megaways Slot</span>
<span class="feature-tag text-xs py-1 px-3 rounded-full">Fish Tables</span>
</div>
<div class="pill-badge orbitron text-xs py-1 px-3 rounded-full mb-4 text-center">+75% Deposits</div>
</div>
</div>
<!-- Game Card 5 (same as 1) -->
<div class="game-card glass-card rounded-2xl overflow-hidden transition-all duration-300">
<div class="relative">
<div class="game-thumb bg-gradient-to-br from-gray-900 to-black relative">
<div class="absolute inset-0 bg-[url('https://i.postimg.cc/sXjJ1qS9/A1-C83797-1825-479-C-90-E0-A935-B7939-AB4.jpg')] bg-cover bg-center opacity-80"></div>
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent"></div>
<div class="absolute inset-0 flex items-center justify-center">
<span class="orbitron text-2xl neon-orange"></span>
</div>
<div class="game-thumb-overlay">
<button class="btn-blue w-full py-3 rounded-full orbitron text-sm">
PLAY NOW
</button>
</div>
</div>
</div>
<div class="p-6">
<h3 class="orbitron text-xl mb-2 neon-orange">ULTRA PANDA</h3>
<div class="flex items-center mb-3">
<div class="flex text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<span class="text-sm">4.8 / 5</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-sm mb-1">
<span>Volatility</span>
<span>Medium</span>
</div>
<div class="volatility-bar">
<div class="volatility-fill w-4/5"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Popularity</span>
<span>94.8%</span>
</div>
<div class="rtp-bar">
<div class="rtp-fill w-11/12"></div>
</div>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<span class="feature-tag text-xs py-1 px-3 rounded-full">Classic Slots</span>
<span class="feature-tag text-xs py-1 px-3 rounded-full">Megaways Slots</span>
</div>
<div class="pill-badge orbitron text-xs py-1 px-3 rounded-full mb-4 text-center">+200% Deposits</div>
</div>
</div>
</div>
</div>
</section>
<!-- Why Choose Us -->
<section class="py-6 px-4">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-8">
<h2 class="orbitron text-3xl md:text-4xl mb-4 neon-orange section-title">WHY PLAYERS CHOOSE US</h2>
<p class="text-lg opacity-90">Premium features, unparalleled rewards</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<!-- Feature 1 -->
<div class="feature-card glass-card rounded-xl p-4 text-center transition-all hover:transform hover:scale-105">
<div class="text-3xl mb-2 neon-orange">💰</div>
<h3 class="orbitron text-lg mb-2 neon-orange">Fast Cashouts</h3>
<p class="text-sm opacity-80">Verified withdrawals in under 30 minutes</p>
</div>
<!-- Feature 2 -->
<div class="feature-card glass-card rounded-xl p-4 text-center transition-all hover:transform hover:scale-105">
<div class="text-3xl mb-2 neon-blue">🎁</div>
<h3 class="orbitron text-lg mb-2 neon-blue">Cashback Rewards</h3>
<p class="text-sm opacity-80">Weekly cashback up to 15%</p>
</div>
<!-- Feature 3 -->
<div class="feature-card glass-card rounded-xl p-4 text-center transition-all hover:transform hover:scale-105">
<div class="text-3xl mb-2 neon-orange"></div>
<h3 class="orbitron text-lg mb-2 neon-orange">1M+ Players</h3>
<p class="text-sm opacity-80">Trusted since 2019</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-4 px-4">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-6">
<h2 class="orbitron text-2xl md:text-4xl mb-2 neon-orange section-title">REAL WINNERS</h2>
<p class="text-sm md:text-lg opacity-90">Hear from players who've won big</p>
</div>
<div class="flex overflow-x-auto gap-4 pb-4 -mx-4 px-4">
<!-- Testimonial 1 -->
<div class="testimonial-card glass-card rounded-xl p-4 flex-shrink-0 w-64">
<div class="flex mb-3 items-center">
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-orange-600 to-orange-800 flex items-center justify-center text-sm mr-3">
T
</div>
<div>
<h3 class="orbitron text-sm neon-orange">@TonyzTrickz</h3>
<p class="text-xs opacity-80">Fish Frenzy X</p>
</div>
</div>
<p class="text-xs italic opacity-90 mb-3">"Hit the jackpot on my third spin! Support team helped me out."</p>
<div class="text-xs orbitron neon-orange">Won $210</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card glass-card rounded-xl p-4 flex-shrink-0 w-64">
<div class="flex mb-3 items-center">
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-blue-600 to-blue-800 flex items-center justify-center text-sm mr-3">
S
</div>
<div>
<h3 class="orbitron text-sm neon-blue">@1995SarahG</h3>
<p class="text-xs opacity-80">Caishen's Treasure</p>
</div>
</div>
<p class="text-xs italic opacity-90 mb-3">"My cousin got the iPhone monthly gift drawing last week."</p>
<div class="text-xs orbitron neon-blue">Cashed $1,200</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card glass-card rounded-xl p-4 flex-shrink-0 w-64">
<div class="flex mb-3 items-center">
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-orange-600 to-orange-800 flex items-center justify-center text-sm mr-3">
J
</div>
<div>
<h3 class="orbitron text-sm neon-orange">@JackpotJJz</h3>
<p class="text-xs opacity-80">Blackjack VIP</p>
</div>
</div>
<p class="text-xs italic opacity-90 mb-3">"The 10% Cashback system is awesome!"</p>
<div class="text-xs orbitron neon-orange">2 Year Club</div>
</div>
</div>
</div>
</section>
<!-- Final CTA -->
<section class="py-8 bg-gradient-to-b from-black to-orange-900/20">
<div class="max-w-4xl mx-auto text-center">
<h2 class="orbitron text-2xl md:text-5xl mb-4 neon-orange">JOIN 1,000,000+ PLAYERS WINNING DAILY AT THE LUCKY CLOVERS CASINO</h2>
<button class="px-8 py-3 rounded-full btn-orange text-xl font-bold mb-6" onclick="window.location.href='https://nioplay.net'">
START PLAYING NOW
</button>
<p class="text-sm opacity-60 max-w-2xl mx-auto">No deposits required. 18+ only. The Lucky Clovers Casino is a sweepstakes gaming platform and is fully compliant with all Federal and State laws. The Lucky Clovers Sweepstakes offerings are valid for all residents in United States above the age of consent. For more information, please see our Terms & Conditions or email us at support@theluckyclovers.com</p>
</div>
</section>
<!-- Footer -->
<footer class="pt-12 pb-8 px-4 border-t border-gray-800">
<div class="max-w-6xl mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center mb-12">
<div class="mb-6 md:mb-0">
<h2 class="orbitron text-2xl neon-orange">THE LUCKY CLOVERS</h2>
</div>
<div class="flex flex-wrap justify-center gap-6 mb-6 md:mb-0">
<a href="#" class="orbitron text-sm hover:text-orange-500 transition-all">Terms of Service</a>
<a href="#" class="orbitron text-sm hover:text-orange-500 transition-all">Privacy Policy</a>
<a href="#" class="orbitron text-sm hover:text-orange-500 transition-all">FAQ</a>
<a href="#" class="orbitron text-sm hover:text-orange-500 transition-all">Responsible Gaming</a>
<a href="#" class="orbitron text-sm hover:text-orange-500 transition-all">Contact Support</a>
</div>
<div class="flex space-x-6">
<a href="#" class="social-icon text-xl hover:text-blue-500 transition-all"><i class="fab fa-facebook"></i></a>
<a href="#" class="social-icon text-xl hover:text-blue-500 transition-all"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-icon text-xl hover:text-blue-500 transition-all"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-icon text-xl hover:text-blue-500 transition-all"><i class="fab fa-discord"></i></a>
</div>
</div>
<div class="text-center pt-8 border-t border-gray-800">
<p class="text-sm opacity-60">© 2025 The Lucky Clovers. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Meteor Canvas Animation
const canvas = document.getElementById('meteorCanvas');
const ctx = canvas.getContext('2d');
// Set canvas size
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
// Meteor class
class Meteor {
constructor() {
this.reset();
}
reset() {
this.x = Math.random() * canvas.width;
this.y = Math.random() * canvas.height * 0.2 - 100;
this.length = Math.random() * 80 + 40;
this.speed = Math.random() * 10 + 5;
this.size = Math.random() * 2 + 2;
this.color = this.getRandomColor();
this.angle = 45 * Math.PI / 180; // 45 degrees in radians
}
getRandomColor() {
const colors = ['#FF6A00', '#00E4FF', '#FF00D4'];
return colors[Math.floor(Math.random() * colors.length)];
}
update() {
this.x += Math.cos(this.angle) * this.speed;
this.y += Math.sin(this.angle) * this.speed;
// Reset if meteor goes off screen
if (this.x > canvas.width + 100 || this.y > canvas.height + 100) {
this.reset();
}
}
draw() {
ctx.beginPath();
ctx.moveTo(this.x, this.y);
ctx.lineTo(
this.x - Math.cos(this.angle) * this.length,
this.y - Math.sin(this.angle) * this.length
);
// Create gradient for meteor tail
const gradient = ctx.createLinearGradient(
this.x,
this.y,
this.x - Math.cos(this.angle) * this.length,
this.y - Math.sin(this.angle) * this.length
);
gradient.addColorStop(0, this.color);
gradient.addColorStop(1, 'transparent');
ctx.strokeStyle = gradient;
ctx.lineWidth = this.size;
ctx.lineCap = 'round';
ctx.stroke();
}
}
// Create meteors
const meteors = [];
const meteorCount = 24;
for (let i = 0; i < meteorCount; i++) {
meteors.push(new Meteor());
}
// Animation loop
function animate() {
ctx.fillStyle = 'rgba(0, 0, 0, 0.1)';
ctx.fillRect(0, 0, canvas.width, canvas.height);
meteors.forEach(meteor => {
meteor.update();
meteor.draw();
});
requestAnimationFrame(animate);
}
// Handle window resize
window.addEventListener('resize', () => {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
});
// Synchronized counters animation
let jackpotAmount = 81279.00;
let playerCount = 1247895;
let displayedCount = 1000000;
const jackpotElement = document.getElementById('jackpot-amount');
const jackpotContainer = document.querySelector('.jackpot-counter');
const coinCounter = document.querySelector('.coin-counter');
function updateCounters() {
// Update values
const increment = Math.random() * 10 + 5;
jackpotAmount += increment;
playerCount += 7;
displayedCount += Math.floor(Math.random() * 15) + 1;
// Animate containers
gsap.to([jackpotContainer, coinCounter], {
scale: 1.05,
duration: 0.2,
yoyo: true,
repeat: 1,
ease: "power1.inOut"
});
// Add animation classes
jackpotElement.classList.add('jackpot-animation');
coinCounter.classList.add('coin-counter-animation');
// Update text after slight delay
setTimeout(() => {
jackpotElement.textContent = jackpotAmount.toLocaleString('en-US', {
minimumFractionDigits: 2,
maximumFractionDigits: 2
});
coinCounter.textContent = displayedCount.toLocaleString();
}, 100);
// Remove animation classes
setTimeout(() => {
jackpotElement.classList.remove('jackpot-animation');
coinCounter.classList.remove('coin-counter-animation');
}, 1000);
}
// Run every 3 seconds
setInterval(updateCounters, 3000);
// Start animation
animate();
// Accordion functionality
const accordionHeaders = document.querySelectorAll('.accordion-header');
accordionHeaders.forEach(header => {
header.addEventListener('click', () => {
const content = header.nextElementSibling;
content.classList.toggle('open');
// Toggle icon
const icon = header.querySelector('span');
icon.textContent = icon.textContent === '+' ? '−' : '+';
});
});
// Initialize GSAP animations for scroll-triggered effects
document.addEventListener('DOMContentLoaded', () => {
// Animate sections on scroll
gsap.utils.toArray('section').forEach(section => {
gsap.from(section, {
scrollTrigger: {
trigger: section,
start: 'top 80%',
toggleActions: 'play none none none'
},
opacity: 0,
y: 50,
duration: 1
});
});
// Animate VIP progress bar
setTimeout(() => {
const vipProgress = document.querySelector('.vip-progress-fill');
vipProgress.style.width = '42%';
}, 500);
// Jackpot animation
const jackpotElements = document.querySelectorAll('.daily-jackpot');
jackpotElements.forEach(el => {
setInterval(() => {
el.classList.toggle('neon-glow-yellow');
}, 2000);
});
});
</script>
</html>