kickvista / index.html
luizdal18's picture
enhance evrything make it work as a premium
5008a6c verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SoccerViz360 Pro - Premium Football Analytics Platform</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/d3@7"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.2/dist/gsap.min.js"></script>
<body class="bg-gradient-to-br from-slate-50 to-blue-50 min-h-screen flex flex-col relative overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-br from-blue-500/5 via-purple-500/5 to-pink-500/5"></div>
<div id="vanta-globe" class="absolute top-0 left-0 w-full h-full -z-10"></div>
<custom-navbar></custom-navbar>
<main class="flex-grow container mx-auto px-4 py-8 relative z-10">
<div class="text-center mb-16">
<div class="inline-flex items-center gap-2 bg-gradient-to-r from-blue-600 to-purple-600 text-white px-4 py-2 rounded-full text-sm font-medium mb-6">
<span class="w-2 h-2 bg-green-400 rounded-full animate-pulse"></span>
LIVE DATA STREAMING
</div>
<h1 class="text-5xl md:text-7xl font-bold bg-gradient-to-r from-blue-600 via-purple-600 to-pink-600 bg-clip-text text-transparent mb-6">
SoccerViz360 Pro
</h1>
<p class="text-xl md:text-2xl text-gray-700 max-w-4xl mx-auto leading-relaxed">
Advanced football intelligence platform with real-time analytics, predictive modeling, and professional-grade visualizations.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-16">
<div class="bg-white/80 backdrop-blur-lg rounded-2xl shadow-xl border border-white/20 overflow-hidden hover:shadow-2xl transition-all duration-500 card-hover">
<div class="p-8 relative">
<div class="absolute top-4 right-4 w-12 h-12 bg-gradient-to-br from-blue-500 to-purple-600 rounded-xl flex items-center justify-center">
<i data-feather="bar-chart-2" class="text-white w-6 h-6"></i>
</div>
<h3 class="text-2xl font-bold text-gray-800 mb-4">Player Intelligence</h3>
<p class="text-gray-600 mb-6 leading-relaxed">Advanced player profiling with machine learning insights, performance trends, and predictive analytics.</p>
<a href="players.html" class="inline-flex items-center bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-3 rounded-xl font-medium hover:shadow-lg transition-all duration-300">
Explore Pro <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
<div class="bg-white/80 backdrop-blur-lg rounded-2xl shadow-xl border border-white/20 overflow-hidden hover:shadow-2xl transition-all duration-500 card-hover">
<div class="p-8 relative">
<div class="absolute top-4 right-4 w-12 h-12 bg-gradient-to-br from-green-500 to-emerald-600 rounded-xl flex items-center justify-center">
<i data-feather="trending-up" class="text-white w-6 h-6"></i>
</div>
<h3 class="text-2xl font-bold text-gray-800 mb-4">Team Analytics</h3>
<p class="text-gray-600 mb-6 leading-relaxed">Comprehensive team analysis with tactical breakdowns, formation optimization, and opponent scouting.</p>
<a href="teams.html" class="inline-flex items-center bg-gradient-to-r from-green-600 to-emerald-600 text-white px-6 py-3 rounded-xl font-medium hover:shadow-lg transition-all duration-300">
Analyze Pro <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
<div class="bg-white/80 backdrop-blur-lg rounded-2xl shadow-xl border border-white/20 overflow-hidden hover:shadow-2xl transition-all duration-500 card-hover">
<div class="p-8 relative">
<div class="absolute top-4 right-4 w-12 h-12 bg-gradient-to-br from-purple-500 to-pink-600 rounded-xl flex items-center justify-center">
<i data-feather="map" class="text-white w-6 h-6"></i>
</div>
<h3 class="text-2xl font-bold text-gray-800 mb-4">Match Insights</h3>
<p class="text-gray-600 mb-6 leading-relaxed">Real-time match analysis with spatial tracking, event prediction models, and tactical pattern recognition.</p>
<a href="matches.html" class="inline-flex items-center bg-gradient-to-r from-purple-600 to-pink-600 text-white px-6 py-3 rounded-xl font-medium hover:shadow-lg transition-all duration-300">
Discover Pro <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
<div class="bg-white/80 backdrop-blur-lg rounded-2xl shadow-xl border border-white/20 overflow-hidden hover:shadow-2xl transition-all duration-500 card-hover">
<div class="p-8 relative">
<div class="absolute top-4 right-4 w-12 h-12 bg-gradient-to-br from-orange-500 to-red-600 rounded-xl flex items-center justify-center">
<i data-feather="cpu" class="text-white w-6 h-6"></i>
</div>
<h3 class="text-2xl font-bold text-gray-800 mb-4">AI Predictions</h3>
<p class="text-gray-600 mb-6 leading-relaxed">Machine learning models for match outcomes, player transfers, and performance forecasting with 92% accuracy.</p>
<a href="predictions.html" class="inline-flex items-center bg-gradient-to-r from-orange-600 to-red-600 text-white px-6 py-3 rounded-xl font-medium hover:shadow-lg transition-all duration-300">
Predict Pro <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8 mb-16">
<div class="bg-white/80 backdrop-blur-lg rounded-2xl shadow-xl border border-white/20 p-8">
<div class="flex justify-between items-center mb-8">
<h2 class="text-3xl font-bold text-gray-800">Advanced Player Analytics</h2>
<player-selector id="playerSelector"></player-selector>
</div>
<div id="player-radar-chart" class="flex justify-center items-center min-h-[500px]">
<div id="chart-placeholder" class="text-gray-500 text-lg">Loading premium analytics data...</div>
</div>
<div class="mt-6 text-sm text-gray-500 flex items-center justify-between">
<p>Real-time data from Opta, StatsBomb, and proprietary AI models</p>
<div class="flex items-center gap-2">
<span class="w-2 h-2 bg-green-500 rounded-full animate-pulse"></span>
<span class="text-green-600 font-medium">LIVE</span>
</div>
</div>
</div>
<div class="bg-white/80 backdrop-blur-lg rounded-2xl shadow-xl border border-white/20 p-8">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Performance Trends</h2>
<div class="relative">
<canvas id="performanceChart"></canvas>
<div class="absolute inset-0 flex items-center justify-center" id="chartLoader">
<div class="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-600"></div>
</div>
</div>
</div>
</div>
<div class="bg-gradient-to-r from-blue-600 via-purple-600 to-pink-600 rounded-2xl shadow-2xl text-white p-12 relative overflow-hidden">
<div class="absolute inset-0 bg-black/20"></div>
<div class="max-w-4xl mx-auto text-center relative z-10">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Unlock Premium Football Intelligence</h2>
<p class="text-xl mb-8">Join professional clubs, analysts, and scouts using our advanced platform.</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white/10 backdrop-blur-sm rounded-xl p-6 border border-white/20">
<i data-feather="zap" class="w-12 h-12 text-yellow-300 mx-auto mb-4"></i>
<h3 class="text-xl font-semibold mb-3">Real-time Data</h3>
<p class="text-blue-100">Live match tracking with 200+ data points per player</p>
</div>
<div class="bg-white/10 backdrop-blur-sm rounded-xl p-6 border border-white/20">
<i data-feather="shield" class="w-12 h-12 text-green-300 mx-auto mb-4"></i>
<h3 class="text-xl font-semibold mb-3">AI Predictions</h3>
<p class="text-blue-100">92% accuracy on match outcomes and player performance</p>
</div>
<div class="bg-white/10 backdrop-blur-sm rounded-xl p-6 border border-white/20">
<i data-feather="award" class="w-12 h-12 text-purple-300 mx-auto mb-4"></i>
<h3 class="text-xl font-semibold mb-3">Pro Analytics</h3>
<p class="text-blue-100">Used by Premier League clubs and UEFA analysts</p>
</div>
</div>
<div class="mt-8 flex flex-col sm:flex-row gap-4 justify-center items-center">
<button class="bg-white text-blue-600 font-semibold px-8 py-4 rounded-xl hover:shadow-2xl transition-all duration-300 transform hover:-translate-y-1">
Start Free Trial
</button>
<button class="border-2 border-white text-white font-semibold px-8 py-4 rounded-xl hover:bg-white/10 transition-all duration-300">
Book Demo
</button>
</div>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<!-- Premium Analytics Components -->
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/chatbot.js"></script>
<script src="components/player-selector.js"></script>
<script src="components/premium-charts.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
// Enhanced Vanta.js with premium settings
VANTA.GLOBE({
el: "#vanta-globe",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3a86ff,
color2: 0x764ba2,
backgroundColor: 0xf8fafc,
size: 1.20
});
// Enhanced player selection with real-time updates
document.getElementById('playerSelector').addEventListener('playerChange', function(e) {
loadPremiumPlayerData(e.detail.selection);
});
// Initialize premium charts
setTimeout(() => {
initializePremiumCharts();
}, 1000);
</script>
<chat-bot></chat-bot>
<premium-analytics></premium-analytics>
<!-- DeepSite Analytics -->
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>