BİR TIK YAPAY ZEKADAN DESTEK ALDIM AMA GÜZEL OLDU
CANLI DEMO : https://serikotocekici.com/
MÜŞETİMİZİN DOMAİNİ SATIŞTA

<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Alan Adı Satılık | Serik Oto Çekici</title>
    <meta name="description" content="Bu alan adı satılıktır. İlgileniyorsanız bizimle iletişime geçin.">
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
        }
        body {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: radial-gradient(circle, rgba(9,32,63,1) 10%, rgba(3,19,46,1) 80%);
            overflow: hidden;
            position: relative;
            color: white;
            text-align: center;
        }
        .container {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
        }
        h1 {
            font-size: 28px;
            font-weight: 600;
        }
        h2 {
            font-size: 20px;
            font-weight: 400;
            margin-top: 10px;
        }
        .whatsapp-button {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            background: #25D366;
            border-radius: 30px;
            text-decoration: none;
            transition: 0.3s;
        }
        .whatsapp-button:hover {
            background: #1da851;
        }
        .star {
            position: absolute;
            width: 3px;
            height: 3px;
            background: white;
            border-radius: 50%;
            opacity: 0.8;
            animation: twinkle 3s infinite alternate;
        }
        @keyframes twinkle {
            0% { opacity: 0.2; transform: translateY(0px); }
            100% { opacity: 1; transform: translateY(-10px); }
        }
    </style>
</head>
<body>
    <script>
        function createStar() {
            const star = document.createElement('div');
            star.classList.add('star');
            star.style.left = Math.random() * 100 + 'vw';
            star.style.top = Math.random() * 100 + 'vh';
            star.style.animationDuration = (Math.random() * 3 + 2) + 's';
            document.body.appendChild(star);
            setTimeout(() => { star.remove(); }, 5000);
        }
        setInterval(createStar, 100);
    </script>
    <div class="container">
        <h1>Serik Oto Çekici – 7/24 Yol Yardım Hizmeti</h1>
        <h2>Bu Alan Adı Satılıktır</h2>
        <a href="https://wa.me/908505541705" target="_blank" class="whatsapp-button">WhatsApp ile İletişime Geç</a>
    </div>
</body>
</html>