<!DOCTYPE html><html lang="tr">
<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">404CREW CYBER TEAM <title>404CREW CYBER TEAM</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: #000; color: white; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 20px; overflow-x: hidden; position: relative; } .lightning { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; z-index: -1; } .lightning-bolt { position: absolute; background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%); opacity: 0; filter: blur(1px); transform-origin: center; } .lightning-trail { position: absolute; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); opacity: 0; filter: blur(4px); } .lightning-bolt.active { animation: lightningFlash 0.3s ease-out; } .lightning-trail.active { animation: lightningTrail 0.8s ease-out; } @keyframes lightningFlash { 0% { opacity: 0; transform: scaleY(0); } 20% { opacity: 1; transform: scaleY(1); } 40% { opacity: 0.7; transform: scaleY(1); } 60% { opacity: 0.9; transform: scaleY(1); } 80% { opacity: 0.4; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(0); } } @keyframes lightningTrail { 0% { opacity: 0; transform: scaleX(0); } 30% { opacity: 0.6; transform: scaleX(1); } 100% { opacity: 0; transform: scaleX(1); } } .container { max-width: 900px; width: 100%; text-align: center; padding: 40px 20px; position: relative; z-index: 1; } .logo { width: 220px; height: 220px; margin: 0 auto 30px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, 0.1); animation: fadeIn 1.5s ease-out; position: relative; z-index: 2; } .title { font-size: 2.8rem; font-weight: 700; margin-bottom: 25px; letter-spacing: 1px; animation: slideDown 1s ease-out; color: white; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); } .quote-section { margin-bottom: 40px; padding: 20px; background: rgba(255, 255, 255, 0.03); border-radius: 10px; border-left: 3px solid white; animation: fadeIn 1.5s ease-out 0.3s both; } .quote { font-size: 1.3rem; font-style: italic; margin-bottom: 10px; color: #ccc; } .quote-author { font-size: 1rem; color: #888; } .telegram-section { margin: 40px 0; animation: fadeIn 1.5s ease-out 0.6s both; } .telegram-link { display: inline-flex; align-items: center; gap: 12px; font-size: 1.4rem; color: white; text-decoration: none; padding: 15px 30px; border-radius: 10px; background: rgba(255, 255, 255, 0.05); transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1); } .telegram-link:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.3); } .telegram-icon { font-size: 1.8rem; color: white; } .greetz-section { margin: 60px 0 40px; animation: fadeIn 1.5s ease-out 1.2s both; } .greetz-title { font-size: 1.8rem; margin-bottom: 30px; font-weight: 300; letter-spacing: 3px; position: relative; display: inline-block; color: white; } .greetz-title::before, .greetz-title::after { content: ""; position: absolute; top: 50%; width: 50px; height: 1px; background: rgba(255, 255, 255, 0.3); } .greetz-title::before { right: 100%; margin-right: 15px; } .greetz-title::after { left: 100%; margin-left: 15px; } .greetz-members { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 40px; } .member { padding: 10px 20px; background: rgba(255, 255, 255, 0.05); border-radius: 8px; font-size: 1.1rem; transition: all 0.3s ease; position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); } .member::before { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: left 0.5s; } .member:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); } .member:hover::before { left: 100%; } .thanks-message { font-size: 1.2rem; color: #aaa; max-width: 700px; margin: 0 auto; line-height: 1.8; padding: 20px; background: rgba(255, 255, 255, 0.03); border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.1); animation: pulseGlowWhite 3s ease-in-out infinite; } @keyframes pulseGlowWhite { 0%, 100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); } 50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); border-color: rgba(255, 255, 255, 0.4); } } .footer { margin-top: 80px; font-size: 0.9rem; color: #888; letter-spacing: 2px; animation: fadeIn 1.5s ease-out 1.5s both; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideInRight { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } } @keyframes greetzGlowWhite { 0%, 100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); } 50% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6); } } .greetz-title { animation: greetzGlowWhite 3s ease-in-out infinite; } .scrolling-text { white-space: nowrap; overflow: hidden; position: relative; margin: 40px 0; padding: 15px 0; background: rgba(255, 255, 255, 0.03); border-radius: 8px; } .scrolling-text-content { display: inline-block; padding-left: 100%; animation: scrollText 20s linear infinite; font-size: 1.1rem; color: white; text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); } @keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } } @media (max-width: 768px) { .title { font-size: 2.2rem; } .logo { width: 180px; height: 180px; } .quote { font-size: 1.1rem; } .greetz-title { font-size: 1.5rem; } .scrolling-text-content { font-size: 1rem; } .telegram-link { font-size: 1.2rem; padding: 12px 25px; } } @media (max-width: 480px) { .title { font-size: 1.8rem; } .logo { width: 160px; height: 160px; } .quote { font-size: 1rem; } .telegram-link { font-size: 1.1rem; padding: 10px 20px; } .greetz-title { font-size: 1.3rem; } .member { font-size: 1rem; padding: 8px 16px; } .thanks-message { font-size: 1rem; } } </style> <audio id="bgMusic" loop autoplay> <source src="https://tmpfiles.org/dl/12639324/allaturca-turkmarsi-mozart-pianotutorialbyvn.mp3" type="audio/mpeg"> </audio> <div class="lightning" id="lightningContainer"></div> <div class="container"> <img src="https://i.hizliresim.com/7uduc66.jpeg" alt="404CREW Logo" class="logo"> <h1 class="title">HACKED BY 404CREW CYBER TEAM <div class="quote-section"> <p class="quote">"The quieter you become, the more you are able to hear."</p> <p class="quote-author">- Unknown Hacker</p> </div> <div class="telegram-section"> <a href="https://t.me/crewcyber" class="telegram-link" target="_blank"> <i class="fab fa-telegram-plane telegram-icon"></i> Telegram </a> </div> <div class="scrolling-text"> <div class="scrolling-text-content"> • RED TEAM • BLUE TEAM • BLACK TEAM • PURPLE TEAM • GREEN TEAM • 404CREW CYBER TEAM • </div> </div> <div class="greetz-section"> <h2 class="greetz-title">GREETZ <div class="greetz-members"> <div class="member">waldo</div> <div class="member">lost32x</div> <div class="member">orbi<\;</div> <div class="member">scofield</div> <div class="member">-/proxy</div> <div class="member">zoya</div> </div> <p class="thanks-message"> Special thanks to all 404CREW members and the cybersecurity community for their continuous support and collaboration. </p> </div> <div class="footer">4CNF</div> </div> <script> document.addEventListener('DOMContentLoaded', function() { const bgMusic = document.getElementById('bgMusic'); bgMusic.volume = 0.7; function startMusic() { bgMusic.play().then(() => { console.log('Müzik başlatıldı'); }).catch(e => { console.log('Müzik başlatılamadı:', e); document.addEventListener('click', function retryMusic() { bgMusic.play(); document.removeEventListener('click', retryMusic); }, { once: true }); }); } window.addEventListener('load', startMusic); const members = document.querySelectorAll('.member'); members.forEach((member, index) => { member.style.animation = `slideInRight 0.8s ease-out ${index * 0.1 + 1.5}s both`; }); const scrollingText = document.querySelector('.scrolling-text-content'); const textWidth = scrollingText.offsetWidth; scrollingText.style.animationDuration = `${textWidth / 50}s`; const lightningContainer = document.getElementById('lightningContainer'); let lightningCount = 0; const maxLightnings = 7; function createRandomLightning() { if (lightningCount >= maxLightnings) return; lightningCount++; const left = Math.random() * 90 + 5; const top = Math.random() * 90 + 5; const width = 3 + Math.random() * 8; const height = 50 + Math.random() * 150; const rotation = -60 + Math.random() * 120; const bolt = document.createElement('div'); bolt.className = 'lightning-bolt'; bolt.style.left = `${left}%`; bolt.style.top = `${top}%`; bolt.style.width = `${width}px`; bolt.style.height = `${height}px`; bolt.style.transform = `rotate(${rotation}deg)`; const trail = document.createElement('div'); trail.className = 'lightning-trail'; trail.style.left = `${left}%`; trail.style.top = `${top}%`; trail.style.width = `${width * 4}px`; trail.style.height = `${width}px`; trail.style.transform = `rotate(${rotation}deg)`; lightningContainer.appendChild(bolt); lightningContainer.appendChild(trail); setTimeout(() => { bolt.classList.add('active'); trail.classList.add('active'); setTimeout(() => { bolt.classList.remove('active'); }, 300); setTimeout(() => { trail.classList.remove('active'); }, 800); setTimeout(() => { if (bolt.parentNode) bolt.parentNode.removeChild(bolt); if (trail.parentNode) trail.parentNode.removeChild(trail); lightningCount--; }, 1000); }, 50); } function triggerLightningStorm() { const numberOfLightnings = 5 + Math.floor(Math.random() * 3); for (let i = 0; i < numberOfLightnings; i++) { const delay = i * 80 + Math.random() * 50; setTimeout(createRandomLightning, delay); } const nextStormDelay = 500 + Math.random() * 800; setTimeout(triggerLightningStorm, nextStormDelay); } setTimeout(triggerLightningStorm, 800); }); </script>