mysticcrate-vault / index.html
ProjectGenesis's picture
Apply this
b00ca40 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MysticCrate Vault - Loot Box Rewards</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link rel="stylesheet" href="style.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: '#fff7ed',
100: '#ffedd5',
200: '#fed7aa',
300: '#fdba74',
400: '#fb923c',
500: '#f97316',
600: '#ea580c',
700: '#c2410c',
800: '#9a3412',
900: '#7c2d12',
},
secondary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
}
}
}
}
}
</script>
</head>
<body class="bg-black font-poppins text-white overflow-x-hidden">
<!-- Background Elements -->
<div class="fixed inset-0 -z-10">
<div class="absolute inset-0 bg-gradient-to-br from-[#0a0a0a] via-[#1a0d00] to-[#2e1300] opacity-100"></div>
<div class="absolute inset-0 bg-[radial-gradient(ellipse_at_center,_var(--tw-gradient-stops))] from-amber-500/5 via-transparent to-transparent"></div>
<div id="particles" class="absolute inset-0"></div>
</div>
<!-- Navigation -->
<nav class="fixed top-0 w-full z-50 bg-black/20 backdrop-blur-md border-b border-amber-500/20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<div class="flex items-center">
<a href="/" class="text-2xl font-orbitron font-bold bg-gradient-to-r from-amber-400 to-yellow-300 bg-clip-text text-transparent">
MYSTICCRATE
</a>
</div>
<div class="flex items-center space-x-6">
<div class="flex items-center space-x-2 bg-amber-500/10 px-4 py-2 rounded-full border border-amber-500/30">
<i data-feather="key" class="w-5 h-5 text-amber-400"></i>
<span class="font-semibold text-amber-300">5 Keys</span>
</div>
<div class="flex items-center space-x-4">
<div class="text-sm bg-primary-500/10 px-3 py-1 rounded-full border border-primary-500/30">
<span class="text-primary-300">2,500 SC</span>
</div>
<div class="text-sm bg-secondary-500/10 px-3 py-1 rounded-full border border-secondary-500/30">
<span class="text-secondary-300">150 GC</span>
</div>
</div>
<a href="/inventory.html" class="flex items-center space-x-2 bg-purple-500/10 px-4 py-2 rounded-full border border-purple-500/30 hover:bg-purple-500/20 transition-colors">
<i data-feather="package" class="w-5 h-5 text-purple-400"></i>
<span class="font-semibold text-purple-300">Inventory</span>
</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="relative pt-32 pb-20 px-4 text-center">
<div class="max-w-4xl mx-auto">
<h1 class="text-6xl md:text-7xl font-orbitron font-black uppercase mb-6">
<span class="bg-gradient-to-r from-amber-500 via-yellow-400 to-amber-300 bg-clip-text text-transparent">
LOOT BOX REWARDS
</span>
</h1>
<p class="text-xl md:text-2xl text-amber-200/80 mb-12 max-w-3xl mx-auto leading-relaxed">
Earn, collect, and unlock mystery prizes with every purchase or milestone.
</p>
</div>
</section>
<!-- Loot Boxes Grid -->
<section class="relative py-20 px-4">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Common Box -->
<div class="loot-box common" data-rarity="common">
<div class="box-content">
<div class="box-icon">
<i data-feather="box" class="w-16 h-16 text-emerald-400"></i>
</div>
<h3 class="text-2xl font-orbitron font-bold text-emerald-300">Common Crate</h3>
<p class="text-emerald-200/80 text-sm">Basic rewards, frequent drops</p>
<div class="mt-6">
<button class="open-btn" onclick="openBox('common')">
OPEN NOW
</button>
</div>
<div class="mt-4 text-xs text-emerald-200/60">
<i data-feather="clock" class="w-4 h-4 inline mr-1"></i>
Expires in 48h
</div>
</div>
</div>
<!-- Rare Box -->
<div class="loot-box rare" data-rarity="rare">
<div class="box-content">
<div class="box-icon">
<i data-feather="box" class="w-16 h-16 text-cyan-400"></i>
</div>
<h3 class="text-2xl font-orbitron font-bold text-cyan-300">Rare Chest</h3>
<p class="text-cyan-200/80 text-sm">Better odds, premium items</p>
<div class="mt-6">
<button class="open-btn" onclick="openBox('rare')">
OPEN NOW
</button>
</div>
<div class="mt-4 text-xs text-cyan-200/60">
<i data-feather="clock" class="w-4 h-4 inline mr-1"></i>
Expires in 48h
</div>
</div>
</div>
<!-- Epic Box -->
<div class="loot-box epic" data-rarity="epic">
<div class="box-content">
<div class="box-icon">
<i data-feather="box" class="w-16 h-16 text-purple-400"></i>
<i data-feather="lock" class="w-6 h-6 text-purple-300 absolute top-2 right-2"></i>
</div>
<h3 class="text-2xl font-orbitron font-bold text-purple-300">Epic Vault</h3>
<p class="text-purple-200/80 text-sm">Premium rewards, rare items</p>
<div class="mt-6">
<button class="open-btn" onclick="openBox('epic')">
<i data-feather="key" class="w-4 h-4 mr-2"></i>
USE KEY
</button>
</div>
<div class="mt-4 text-xs text-purple-200/60">
<i data-feather="clock" class="w-4 h-4 inline mr-1"></i>
Expires in 48h
</div>
</div>
</div>
<!-- Legendary Box -->
<div class="loot-box legendary" data-rarity="legendary">
<div class="box-content">
<div class="box-icon">
<i data-feather="box" class="w-16 h-16 text-amber-400"></i>
<i data-feather="lock" class="w-6 h-6 text-amber-300 absolute top-2 right-2"></i>
</div>
<h3 class="text-2xl font-orbitron font-bold text-amber-300">Legendary Trove</h3>
<p class="text-amber-200/80 text-sm">Ultimate prizes, massive multipliers</p>
<div class="mt-6">
<button class="open-btn" onclick="openBox('legendary')">
<i data-feather="key" class="w-4 h-4 mr-2"></i>
USE KEY
</button>
</div>
<div class="mt-4 text-xs text-amber-200/60">
<i data-feather="clock" class="w-4 h-4 inline mr-1"></i>
Expires in 48h
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Player Stats Section -->
<section class="relative py-12 px-4">
<div class="max-w-7xl mx-auto">
<div class="glass-panel p-8 rounded-2xl">
<h2 class="text-3xl font-orbitron font-bold text-amber-300 mb-8">Your Rewards Journey</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-8">
<div class="stat-card">
<div class="text-4xl font-orbitron font-bold text-amber-400">10</div>
<p class="text-amber-200/80">Boxes Opened</p>
</div>
<div class="stat-card">
<div class="text-4xl font-orbitron font-bold text-purple-400">3</div>
<p class="text-purple-200/80">Epic Streak</p>
</div>
<div class="stat-card">
<div class="text-4xl font-orbitron font-bold text-cyan-400">87%</div>
<p class="text-cyan-200/80">Win Rate</p>
</div>
</div>
<div class="bg-black/30 rounded-xl p-6">
<h3 class="text-xl font-orbitron font-bold text-amber-300 mb-4">Recent Wins</h3>
<div class="recent-wins-ticker">
<div class="ticker-content">
<span>πŸŽ‰ User123 won 500 SC from Common Crate!</span>
<span>πŸ”₯ ProGamer won Epic Skin from Epic Vault!</span>
<span>πŸ’° LuckyStar hit 50x Multiplier on Legendary Trove!</span>
<span>⚑ NewPlayer won 1000 SC from Rare Chest!</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Action Buttons -->
<section class="relative py-12 px-4">
<div class="max-w-7xl mx-auto flex flex-col sm:flex-row gap-4 justify-center">
<button class="action-btn primary" onclick="openAllBoxes()">
<i data-feather="package" class="w-5 h-5 mr-2"></i>
OPEN ALL BOXES
</button>
<button class="action-btn secondary" onclick="convertBoxes()">
<i data-feather="refresh-cw" class="w-5 h-5 mr-2"></i>
CONVERT BOXES
</button>
<button class="action-btn tertiary" onclick="showDropRates()">
<i data-feather="bar-chart-2" class="w-5 h-5 mr-2"></i>
VIEW DROP RATES
</button>
<a href="/leaderboard.html" class="action-btn tertiary">
<i data-feather="award" class="w-5 h-5 mr-2"></i>
LEADERBOARD
</a>
</div>
</section>
<!-- Reveal Modal -->
<div id="revealModal" class="fixed inset-0 z-50 hidden">
<div class="absolute inset-0 bg-black/80 backdrop-blur-sm"></div>
<div class="relative flex items-center justify-center min-h-screen p-4">
<div class="reveal-content">
<div class="multiplier-display">
<span class="multiplier-text">x10</span>
<span class="multiplier-label">MULTIPLIER!</span>
</div>
<div class="rewards-grid">
<div class="reward-card">500 SC</div>
<div class="reward-card">XP Boost</div>
<div class="reward-card">Rare Skin</div>
</div>
<button class="close-reveal" onclick="closeReveal()">
<i data-feather="x" class="w-6 h-6"></i>
</button>
</div>
</div>
</div>
<!-- Drop Rates Modal -->
<div id="dropRatesModal" class="fixed inset-0 z-50 hidden">
<div class="absolute inset-0 bg-black/80 backdrop-blur-sm"></div>
<div class="relative flex items-center justify-center min-h-screen p-4">
<div class="glass-panel p-8 max-w-2xl">
<h2 class="text-3xl font-orbitron font-bold text-amber-300 mb-6">Drop Rates & Odds</h2>
<div class="space-y-4">
<div class="drop-rate-item">
<span class="rarity common">Common</span>
<span class="rate">60% drop rate</span>
<span class="ev">25% EV</span>
</div>
<div class="drop-rate-item">
<span class="rarity rare">Rare</span>
<span class="rate">25% drop rate</span>
<span class="ev">35% EV</span>
</div>
<div class="drop-rate-item">
<span class="rarity epic">Epic</span>
<span class="rate">10% drop rate</span>
<span class="ev">50% EV</span>
</div>
<div class="drop-rate-item">
<span class="rarity legendary">Legendary</span>
<span class="rate">5% drop rate</span>
<span class="ev">85% EV</span>
</div>
</div>
<button class="mt-6 action-btn primary w-full" onclick="closeDropRates()">
GOT IT
</button>
</div>
</div>
</div>
<script src="components/particles.js"></script>
<script src="components/reveal-animation.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
initParticles();
initParallax();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>