<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GamePro Enhancement Platform</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
font-family: 'Inter', sans-serif;
}
.glitch-text {
position: relative;
text-shadow:
-2px 0 #ff00ff,
2px 0 #00ffff;
animation: glitch 0.5s infinite alternate;
}
@keyframes glitch {
0% { transform: translate(-2px, -2px); }
100% { transform: translate(2px, 2px); }
}
.bg-blur {
backdrop-filter: blur(10px);
background-color: rgba(0, 0, 0, 0.5);
}
.neon-border {
border: 2px solid transparent;
border-image: linear-gradient(45deg, #ff00ff, #00ffff);
border-image-slice: 1;
}
</style>
</head>
<body class="text-white min-h-screen flex flex-col">
<nav class="bg-black/50 backdrop-blur-md p-4 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<div class="text-2xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-pink-500 to-blue-500">
GamePro
</div>
<ul class="flex space-x-6">
<li><a href="#" class="hover:text-pink-500 transition">Ana Sayfa</a></li>
<li><a href="#" class="hover:text-blue-500 transition">Özellikler</a></li>
<li><a href="#" class="hover:text-green-500 transition">Destek</a></li>
</ul>
</div>
</nav>
<main class="flex-grow container mx-auto px-4 py-16 text-center">
<section class="max-w-4xl mx-auto">
<h1 class="text-6xl font-extrabold mb-6 glitch-text">
Oyun Performansını Güçlendir
</h1>
<p class="text-xl mb-10 text-gray-300">
Oyun deneyimini optimize et, performansını artır ve rekabetçi avantaj elde et.
</p>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-blur p-6 rounded-xl neon-border">
<h3 class="text-2xl font-bold mb-4 text-pink-400">Performans Analizi</h3>
<p>Oyun içi performansını detaylı olarak incele ve optimize et.</p>
</div>
<div class="bg-blur p-6 rounded-xl neon-border">
<h3 class="text-2xl font-bold mb-4 text-blue-400">Gelişmiş İzleme</h3>
<p>Oyun verilerini gerçek zamanlı olarak takip et ve stratejilerini geliştir.</p>
</div>
<div class="bg-blur p-6 rounded-xl neon-border">
<h3 class="text-2xl font-bold mb-4 text-green-400">Güvenli Destek</h3>
<p>Oyun kurallarına uygun, adil ve güvenli destek çözümleri.</p>
</div>
</div>
<button class="mt-12 bg-gradient-to-r from-pink-500 to-blue-500 px-10 py-4 rounded-full text-lg font-bold hover:scale-105 transition-transform">
Keşfet ve Geliştir
</button>
</section>
</main>
<footer class="bg-black/50 backdrop-blur-md p-6 text-center">
<p>© 2024 GamePro Enhancement Platform. Tüm hakları saklıdır.</p>
<p class="text-sm text-gray-400 mt-2">
Adil oyun ve rekabet ilkelerine bağlıyız.
</p>
</footer>
<script>
// Background particle effect
const particlesContainer = document.createElement('div');
particlesContainer.style.position = 'fixed';
particlesContainer.style.top = '0';
particlesContainer.style.left = '0';
particlesContainer.style.width = '100%';
particlesContainer.style.height = '100%';
particlesContainer.style.zIndex = '-1';
document.body.appendChild(particlesContainer);
function createParticle() {
const particle = document.createElement('div');
particle.style.position = 'absolute';
particle.style.width = '3px';
particle.style.height = '3px';
particle.style.backgroundColor = `hsl(${Math.random() * 360}, 100%, 50%)`;
particle.style.borderRadius = '50%';
particle.style.top = `${Math.random() * 100}%`;
particle.style.left = `${Math.random() * 100}%`;
particle.style.opacity = Math.random();
particle.style.animation = `float 10s infinite alternate`;
particlesContainer.appendChild(particle);
setTimeout(() => {
particle.remove();
}, 10000);
}
setInterval(createParticle, 200);
</script>
</body>
</html>