Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>NioCasino VIP Lounge</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| 'neon-orange': '#FFA500', | |
| 'neon-yellow': '#FFD700', | |
| 'glass': 'rgba(255, 255, 255, 0.05)', | |
| }, | |
| boxShadow: { | |
| 'neon-sm': '0 0 6px 1px rgba(255, 165, 0, 0.4)', | |
| 'neon-md': '0 0 10px 2px rgba(255, 165, 0, 0.7)', | |
| 'neon-lg': '0 0 15px 4px rgba(255, 165, 0, 0.9)', | |
| }, | |
| backgroundImage: { | |
| 'vip-gradient': 'radial-gradient(circle at center, #0a0a0a 0%, #1a0d00 40%, #2e1300 70%, #000000 100%)', | |
| 'glass-gradient': 'linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0))', | |
| 'progress-gradient': 'linear-gradient(90deg, #FFA500, #FFD700)', | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| * { | |
| font-family: 'Rajdhani', sans-serif; | |
| } | |
| body { | |
| background: radial-gradient(circle at center, #0a0a0a 0%, #1a0d00 40%, #2e1300 70%, #000000 100%); | |
| min-height: 100vh; | |
| color: rgba(255, 255, 255, 0.9); | |
| overflow-x: hidden; | |
| } | |
| .glass-card { | |
| backdrop-filter: blur(16px); | |
| background: rgba(255, 255, 255, 0.05); | |
| border: 1px solid rgba(255, 255, 255, 0.15); | |
| border-radius: 16px; | |
| overflow: hidden; | |
| position: relative; | |
| z-index: 2; | |
| } | |
| .hero-shine::after, | |
| .perks-shine::after { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: -150%; | |
| width: 250%; | |
| height: 100%; | |
| background: linear-gradient( | |
| 120deg, | |
| rgba(255, 255, 255, 0.03) 0%, | |
| rgba(255, 255, 255, 0.12) 50%, | |
| rgba(255, 255, 255, 0.03) 100% | |
| ); | |
| animation: glass-shine 8s ease-in-out infinite; | |
| pointer-events: none; | |
| z-index: -1; | |
| } | |
| @keyframes glass-shine { | |
| 0% { left: -150%; } | |
| 100% { left: 150%; } | |
| } | |
| .neon-btn { | |
| backdrop-filter: blur(10px); | |
| background: rgba(0, 0, 0, 0.3); | |
| border: 1px solid #FFA500; | |
| border-radius: 10px; | |
| color: #FFD700; | |
| text-shadow: 0 0 5px rgba(255, 215, 0, 0.7); | |
| transition: all 0.3s ease; | |
| transform: scale(1); | |
| position: relative; | |
| overflow: hidden; | |
| z-index: 1; | |
| } | |
| .neon-btn::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: -100%; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.2), transparent); | |
| transition: all 0.6s ease; | |
| z-index: -1; | |
| } | |
| .neon-btn:hover { | |
| transform: scale(1.05); | |
| box-shadow: 0 0 15px 3px rgba(255, 165, 0, 0.5); | |
| } | |
| .neon-btn:hover::before { | |
| left: 100%; | |
| } | |
| .progress-track { | |
| height: 16px; | |
| background: rgba(255, 255, 255, 0.1); | |
| border-radius: 10px; | |
| overflow: hidden; | |
| } | |
| .progress-bar { | |
| height: 100%; | |
| background: linear-gradient(90deg, #FFA500, #FFD700); | |
| position: relative; | |
| } | |
| .progress-bar::after { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); | |
| background-size: 300% 300%; | |
| animation: progress-glow 2s ease infinite; | |
| } | |
| @keyframes progress-glow { | |
| 0% { background-position: 0% 50%; } | |
| 50% { background-position: 100% 50%; } | |
| 100% { background-position: 0% 50%; } | |
| } | |
| .tier-card { | |
| position: relative; | |
| transition: all 0.3s ease; | |
| } | |
| .tier-card .info { | |
| display: none; | |
| position: absolute; | |
| bottom: -100px; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| width: 250px; | |
| background: rgba(0, 0, 0, 0.8); | |
| backdrop-filter: blur(10px); | |
| border: 1px solid rgba(255, 165, 0, 0.6); | |
| border-radius: 12px; | |
| padding: 16px; | |
| box-shadow: 0 10px 20px rgba(0,0,0,0.5); | |
| z-index: 100; | |
| } | |
| .tier-card:hover .info { | |
| display: block; | |
| animation: fadeIn 0.3s ease; | |
| } | |
| @keyframes fadeIn { | |
| from { opacity: 0; } | |
| to { opacity: 1; } | |
| } | |
| .perk-icon { | |
| display: inline-flex; | |
| justify-content: center; | |
| align-items: center; | |
| width: 80px; | |
| height: 80px; | |
| border-radius: 50%; | |
| background: rgba(0, 0, 0, 0.3); | |
| border: 1px solid rgba(255, 165, 0, 0.3); | |
| transition: all 0.3s ease; | |
| position: relative; | |
| } | |
| .perk-icon:hover { | |
| transform: scale(1.1); | |
| box-shadow: 0 0 15px 3px rgba(255, 165, 0, 0.3); | |
| border-color: #FFD700; | |
| z-index: 10; | |
| } | |
| .countdown { | |
| font-family: 'Courier New', monospace; | |
| font-weight: bold; | |
| letter-spacing: 2px; | |
| color: #FFD700; | |
| text-shadow: 0 0 8px rgba(255, 215, 0, 0.8); | |
| } | |
| .pulse { | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7); } | |
| 70% { box-shadow: 0 0 0 15px rgba(255, 165, 0, 0); } | |
| 100% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0); } | |
| } | |
| .lock-icon { | |
| position: absolute; | |
| top: 10px; | |
| right: 10px; | |
| color: rgba(255,255,255,0.5); | |
| background: rgba(0,0,0,0.7); | |
| border-radius: 50%; | |
| width: 28px; | |
| height: 28px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-size: 0.8rem; | |
| } | |
| .hidden { | |
| opacity: 0.4; | |
| filter: grayscale(70%); | |
| } | |
| .tier-diamond { | |
| background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0)); | |
| border: 1px solid #FFD700; | |
| transform: rotate(45deg); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .tier-diamond span { | |
| transform: rotate(-45deg); | |
| font-weight: 700; | |
| font-size: 0.8rem; | |
| } | |
| .scroll-container { | |
| scrollbar-width: thin; | |
| scrollbar-color: #FFA500 transparent; | |
| } | |
| .scroll-container::-webkit-scrollbar { | |
| height: 6px; | |
| } | |
| .scroll-container::-webkit-scrollbar-track { | |
| background: transparent; | |
| } | |
| .scroll-container::-webkit-scrollbar-thumb { | |
| background: #FFA500; | |
| border-radius: 3px; | |
| } | |
| .glow-border { | |
| position: absolute; | |
| inset: 0; | |
| border-radius: 16px; | |
| box-shadow: 0 0 12px 0px rgba(255, 165, 0, 0.7); | |
| opacity: 0; | |
| transition: opacity 0.3s; | |
| z-index: -1; | |
| } | |
| .tier-card:hover .glow-border { | |
| opacity: 0.7; | |
| } | |
| @media (max-width: 767px) { | |
| .flex-wrap-mobile { | |
| flex-wrap: wrap; | |
| } | |
| .w-32-mobile { | |
| width: 8rem; | |
| } | |
| .tier-card .info { | |
| display: none ; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen bg-vip-gradient py-8 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto"> | |
| <!-- Hero Section --> | |
| <section class="glass-card hero-shine p-8 mb-8"> | |
| <div class="flex flex-wrap items-center justify-between gap-6"> | |
| <div class="flex-1 min-w-[300px]"> | |
| <div class="flex items-center gap-4 mb-8"> | |
| <div class="bg-gradient-to-r from-neon-orange to-neon-yellow rounded-full w-32 h-32 flex items-center justify-center"> | |
| <div class="bg-black bg-opacity-50 rounded-full w-28 h-28 flex flex-col items-center justify-center"> | |
| <span class="text-neon-orange text-sm">VIP TIER</span> | |
| <h2 class="text-neon-yellow text-2xl font-bold uppercase tracking-wider">NioDiamond</h2> | |
| </div> | |
| </div> | |
| <div class="flex-1"> | |
| <h1 class="text-3xl font-bold uppercase tracking-wide">VIP Tier Status</h1> | |
| <p class="text-neon-orange opacity-90">Elite member privileges</p> | |
| </div> | |
| </div> | |
| <div class="mb-6"> | |
| <div class="flex justify-between text-sm opacity-90 mb-2"> | |
| <span>XP Progress: 82,430 / 100,000</span> | |
| <span>82%</span> | |
| </div> | |
| <div class="progress-track"> | |
| <div class="progress-bar" style="width: 82%"></div> | |
| </div> | |
| <div class="text-sm opacity-80 mt-2">17,570 XP to next level</div> | |
| </div> | |
| <button class="neon-btn py-3 px-6 uppercase font-semibold text-lg">How to Rank Up</button> | |
| </div> | |
| <div class="bg-black bg-opacity-20 rounded-xl p-6 min-w-[280px]"> | |
| <h3 class="text-xl font-bold uppercase mb-4 border-b border-neon-orange pb-2">Current Benefits</h3> | |
| <ul class="space-y-3"> | |
| <li class="flex items-center gap-2"> | |
| <i class="fas fa-gem text-neon-yellow"></i> | |
| <span>20% Cashback</span> | |
| </li> | |
| <li class="flex items-center gap-2"> | |
| <i class="fas fa-headset text-neon-yellow"></i> | |
| <span>VIP Manager</span> | |
| </li> | |
| <li class="flex items-center gap-2"> | |
| <i class="fas fa-gift text-neon-yellow"></i> | |
| <span>Monthly Bonuses</span> | |
| </li> | |
| <li class="flex items-center gap-2"> | |
| <i class="fas fa-rocket text-neon-yellow"></i> | |
| <span>Priority Withdrawals</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- VIP Tier Carousel --> | |
| <section class="mb-8 py-6 px-4"> | |
| <div class="flex justify-between items-center mb-6 px-2"> | |
| <h2 class="text-2xl font-bold uppercase">VIP Tiers</h2> | |
| <div class="flex space-x-3"> | |
| <button class="scroll-left bg-glass text-neon-orange p-2 rounded-full"> | |
| <i class="fas fa-chevron-left"></i> | |
| </button> | |
| <button class="scroll-right bg-glass text-neon-orange p-2 rounded-full"> | |
| <i class="fas fa-chevron-right"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="scroll-container overflow-x-auto pb-4"> | |
| <div class="flex space-x-8 min-w-max px-4"> | |
| <!-- Tier Card 1 --> | |
| <div class="tier-card w-40 flex flex-col items-center py-4 px-2 relative"> | |
| <div class="glow-border"></div> | |
| <div class="tier-diamond w-16 h-16"> | |
| <span class="text-white">Bronze</span> | |
| </div> | |
| <p class="mt-4 mb-2 text-neon-yellow">5K XP</p> | |
| <div class="text-sm text-center">Reached</div> | |
| <div class="info"> | |
| <h4 class="font-bold text-neon-orange mb-2">Bronze Tier</h4> | |
| <p class="text-sm opacity-90 mb-2">5,000 XP to unlock</p> | |
| <ul class="text-xs space-y-1"> | |
| <li>• 5% Cashback</li> | |
| <li>• Weekly Free Spins</li> | |
| <li>• Basic Support</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Tier Card 2 --> | |
| <div class="tier-card w-40 flex flex-col items-center py-4 px-2 relative"> | |
| <div class="glow-border"></div> | |
| <div class="tier-diamond w-16 h-16"> | |
| <span class="text-white">Silver</span> | |
| </div> | |
| <p class="mt-4 mb-2 text-neon-yellow">15K XP</p> | |
| <div class="text-sm text-center">Reached</div> | |
| <div class="info"> | |
| <h4 class="font-bold text-neon-orange mb-2">Silver Tier</h4> | |
| <p class="text-sm opacity-90 mb-2">15,000 XP to unlock</p> | |
| <ul class="text-xs space-y-1"> | |
| <li>• 10% Cashback</li> | |
| <li>• Weekly Bonuses</li> | |
| <li>• Priority Support</li> | |
| <li>• Monthly Giveaway</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Tier Card 3 --> | |
| <div class="tier-card w-40 flex flex-col items-center py-4 px-2 relative"> | |
| <div class="glow-border"></div> | |
| <div class="tier-diamond w-16 h-16"> | |
| <span class="text-white">Gold</span> | |
| </div> | |
| <p class="mt-4 mb-2 text-neon-yellow">30K XP</p> | |
| <div class="text-sm text-center">Reached</div> | |
| <div class="info"> | |
| <h4 class="font-bold text-neon-orange mb-2">Gold Tier</h4> | |
| <p class="text-sm opacity-90 mb-2">30,000 XP to unlock</p> | |
| <ul class="text-xs space-y-1"> | |
| <li>• 15% Cashback</li> | |
| <li>• Daily Bonuses</li> | |
| <li>• Personal Manager</li> | |
| <li>• Birthday Reward</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Tier Card 4 - Current --> | |
| <div class="tier-card w-40 flex flex-col items-center py-4 px-2 relative"> | |
| <div class="absolute top-0 right-0 bg-gradient-to-r from-neon-orange to-neon-yellow text-black font-bold py-1 px-2 rounded-bl-lg rounded-tr-lg text-xs"> | |
| CURRENT | |
| </div> | |
| <div class="glow-border"></div> | |
| <div class="bg-gradient-to-r from-neon-orange to-neon-yellow w-16 h-16 transform rotate-45 flex items-center justify-center"> | |
| <span class="text-black font-bold transform -rotate-45">Diamond</span> | |
| </div> | |
| <p class="mt-4 mb-2 text-neon-yellow">100K XP</p> | |
| <div class="text-sm text-center">Active</div> | |
| <div class="info"> | |
| <h4 class="font-bold text-neon-orange mb-2">Diamond Tier</h4> | |
| <p class="text-sm opacity-90 mb-2">100,000 XP to unlock</p> | |
| <ul class="text-xs space-y-1"> | |
| <li>• 20% Cashback</li> | |
| <li>• Premium Bonuses</li> | |
| <li>• VIP Manager</li> | |
| <li>• Luxury Gifts</li> | |
| <li>• Event Invitations</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Tier Card 5 - Ruby --> | |
| <div class="tier-card w-40 flex flex-col items-center py-4 px-2 relative hidden"> | |
| <div class="glow-border"></div> | |
| <div class="bg-gradient-to-r from-red-600 to-pink-600 w-16 h-16 transform rotate-45 flex items-center justify-center"> | |
| <span class="text-white font-bold transform -rotate-45">Ruby</span> | |
| </div> | |
| <p class="mt-4 mb-2 text-gray-400">150K XP</p> | |
| <div class="text-sm text-center text-gray-400">Locked</div> | |
| <div class="lock-icon"> | |
| <i class="fas fa-lock"></i> | |
| </div> | |
| <div class="info"> | |
| <h4 class="font-bold text-neon-orange mb-2">Ruby Tier</h4> | |
| <p class="text-sm opacity-90 mb-2">150,000 XP to unlock</p> | |
| <ul class="text-xs space-y-1"> | |
| <li>• 22% Cashback</li> | |
| <li>• Enhanced Bonuses</li> | |
| <li>• VIP Concierge</li> | |
| <li>• Exclusive Events</li> | |
| <li>• Personal Shopper</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Tier Card 6 - Emerald --> | |
| <div class="tier-card w-40 flex flex-col items-center py-4 px-2 relative hidden"> | |
| <div class="glow-border"></div> | |
| <div class="bg-gradient-to-r from-emerald-500 to-teal-500 w-16 h-16 transform rotate-45 flex items-center justify-center"> | |
| <span class="text-white font-bold transform -rotate-45">Emerald</span> | |
| </div> | |
| <p class="mt-4 mb-2 text-gray-400">200K XP</p> | |
| <div class="text-sm text-center text-gray-400">Locked</div> | |
| <div class="lock-icon"> | |
| <i class="fas fa-lock"></i> | |
| </div> | |
| <div class="info"> | |
| <h4 class="font-bold text-neon-orange mb-2">Emerald Tier</h4> | |
| <p class="text-sm opacity-90 mb-2">200,000 XP to unlock</p> | |
| <ul class="text-xs space-y-1"> | |
| <li>• 24% Cashback</li> | |
| <li>• Elite Bonuses</li> | |
| <li>• 24/7 Concierge</li> | |
| <li>• VIP Events</li> | |
| <li>• Luxury Getaways</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Tier Card 7 - Platinum --> | |
| <div class="tier-card w-40 flex flex-col items-center py-4 px-2 relative hidden"> | |
| <div class="glow-border"></div> | |
| <div class="tier-diamond w-16 h-16"> | |
| <span class="text-white">Platinum</span> | |
| </div> | |
| <p class="mt-4 mb-2 text-gray-400">250K XP</p> | |
| <div class="text-sm text-center text-gray-400">Locked</div> | |
| <div class="lock-icon"> | |
| <i class="fas fa-lock"></i> | |
| </div> | |
| <div class="info"> | |
| <h4 class="font-bold text-neon-orange mb-2">Platinum Tier</h4> | |
| <p class="text-sm opacity-90 mb-2">250,000 XP to unlock</p> | |
| <ul class="text-xs space-y-1"> | |
| <li>• 25% Cashback</li> | |
| <li>• Exclusive Bonuses</li> | |
| <li>• Dedicated VIP Manager</li> | |
| <li>• Luxury Travel Rewards</li> | |
| <li>• Special Event Invites</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Tier Card 8 - Onyx --> | |
| <div class="tier-card w-40 flex flex-col items-center py-4 px-2 relative hidden"> | |
| <div class="glow-border"></div> | |
| <div class="tier-diamond w-16 h-16"> | |
| <span class="text-white">Onyx</span> | |
| </div> | |
| <p class="mt-4 mb-2 text-gray-400">500K XP</p> | |
| <div class="text-sm text-center text-gray-400">Locked</div> | |
| <div class="lock-icon"> | |
| <i class="fas fa-lock"></i> | |
| </div> | |
| <div class="info"> | |
| <h4 class="font-bold text-neon-orange mb-2">Onyx Tier</h4> | |
| <p class="text-sm opacity-90 mb-2">500,000 XP to unlock</p> | |
| <ul class="text-xs space-y-1"> | |
| <li>• 30% Cashback</li> | |
| <li>• Personalized Bonuses</li> | |
| <li>• Elite Concierge</li> | |
| <li>• Elite Experiences</li> | |
| <li>• Platinum Card</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Claim VIP Package --> | |
| <div class="flex flex-col items-center justify-center min-w-[220px]"> | |
| <div class="glass-card h-full w-full flex flex-col items-center justify-center py-6 px-4 text-center"> | |
| <i class="fas fa-crown text-4xl mb-4 text-neon-yellow"></i> | |
| <h3 class="text-xl font-bold uppercase mb-3">VIP Package</h3> | |
| <p class="text-sm opacity-90 mb-4">Claim your exclusive Diamond VIP Package now!</p> | |
| <button class="neon-btn px-6 py-3 uppercase font-bold w-full max-w-xs">Claim Now</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Stats Panel --> | |
| <section class="glass-card mb-8 p-6"> | |
| <div class="flex flex-wrap justify-between items-center mb-6"> | |
| <h2 class="text-2xl font-bold uppercase">Your VIP Stats</h2> | |
| <div class="flex items-center space-x-4"> | |
| <span class="opacity-80">Show tips</span> | |
| <div class="relative inline-block w-12 h-6"> | |
| <input type="checkbox" class="sr-only" id="tip-toggle" checked> | |
| <div class="toggle-bg bg-gray-600 border-2 border-gray-600 rounded-full w-12 h-6 cursor-pointer"></div> | |
| <div class="absolute left-1 top-1 bg-white rounded-full w-4 h-4 transition toggle-dot"></div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> | |
| <div class="glass-card p-5 flex flex-col items-center text-center"> | |
| <i class="fas fa-star text-3xl text-neon-yellow mb-3"></i> | |
| <h3 class="text-lg font-bold uppercase mb-2">Total XP</h3> | |
| <p class="text-2xl font-bold">82,430</p> | |
| </div> | |
| <div class="glass-card p-5 flex flex-col items-center text-center"> | |
| <i class="fas fa-calendar-alt text-3xl text-neon-yellow mb-3"></i> | |
| <h3 class="text-lg font-bold uppercase mb-2">Days Active</h3> | |
| <p class="text-2xl font-bold">178</p> | |
| </div> | |
| <div class="glass-card p-5 flex flex-col items-center text-center"> | |
| <i class="fas fa-coins text-3xl text-neon-yellow mb-3"></i> | |
| <h3 class="text-lg font-bold uppercase mb-2">Wagered</h3> | |
| <p class="text-2xl font-bold">$82,490</p> | |
| </div> | |
| <div class="glass-card p-5 flex flex-col items-center text-center"> | |
| <i class="fas fa-trophy text-3xl text-neon-yellow mb-3"></i> | |
| <h3 class="text-lg font-bold uppercase mb-2">Tier Rank</h3> | |
| <p class="text-2xl font-bold">#4,821</p> | |
| </div> | |
| </div> | |
| <!-- Tips Section --> | |
| <div class="mt-8 bg-black bg-opacity-20 rounded-xl p-6"> | |
| <h3 class="text-xl font-bold mb-4 flex items-center gap-2"> | |
| <i class="fas fa-lightbulb text-neon-yellow"></i> | |
| <span>Tips to Rank Up Faster</span> | |
| </h3> | |
| <ul class="grid grid-cols-1 md:grid-cols-2 gap-4"> | |
| <li class="flex items-start gap-3"> | |
| <div class="bg-neon-orange rounded-full w-6 h-6 flex items-center justify-center flex-shrink-0"> | |
| <i class="fas fa-check text-black text-xs"></i> | |
| </div> | |
| <p>Place bets on high XP multiplier games marked with <span class="text-neon-orange">★</span></p> | |
| </li> | |
| <li class="flex items-start gap-3"> | |
| <div class="bg-neon-orange rounded-full w-6 h-6 flex items-center justify-center flex-shrink-0"> | |
| <i class="fas fa-check text-black text-xs"></i> | |
| </div> | |
| <p>Complete daily challenges for bonus XP rewards</p> | |
| </li> | |
| <li class="flex items-start gap-3"> | |
| <div class="bg-neon-orange rounded-full w-6 h-6 flex items-center justify-center flex-shrink-0"> | |
| <i class="fas fa-check text-black text-xs"></i> | |
| </div> | |
| <p>Invite friends - receive 5% of their XP gains</p> | |
| </li> | |
| <li class="flex items-start gap-3"> | |
| <div class="bg-neon-orange rounded-full w-6 h-6 flex items-center justify-center flex-shrink-0"> | |
| <i class="fas fa-check text-black text-xs"></i> | |
| </div> | |
| <p>Purchase XP boosts in the VIP store for instant gain</p> | |
| </li> | |
| </ul> | |
| </div> | |
| </section> | |
| <!-- VIP Perks Grid --> | |
| <section class="glass-card perks-shine mb-8 p-6"> | |
| <div class="flex justify-between items-center mb-6"> | |
| <h2 class="text-2xl font-bold uppercase">VIP Perks</h2> | |
| <button class="neon-btn py-2 px-5 uppercase font-semibold flex items-center gap-2"> | |
| View Full Chart <i class="fas fa-arrow-right"></i> | |
| </button> | |
| </div> | |
| <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-6"> | |
| <!-- Perk 1 --> | |
| <div class="flex flex-col items-center"> | |
| <div class="perk-icon"> | |
| <i class="fas fa-credit-card text-3xl text-neon-yellow"></i> | |
| </div> | |
| <h3 class="text-lg font-semibold mt-3 text-center">Cashback</h3> | |
| <span class="text-xs text-neon-orange text-center">20% weekly</span> | |
| </div> | |
| <!-- Perk 2 --> | |
| <div class="flex flex-col items-center"> | |
| <div class="perk-icon"> | |
| <i class="fas fa-user-tie text-3xl text-neon-yellow"></i> | |
| </div> | |
| <h3 class="text-lg font-semibold mt-3 text-center">VIP Manager</h3> | |
| <span class="text-xs text-neon-orange text-center">24/7 Support</span> | |
| </div> | |
| <!-- Perk 3 --> | |
| <div class="flex flex-col items-center"> | |
| <div class="perk-icon"> | |
| <i class="fas fa-dice text-3xl text-neon-yellow"></i> | |
| </div> | |
| <h3 class="text-lg font-semibold mt-3 text-center">Free Spins</h3> | |
| <span class="text-xs text-neon-orange text-center">150 monthly</span> | |
| </div> | |
| <!-- Perk 5 - Locked --> | |
| <div class="flex flex-col items-center opacity-40"> | |
| <div class="perk-icon relative"> | |
| <i class="fas fa-jet-fighter-up text-3xl text-gray-400"></i> | |
| <div class="lock-icon"> | |
| <i class="fas fa-lock"></i> | |
| </div> | |
| </div> | |
| <h3 class="text-lg font-semibold mt-3 text-center">Exclusive Events</h3> | |
| <span class="text-xs text-gray-400 text-center">Unlocks at Ruby Tier</span> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Claimable Rewards --> | |
| <section class="glass-card mb-8 p-6"> | |
| <div class="flex justify-between items-center mb-6"> | |
| <h2 class="text-2xl font-bold uppercase">Claimable Rewards</h2> | |
| <div class="flex items-center gap-2 text-sm"> | |
| <i class="fas fa-sync text-neon-orange"></i> | |
| <span>Resets in:</span> | |
| </div> | |
| </div> | |
| <div class="flex flex-col sm:flex-row gap-6"> | |
| <div class="glass-card p-6 flex-1"> | |
| <div class="flex flex-wrap justify-between items-center mb-5"> | |
| <h3 class="text-xl font-bold uppercase">Weekly Loyalty Bonus</h3> | |
| <div class="bg-neon-orange text-black py-1 px-3 rounded-full text-sm font-bold"> | |
| Available | |
| </div> | |
| </div> | |
| <div class="flex items-center gap-4 mb-6"> | |
| <div class="bg-gradient-to-r from | |
| </body> | |
| </html> |