<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <title>Hacked By TurkHackTeam</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        body {
            margin: 0; padding: 0;
            background: black;
            color: white;
            font-family: 'Courier New', monospace;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .bg {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: url('https://i.imgur.com/bxgbsAv.jpeg') no-repeat center center/cover;
            filter: brightness(30%);
            z-index: -1;
        }

        .container { text-align: center; z-index: 1; }

        .icon img {
            width: 200px;
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .icon img:hover { transform: scale(1.1); }

        /* Başlıklar için normal stil */
        .main-title { font-size: 2.5rem; margin: 10px 0; }
        .desc { font-size: 1.2rem; color: #cccccc; margin-bottom: 10px; }

        /* Anka Red Team için Kırmızı Glitch Efekti */
        .anka-red {
            font-size: 2rem;
            font-weight: bold;
            color: #ff0000;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            animation: glitch 1.5s infinite;
            text-shadow: 2px 2px #000;
        }

        @keyframes glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }
    </style>
</head>
<body>

    <div class="bg"></div>

    <div class="container">
        <div class="icon">
            <a href="https://www.turkhackteam.org/" target="_blank">
                <img src="https://i.hizliresim.com/nj7exqr.png" alt="TurkHackTeam">
            </a>
        </div>
        <div class="main-title">The site has been hacked by TURKHACKTEAM.</div>
        <div class="desc">We whenever we want, wherever we want.</div>
        <div class="anka-red">☪ Anka Red Team ☪</div>
    </div>

    <audio id="audio" loop>
        <source src="https://www.meb.gov.tr/istiklalmarsi/assets/audio/istiklalMarsi3.mp3" type="audio/mpeg">
    </audio>

    <script>
        window.addEventListener('click', () => {
            const audio = document.getElementById('audio');
            audio.play();
        }, { once: true });
    </script>

</body>
</html>