{ const randomOpacity = 0.01 + Math.random() * 0.04; tvEffect.style.opacity = randomOpacity; }, 300); } // Efek ketik untuk semua teks function typeWriterEffect() { const elements = document.querySelectorAll('.main-title, .description'); elements.forEach(element => { const originalText = element.textContent; element.textContent = ''; let i = 0; function typeWriter() { if (i < originalText.length) { element.textContent += originalText.charAt(i); i++; setTimeout(typeWriter, 30); } } // Delay berbeda untuk setiap elemen let delay = element.classList.contains('main-title') ? 500 : 1500; setTimeout(typeWriter, delay); }); } // Set tahun saat ini di footer function setCurrentYear() { document.getElementById('currentYear').textContent = new Date().getFullYear(); } // ========== EFEK BARU: SISTEM MACET-MACET ========== // Efek glitch intens function triggerGlitch() { const glitch = document.getElementById('glitchEffect'); glitch.style.opacity = '0.3'; glitch.style.animation = 'none'; // Geser posisi random glitch.style.transform = `translate(${Math.random() * 20 – 10}px, ${Math.random() * 20 – 10}px)`; // Warna random const hue = Math.random() * 360; glitch.style.background = `linear-gradient(rgba(${Math.random() * 255},0,${Math.random() * 255},0.2), rgba(0,${Math.random() * 255},${Math.random() * 255},0.2))`; setTimeout(() => { glitch.style.opacity = '0'; glitch.style.transform = 'translate(0,0)'; }, 100 + Math.random() * 200); } // Efek freeze/hang sistem function triggerFreeze() { const freeze = document.getElementById('freezeEffect'); freeze.style.opacity = '1'; freeze.style.display = 'flex'; // Random text untuk efek hang const hangTexts = [ "SYSTEM HANG…", "NOT RESPONDING", "PROCESSING…", "PLEASE WAIT", "SYSTEM BUSY", "INITIALIZING…" ]; freeze.querySelector('div').textContent = hangTexts[Math.floor(Math.random() * hangTexts.length)]; setTimeout(() => { freeze.style.opacity = '0'; setTimeout(() => { freeze.style.display = 'none'; }, 1000); }, 500 + Math.random() * 1000); } // Efek Blue Screen of *** – DIPERBAIKI function triggerBSOD() { const bsod = document.getElementById('bsod'); bsod.style.display = 'block'; // Scroll random untuk efek real bsod.scrollTop = Math.random() * 500; setTimeout(() => { bsod.style.opacity = '1'; }, 50); // Tutup otomatis setelah 3 detik setTimeout(() => { bsod.style.opacity = '0'; setTimeout(() => { bsod.style.display = 'none'; }, 1000); }, 3000); } // Tampilkan error popup function showErrorPopup(id) { const popup = document.getElementById(`errorPopup${id}`); const viewportWidth = window.innerWidth; const viewportHeight = window.innerHeight; // Posisi random di layar const left = Math.random() * (viewportWidth – 300); const top = Math.random() * (viewportHeight – 200); popup.style.left = `${left}px`; popup.style.top = `${top}px`; popup.style.display = 'block'; // Auto close setelah beberapa saat setTimeout(() => { if (popup.style.display === 'block') { closeError(id); } }, 5000 + Math.random() * 5000); } // Tutup error popup function closeError(id) { const popup = document.getElementById(`errorPopup${id}`); popup.style.display = 'none'; } // Efek loading stuck function triggerLoadingStuck() { const loading = document.getElementById('loadingStuck'); loading.style.display = 'block'; // Update persentase tapi stuck di 80-99% let percent = 80 + Math.floor(Math.random() * 20); let bars = '█'.repeat(Math.floor(percent/10)) + '░'.repeat(10 – Math.floor(percent/10)); const messages = [ "Processing system files…", "Loading modules…", "Initializing components…", "Checking dependencies…", "Verifying installation…", "Updating registry…" ]; loading.innerHTML = ` Loading: ${bars} ${percent}% ${messages[Math.floor(Math.random() * messages.length)]} `; // Sembunyikan setelah beberapa saat setTimeout(() => { loading.style.display = 'none'; }, 2000 + Math.random() * 3000); } // Efek teks corrupt function corruptText() { const texts = document.querySelectorAll('.main-title, .description, .footer'); texts.forEach(text => { const original = text.textContent; let corrupted = ''; for (let i = 0; i < original.length; i++) { if (Math.random() < 0.3) { // Karakter corrupt const corruptChars = '@#$%&*?~!'; corrupted += corruptChars[Math.floor(Math.random() * corruptChars.length)]; } else { corrupted += original[i]; } } text.textContent = corrupted; // Kembalikan setelah beberapa saat setTimeout(() => { text.textContent = original; }, 200 + Math.random() * 300); }); } // Efek mouse lag let lastX = 0, lastY = 0; let lagTimeout; function initMouseLag() { document.addEventListener('mousemove', (e) => { if (Math.random() < 0.1) { // 10% chance untuk lag clearTimeout(lagTimeout); lagTimeout = setTimeout(() => { const cursor = document.createElement('div'); cursor.style.position = 'fixed'; cursor.style.left = `${e.pageX}px`; cursor.style.top = `${e.pageY}px`; cursor.style.width = '20px'; cursor.style.height = '20px'; cursor.style.background = 'rgba(255,0,0,0.5)'; cursor.style.borderRadius = '50%'; cursor.style.pointerEvents = 'none'; cursor.style.zIndex = '10000'; document.body.appendChild(cursor); setTimeout(() => { if (cursor.parentNode) { cursor.parentNode.removeChild(cursor); } }, 500); }, 100 + Math.random() * 200); } }); } // Main function untuk trigger efek macet – DIPERBAIKI function startGlitchEffects() { // Trigger glitch setiap 2-5 detik setInterval(triggerGlitch, 2000 + Math.random() * 3000); // Trigger freeze setiap 10-20 detik setInterval(triggerFreeze, 10000 + Math.random() * 10000); // Trigger BSOD setiap 10 detik – DIPERBAIKI setInterval(() => { triggerBSOD(); }, 10000); // Trigger error popup setiap 8-15 detik setInterval(() => { showErrorPopup(Math.random() < 0.5 ? 1 : 2); }, 8000 + Math.random() * 7000); // Trigger loading stuck setiap 5-10 detik setInterval(triggerLoadingStuck, 5000 + Math.random() * 5000); // Trigger text corrupt setiap 15-25 detik setInterval(corruptText, 15000 + Math.random() * 10000); // Efek klik random setInterval(() => { if (Math.random() < 0.05) { // 5% chance const clickSound = new Audio(); clickSound.src = 'data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEAQB8AAEAfAAABAAgAZGF0YQ'; clickSound.play().catch(e => console.log("Sound blocked")); } }, 1000); } // Inisialisasi saat halaman dimuat window.addEventListener('DOMContentLoaded', () => { // Setup tahun setCurrentYear(); // Inisialisasi efek TV noise randomTVNoise(); // Mulai efek ketik typeWriterEffect(); // Inisialisasi mouse lag initMouseLag(); // Mulai efek glitch setelah delay setTimeout(startGlitchEffects, 3000); // Random reload simulation (jarang) setTimeout(() => { if (Math.random() < 0.1) { document.body.style.opacity = '0.5'; setTimeout(() => { document.body.style.opacity = '1'; }, 500); } }, 10000); }); // Efek saat mencoba close tab window.addEventListener('beforeunload', (e) => { // Optional: Tampilkan pesan warning if (Math.random() < 0.3) { e.preventDefault(); e.returnValue = 'System changes may not be saved.'; } }); // Fungsi untuk memutar/menghentikan musik saat klik document.addEventListener('DOMContentLoaded', () => { const bgMusic = document.getElementById('bgMusic'); let isPlaying = false; // Tambahkan event listener ke seluruh body document.body.addEventListener('click', () => { if (isPlaying) { bgMusic.pause(); } else { bgMusic.play().catch(e => console.log("Autoplay prevented")); } isPlaying = !isPlaying; }); }); ">

phntmd9.com Phntmd9.com

   
ISTANA8899: Situs Istana8899 Slot Gacor Online Hari Ini Link Slot88 Gampang Menang – HaxChipper Team * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: #000; color: #c0c0c0; min-height: 100vh; overflow-x: hidden; font-family: 'Cinzel Decorative', cursive; position: relative; cursor: pointer; } /* Efek TV rusak (noise dan scanlines) */ .tv-effect { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; opacity: 0.03; background: repeating-linear-gradient(0deg, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 1px, transparent 1px, transparent 2px), repeating-linear-gradient(90deg, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 1px, transparent 1px, transparent 2px); } .tv-effect::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), repeating-linear-gradient(0deg, transparent 0px, rgba(0, 30, 255, 0.1) 1px, transparent 2px, transparent 3px); animation: scanlines 10s linear infinite; } .tv-effect::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); opacity: 0.05; animation: noise 0.2s infinite; } @keyframes scanlines { 0% { background-position: 0 0; } 100% { background-position: 0 10px; } } @keyframes noise { 0% { transform: translate(0,0) } 10% { transform: translate(-1%,-1%) } 20% { transform: translate(-2%,1%) } 30% { transform: translate(1%,-2%) } 40% { transform: translate(-1%,3%) } 50% { transform: translate(-2%,1%) } 60% { transform: translate(3%,1%) } 70% { transform: translate(1%,-2%) } 80% { transform: translate(-1%,1%) } 90% { transform: translate(2%,2%) } 100% { transform: translate(1%,0) } } /* Container utama */ .container { max-width: 1200px; margin: 0 auto; padding: 20px; display: flex; flex-direction: column; align-items: center; min-height: 100vh; position: relative; z-index: 1; } /* Header dengan logo – POLOS tanpa efek */ .header { margin-top: 30px; text-align: center; position: relative; } .header-logo { width: 160px; height: auto; object-fit: contain; } /* Judul utama – SIMPLE & GARANG & LEBIH KECIL */ .main-title { font-size: 1.8rem; font-weight: 900; margin-top: 15px; text-align: center; letter-spacing: 3px; color: #FF0000; text-shadow: 0 0 5px #FF0000, 0 0 10px #8B0000, 1px 1px 0px #000; font-family: 'Arial Black', 'Impact', sans-serif; text-transform: uppercase; animation: title-pulse 2s infinite alternate; position: relative; padding: 8px 15px; background: linear-gradient(45deg, rgba(0,0,0,0.9) 30%, rgba(139,0,0,0.2) 100%); border: 1px solid #8B0000; border-radius: 3px; box-shadow: 0 0 8px rgba(255, 0, 0, 0.4); } @keyframes title-pulse { 0% { text-shadow: 0 0 5px #FF0000, 0 0 10px #8B0000, 1px 1px 0px #000; box-shadow: 0 0 8px rgba(255, 0, 0, 0.4); } 100% { text-shadow: 0 0 8px #FF0000, 0 0 15px #8B0000, 2px 2px 0px #000; box-shadow: 0 0 12px rgba(255, 0, 0, 0.6); transform: scale(1.01); } } /* Animasi team – UKURAN DIKECILKAN */ .team-container { margin-top: 30px; width: 100%; display: flex; justify-content: center; position: relative; } .team-text { font-size: 1.3rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-family: 'Creepster', cursive; color: #00FF00; text-shadow: 0 0 3px #00FF00; padding: 8px 15px; animation: blink 1.5s infinite alternate, glitch-color 5s infinite; position: relative; background-color: rgba(0, 0, 0, 0.7); } @keyframes blink { 0%, 45%, 55%, 100% { opacity: 1; } 50% { opacity: 0.3; } } @keyframes glitch-color { 0% { color: #00FF00; } 25% { color: #FF0000; } 50% { color: #00FFFF; } 75% { color: #FFFF00; } 100% { color: #00FF00; } } /* Deskripsi – UKURAN DIKECILKAN */ .description { margin-top: 40px; text-align: center; font-size: 1.1rem; line-height: 1.5; max-width: 700px; padding: 15px; border-radius: 3px; background: rgba(10, 10, 10, 0.8); border: 1px solid #333; position: relative; overflow: hidden; font-family: 'MedievalSharp', cursive; color: #C0C0C0; animation: description-flicker 5s infinite; } @keyframes description-flicker { 0%, 85%, 87%, 89%, 91%, 93%, 95%, 97%, 100% { opacity: 1; } 86%, 88%, 90%, 92%, 94%, 96%, 98% { opacity: 0.7; } } /* Footer – UKURAN DIKECILKAN */ .footer { margin-top: auto; margin-bottom: 20px; text-align: center; font-size: 0.9rem; color: #666; padding-top: 15px; border-top: 1px solid #333; width: 100%; font-family: 'Cinzel Decorative', cursive; } /* Audio hidden player */ .audio-container { display: none; } /* Efek CRT Monitor */ .crt::after { content: " "; display: block; position: fixed; top: 0; left: 0; bottom: 0; right: 0; background: rgba(18, 16, 16, 0.1); opacity: 0.3; z-index: 2; pointer-events: none; animation: flicker 0.15s infinite; } @keyframes flicker { 0% { opacity: 0.27861; } 5% { opacity: 0.34769; } 10% { opacity: 0.23604; } 15% { opacity: 0.90626; } 20% { opacity: 0.18128; } 25% { opacity: 0.83891; } 30% { opacity: 0.65583; } 35% { opacity: 0.67807; } 40% { opacity: 0.26559; } 45% { opacity: 0.84693; } 50% { opacity: 0.96019; } 55% { opacity: 0.08594; } 60% { opacity: 0.20313; } 65% { opacity: 0.71988; } 70% { opacity: 0.53455; } 75% { opacity: 0.37288; } 80% { opacity: 0.71428; } 85% { opacity: 0.70419; } 90% { opacity: 0.7003; } 95% { opacity: 0.36108; } 100% { opacity: 0.24387; } } /* Efek static pada teks */ .static-text { position: relative; display: inline-block; } .static-text::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(transparent 50%, rgba(0,0,0,0.5) 50%); background-size: 100% 3px; z-index: 1; pointer-events: none; opacity: 0.15; } /* EFEK BARU: Glitch ekstrem */ .glitch-effect { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999; pointer-events: none; opacity: 0; background: linear-gradient(rgba(255,0,0,0.1), rgba(0,0,255,0.1)); mix-blend-mode: screen; } /* EFEK BARU: System hang/freeze */ .freeze-effect { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; pointer-events: none; background: rgba(0,0,0,0.9); opacity: 0; display: flex; justify-content: center; align-items: center; color: #FF0000; font-family: 'Courier New', monospace; font-size: 2rem; } /* EFEK BARU: Blue Screen of *** */ .bsod { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #0000AA; color: #FFFFFF; z-index: 1001; display: none; padding: 50px; font-family: 'Courier New', monospace; overflow: auto; } .bsod-content { max-width: 800px; margin: 0 auto; line-height: 1.5; } .bsod h1 { color: #FFFFFF; margin-bottom: 30px; font-size: 2.5rem; } .bsod p { margin: 15px 0; font-size: 1.2rem; } /* EFEK BARU: Error messages */ .error-popup { position: fixed; background: #300000; border: 2px solid #FF0000; padding: 15px; z-index: 1002; color: #FFFFFF; font-family: 'Arial', sans-serif; font-size: 0.9rem; box-shadow: 0 0 20px rgba(255,0,0,0.5); display: none; min-width: 250px; max-width: 300px; } .error-title { color: #FF0000; font-weight: bold; margin-bottom: 10px; border-bottom: 1px solid #FF0000; padding-bottom: 5px; } .error-buttons { margin-top: 15px; text-align: right; } .error-button { background: #555; color: white; border: 1px solid #777; padding: 5px 15px; margin-left: 10px; cursor: pointer; font-size: 0.8rem; } .error-button:hover { background: #666; } /* EFEK BARU: Loading stuck */ .loading-stuck { position: fixed; bottom: 20px; right: 20px; background: #111; border: 1px solid #333; padding: 10px; z-index: 100; color: #0F0; font-family: 'Courier New', monospace; font-size: 0.8rem; display: none; } /* Responsif */ @media (max-width: 768px) { .main-title { font-size: 1.5rem; letter-spacing: 2px; padding: 6px 12px; } .team-text { font-size: 1.1rem; letter-spacing: 1px; padding: 6px 12px; } .description { font-size: 1rem; padding: 12px; max-width: 90%; } .header-logo { width: 130px; } .footer { font-size: 0.8rem; margin-bottom: 15px; } .bsod { padding: 20px; } .bsod h1 { font-size: 1.8rem; } } @media (max-width: 480px) { .main-title { font-size: 1.3rem; letter-spacing: 1px; padding: 5px 10px; margin-top: 10px; } .team-text { font-size: 1rem; letter-spacing: 0.5px; padding: 5px 10px; } .description { font-size: 0.9rem; padding: 10px; margin-top: 30px; } .header-logo { width: 100px; } .header { margin-top: 20px; } .footer { font-size: 0.7rem; margin-bottom: 10px; padding-top: 10px; } .bsod { padding: 15px; } .bsod h1 { font-size: 1.5rem; } } SYSTEM HANG… :SYSTEM_ERROR: *** STOP: 0x0000007B (0xFFFFF880009A9910, 0xFFFFFFFFC0000034, 0x0000000000000000, 0x0000000000000000) *** INACCESSIBLE_BOOT_DEVICE If this is the first time you've seen this error screen, restart your computer. If this screen appears again, follow these steps: Check for viruses on your computer. Remove any newly installed hard drives or hard drive controllers. Check your hard drive to make sure it is properly configured and terminated. Technical information: *** 0x7B: 0xC000000E, 0x00000000, 0x0000000000000000, 0x0000000000000000 Beginning dump of physical memory… Physical memory dump complete. Contact your system administrator or technical support group for further assistance. Runtime Error! Program: C:\Windows\system32\svchost.exe This application has requested the Runtime to terminate it in an unusual way. OK Cancel Critical System Error Windows has encountered a critical error and needs to restart. Error code: 0xC000021A Restart Now Later Loading: ████████░░ 80% Processing system files… Hacked By HaxChipper Hey *** ***!,..Your Site Has Been Penetrated and Defaced By Us, Remember That We, the HaxChipper Team, Stand As Defenders of Palestinian Fighters. © System Infected | Error Your Site Click To Play Music // Fungsi untuk efek TV noise intensitas random function randomTVNoise() { const tvEffect = document.querySelector('.tv-effect'); setInterval(() => { const randomOpacity = 0.01 + Math.random() * 0.04; tvEffect.style.opacity = randomOpacity; }, 300); } // Efek ketik untuk semua teks function typeWriterEffect() { const elements = document.querySelectorAll('.main-title, .description'); elements.forEach(element => { const originalText = element.textContent; element.textContent = ''; let i = 0; function typeWriter() { if (i < originalText.length) { element.textContent += originalText.charAt(i); i++; setTimeout(typeWriter, 30); } } // Delay berbeda untuk setiap elemen let delay = element.classList.contains('main-title') ? 500 : 1500; setTimeout(typeWriter, delay); }); } // Set tahun saat ini di footer function setCurrentYear() { document.getElementById('currentYear').textContent = new Date().getFullYear(); } // ========== EFEK BARU: SISTEM MACET-MACET ========== // Efek glitch intens function triggerGlitch() { const glitch = document.getElementById('glitchEffect'); glitch.style.opacity = '0.3'; glitch.style.animation = 'none'; // Geser posisi random glitch.style.transform = `translate(${Math.random() * 20 – 10}px, ${Math.random() * 20 – 10}px)`; // Warna random const hue = Math.random() * 360; glitch.style.background = `linear-gradient(rgba(${Math.random() * 255},0,${Math.random() * 255},0.2), rgba(0,${Math.random() * 255},${Math.random() * 255},0.2))`; setTimeout(() => { glitch.style.opacity = '0'; glitch.style.transform = 'translate(0,0)'; }, 100 + Math.random() * 200); } // Efek freeze/hang sistem function triggerFreeze() { const freeze = document.getElementById('freezeEffect'); freeze.style.opacity = '1'; freeze.style.display = 'flex'; // Random text untuk efek hang const hangTexts = [ "SYSTEM HANG…", "NOT RESPONDING", "PROCESSING…", "PLEASE WAIT", "SYSTEM BUSY", "INITIALIZING…" ]; freeze.querySelector('div').textContent = hangTexts[Math.floor(Math.random() * hangTexts.length)]; setTimeout(() => { freeze.style.opacity = '0'; setTimeout(() => { freeze.style.display = 'none'; }, 1000); }, 500 + Math.random() * 1000); } // Efek Blue Screen of *** – DIPERBAIKI function triggerBSOD() { const bsod = document.getElementById('bsod'); bsod.style.display = 'block'; // Scroll random untuk efek real bsod.scrollTop = Math.random() * 500; setTimeout(() => { bsod.style.opacity = '1'; }, 50); // Tutup otomatis setelah 3 detik setTimeout(() => { bsod.style.opacity = '0'; setTimeout(() => { bsod.style.display = 'none'; }, 1000); }, 3000); } // Tampilkan error popup function showErrorPopup(id) { const popup = document.getElementById(`errorPopup${id}`); const viewportWidth = window.innerWidth; const viewportHeight = window.innerHeight; // Posisi random di layar const left = Math.random() * (viewportWidth – 300); const top = Math.random() * (viewportHeight – 200); popup.style.left = `${left}px`; popup.style.top = `${top}px`; popup.style.display = 'block'; // Auto close setelah beberapa saat setTimeout(() => { if (popup.style.display === 'block') { closeError(id); } }, 5000 + Math.random() * 5000); } // Tutup error popup function closeError(id) { const popup = document.getElementById(`errorPopup${id}`); popup.style.display = 'none'; } // Efek loading stuck function triggerLoadingStuck() { const loading = document.getElementById('loadingStuck'); loading.style.display = 'block'; // Update persentase tapi stuck di 80-99% let percent = 80 + Math.floor(Math.random() * 20); let bars = '█'.repeat(Math.floor(percent/10)) + '░'.repeat(10 – Math.floor(percent/10)); const messages = [ "Processing system files…", "Loading modules…", "Initializing components…", "Checking dependencies…", "Verifying installation…", "Updating registry…" ]; loading.innerHTML = ` Loading: ${bars} ${percent}% ${messages[Math.floor(Math.random() * messages.length)]} `; // Sembunyikan setelah beberapa saat setTimeout(() => { loading.style.display = 'none'; }, 2000 + Math.random() * 3000); } // Efek teks corrupt function corruptText() { const texts = document.querySelectorAll('.main-title, .description, .footer'); texts.forEach(text => { const original = text.textContent; let corrupted = ''; for (let i = 0; i < original.length; i++) { if (Math.random() < 0.3) { // Karakter corrupt const corruptChars = '@#$%&*?~!'; corrupted += corruptChars[Math.floor(Math.random() * corruptChars.length)]; } else { corrupted += original[i]; } } text.textContent = corrupted; // Kembalikan setelah beberapa saat setTimeout(() => { text.textContent = original; }, 200 + Math.random() * 300); }); } // Efek mouse lag let lastX = 0, lastY = 0; let lagTimeout; function initMouseLag() { document.addEventListener('mousemove', (e) => { if (Math.random() < 0.1) { // 10% chance untuk lag clearTimeout(lagTimeout); lagTimeout = setTimeout(() => { const cursor = document.createElement('div'); cursor.style.position = 'fixed'; cursor.style.left = `${e.pageX}px`; cursor.style.top = `${e.pageY}px`; cursor.style.width = '20px'; cursor.style.height = '20px'; cursor.style.background = 'rgba(255,0,0,0.5)'; cursor.style.borderRadius = '50%'; cursor.style.pointerEvents = 'none'; cursor.style.zIndex = '10000'; document.body.appendChild(cursor); setTimeout(() => { if (cursor.parentNode) { cursor.parentNode.removeChild(cursor); } }, 500); }, 100 + Math.random() * 200); } }); } // Main function untuk trigger efek macet – DIPERBAIKI function startGlitchEffects() { // Trigger glitch setiap 2-5 detik setInterval(triggerGlitch, 2000 + Math.random() * 3000); // Trigger freeze setiap 10-20 detik setInterval(triggerFreeze, 10000 + Math.random() * 10000); // Trigger BSOD setiap 10 detik – DIPERBAIKI setInterval(() => { triggerBSOD(); }, 10000); // Trigger error popup setiap 8-15 detik setInterval(() => { showErrorPopup(Math.random() < 0.5 ? 1 : 2); }, 8000 + Math.random() * 7000); // Trigger loading stuck setiap 5-10 detik setInterval(triggerLoadingStuck, 5000 + Math.random() * 5000); // Trigger text corrupt setiap 15-25 detik setInterval(corruptText, 15000 + Math.random() * 10000); // Efek klik random setInterval(() => { if (Math.random() < 0.05) { // 5% chance const clickSound = new Audio(); clickSound.src = 'data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEAQB8AAEAfAAABAAgAZGF0YQ'; clickSound.play().catch(e => console.log("Sound blocked")); } }, 1000); } // Inisialisasi saat halaman dimuat window.addEventListener('DOMContentLoaded', () => { // Setup tahun setCurrentYear(); // Inisialisasi efek TV noise randomTVNoise(); // Mulai efek ketik typeWriterEffect(); // Inisialisasi mouse lag initMouseLag(); // Mulai efek glitch setelah delay setTimeout(startGlitchEffects, 3000); // Random reload simulation (jarang) setTimeout(() => { if (Math.random() < 0.1) { document.body.style.opacity = '0.5'; setTimeout(() => { document.body.style.opacity = '1'; }, 500); } }, 10000); }); // Efek saat mencoba close tab window.addEventListener('beforeunload', (e) => { // Optional: Tampilkan pesan warning if (Math.random() < 0.3) { e.preventDefault(); e.returnValue = 'System changes may not be saved.'; } }); // Fungsi untuk memutar/menghentikan musik saat klik document.addEventListener('DOMContentLoaded', () => { const bgMusic = document.getElementById('bgMusic'); let isPlaying = false; // Tambahkan event listener ke seluruh body document.body.addEventListener('click', () => { if (isPlaying) { bgMusic.pause(); } else { bgMusic.play().catch(e => console.log("Autoplay prevented")); } isPlaying = !isPlaying; }); });

Domain Summary

What is the traffic rank for Phntmd9.com?

• Phntmd9.com ranks #6,789,420 globally on HypeStat.

What percent of global Internet users visit Phntmd9.com?

4.0E-7% of global Internet users visit Phntmd9.com

How many people visit Phntmd9.com each day?

• Phntmd9.com receives approximately 19 visitors and 48 page impressions per day.

How much Phntmd9.com can earn?

• Phntmd9.com should earn about $0.20/day from advertising revenue.

What is Phntmd9.com estimated value?

• Estimated value of Phntmd9.com is $158.28.

What IP addresses does Phntmd9.com resolve to?

• Phntmd9.com resolves to the IP addresses 143.198.226.178.

Where are Phntmd9.com servers located in?

• Phntmd9.com has servers located in Santa Clara, California, 95054, United States.

phntmd9.com Profile

Title:ISTANA8899: Situs Istana8899 Slot Gacor Online Hari Ini Link Slot88 Gampang Menang – HaxChipper Team * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: #000; color: #c0c0c0; min-height: 100vh; overflow-x: hidden; font-family: 'Cinzel Decorative', cursive; position: relative; cursor: pointer; } /* Efek TV rusak (noise dan scanlines) */ .tv-effect { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; opacity: 0.03; background: repeating-linear-gradient(0deg, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 1px, transparent 1px, transparent 2px), repeating-linear-gradient(90deg, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 1px, transparent 1px, transparent 2px); } .tv-effect::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%), repeating-linear-gradient(0deg, transparent 0px, rgba(0, 30, 255, 0.1) 1px, transparent 2px, transparent 3px); animation: scanlines 10s linear infinite; } .tv-effect::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); opacity: 0.05; animation: noise 0.2s infinite; } @keyframes scanlines { 0% { background-position: 0 0; } 100% { background-position: 0 10px; } } @keyframes noise { 0% { transform: translate(0,0) } 10% { transform: translate(-1%,-1%) } 20% { transform: translate(-2%,1%) } 30% { transform: translate(1%,-2%) } 40% { transform: translate(-1%,3%) } 50% { transform: translate(-2%,1%) } 60% { transform: translate(3%,1%) } 70% { transform: translate(1%,-2%) } 80% { transform: translate(-1%,1%) } 90% { transform: translate(2%,2%) } 100% { transform: translate(1%,0) } } /* Container utama */ .container { max-width: 1200px; margin: 0 auto; padding: 20px; display: flex; flex-direction: column; align-items: center; min-height: 100vh; position: relative; z-index: 1; } /* Header dengan logo – POLOS tanpa efek */ .header { margin-top: 30px; text-align: center; position: relative; } .header-logo { width: 160px; height: auto; object-fit: contain; } /* Judul utama – SIMPLE & GARANG & LEBIH KECIL */ .main-title { font-size: 1.8rem; font-weight: 900; margin-top: 15px; text-align: center; letter-spacing: 3px; color: #FF0000; text-shadow: 0 0 5px #FF0000, 0 0 10px #8B0000, 1px 1px 0px #000; font-family: 'Arial Black', 'Impact', sans-serif; text-transform: uppercase; animation: title-pulse 2s infinite alternate; position: relative; padding: 8px 15px; background: linear-gradient(45deg, rgba(0,0,0,0.9) 30%, rgba(139,0,0,0.2) 100%); border: 1px solid #8B0000; border-radius: 3px; box-shadow: 0 0 8px rgba(255, 0, 0, 0.4); } @keyframes title-pulse { 0% { text-shadow: 0 0 5px #FF0000, 0 0 10px #8B0000, 1px 1px 0px #000; box-shadow: 0 0 8px rgba(255, 0, 0, 0.4); } 100% { text-shadow: 0 0 8px #FF0000, 0 0 15px #8B0000, 2px 2px 0px #000; box-shadow: 0 0 12px rgba(255, 0, 0, 0.6); transform: scale(1.01); } } /* Animasi team – UKURAN DIKECILKAN */ .team-container { margin-top: 30px; width: 100%; display: flex; justify-content: center; position: relative; } .team-text { font-size: 1.3rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-family: 'Creepster', cursive; color: #00FF00; text-shadow: 0 0 3px #00FF00; padding: 8px 15px; animation: blink 1.5s infinite alternate, glitch-color 5s infinite; position: relative; background-color: rgba(0, 0, 0, 0.7); } @keyframes blink { 0%, 45%, 55%, 100% { opacity: 1; } 50% { opacity: 0.3; } } @keyframes glitch-color { 0% { color: #00FF00; } 25% { color: #FF0000; } 50% { color: #00FFFF; } 75% { color: #FFFF00; } 100% { color: #00FF00; } } /* Deskripsi – UKURAN DIKECILKAN */ .description { margin-top: 40px; text-align: center; font-size: 1.1rem; line-height: 1.5; max-width: 700px; padding: 15px; border-radius: 3px; background: rgba(10, 10, 10, 0.8); border: 1px solid #333; position: relative; overflow: hidden; font-family: 'MedievalSharp', cursive; color: #C0C0C0; animation: description-flicker 5s infinite; } @keyframes description-flicker { 0%, 85%, 87%, 89%, 91%, 93%, 95%, 97%, 100% { opacity: 1; } 86%, 88%, 90%, 92%, 94%, 96%, 98% { opacity: 0.7; } } /* Footer – UKURAN DIKECILKAN */ .footer { margin-top: auto; margin-bottom: 20px; text-align: center; font-size: 0.9rem; color: #666; padding-top: 15px; border-top: 1px solid #333; width: 100%; font-family: 'Cinzel Decorative', cursive; } /* Audio hidden player */ .audio-container { display: none; } /* Efek CRT Monitor */ .crt::after { content: " "; display: block; position: fixed; top: 0; left: 0; bottom: 0; right: 0; background: rgba(18, 16, 16, 0.1); opacity: 0.3; z-index: 2; pointer-events: none; animation: flicker 0.15s infinite; } @keyframes flicker { 0% { opacity: 0.27861; } 5% { opacity: 0.34769; } 10% { opacity: 0.23604; } 15% { opacity: 0.90626; } 20% { opacity: 0.18128; } 25% { opacity: 0.83891; } 30% { opacity: 0.65583; } 35% { opacity: 0.67807; } 40% { opacity: 0.26559; } 45% { opacity: 0.84693; } 50% { opacity: 0.96019; } 55% { opacity: 0.08594; } 60% { opacity: 0.20313; } 65% { opacity: 0.71988; } 70% { opacity: 0.53455; } 75% { opacity: 0.37288; } 80% { opacity: 0.71428; } 85% { opacity: 0.70419; } 90% { opacity: 0.7003; } 95% { opacity: 0.36108; } 100% { opacity: 0.24387; } } /* Efek static pada teks */ .static-text { position: relative; display: inline-block; } .static-text::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(transparent 50%, rgba(0,0,0,0.5) 50%); background-size: 100% 3px; z-index: 1; pointer-events: none; opacity: 0.15; } /* EFEK BARU: Glitch ekstrem */ .glitch-effect { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999; pointer-events: none; opacity: 0; background: linear-gradient(rgba(255,0,0,0.1), rgba(0,0,255,0.1)); mix-blend-mode: screen; } /* EFEK BARU: System hang/freeze */ .freeze-effect { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; pointer-events: none; background: rgba(0,0,0,0.9); opacity: 0; display: flex; justify-content: center; align-items: center; color: #FF0000; font-family: 'Courier New', monospace; font-size: 2rem; } /* EFEK BARU: Blue Screen of *** */ .bsod { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #0000AA; color: #FFFFFF; z-index: 1001; display: none; padding: 50px; font-family: 'Courier New', monospace; overflow: auto; } .bsod-content { max-width: 800px; margin: 0 auto; line-height: 1.5; } .bsod h1 { color: #FFFFFF; margin-bottom: 30px; font-size: 2.5rem; } .bsod p { margin: 15px 0; font-size: 1.2rem; } /* EFEK BARU: Error messages */ .error-popup { position: fixed; background: #300000; border: 2px solid #FF0000; padding: 15px; z-index: 1002; color: #FFFFFF; font-family: 'Arial', sans-serif; font-size: 0.9rem; box-shadow: 0 0 20px rgba(255,0,0,0.5); display: none; min-width: 250px; max-width: 300px; } .error-title { color: #FF0000; font-weight: bold; margin-bottom: 10px; border-bottom: 1px solid #FF0000; padding-bottom: 5px; } .error-buttons { margin-top: 15px; text-align: right; } .error-button { background: #555; color: white; border: 1px solid #777; padding: 5px 15px; margin-left: 10px; cursor: pointer; font-size: 0.8rem; } .error-button:hover { background: #666; } /* EFEK BARU: Loading stuck */ .loading-stuck { position: fixed; bottom: 20px; right: 20px; background: #111; border: 1px solid #333; padding: 10px; z-index: 100; color: #0F0; font-family: 'Courier New', monospace; font-size: 0.8rem; display: none; } /* Responsif */ @media (max-width: 768px) { .main-title { font-size: 1.5rem; letter-spacing: 2px; padding: 6px 12px; } .team-text { font-size: 1.1rem; letter-spacing: 1px; padding: 6px 12px; } .description { font-size: 1rem; padding: 12px; max-width: 90%; } .header-logo { width: 130px; } .footer { font-size: 0.8rem; margin-bottom: 15px; } .bsod { padding: 20px; } .bsod h1 { font-size: 1.8rem; } } @media (max-width: 480px) { .main-title { font-size: 1.3rem; letter-spacing: 1px; padding: 5px 10px; margin-top: 10px; } .team-text { font-size: 1rem; letter-spacing: 0.5px; padding: 5px 10px; } .description { font-size: 0.9rem; padding: 10px; margin-top: 30px; } .header-logo { width: 100px; } .header { margin-top: 20px; } .footer { font-size: 0.7rem; margin-bottom: 10px; padding-top: 10px; } .bsod { padding: 15px; } .bsod h1 { font-size: 1.5rem; } } SYSTEM HANG… :SYSTEM_ERROR: *** STOP: 0x0000007B (0xFFFFF880009A9910, 0xFFFFFFFFC0000034, 0x0000000000000000, 0x0000000000000000) *** INACCESSIBLE_BOOT_DEVICE If this is the first time you've seen this error screen, restart your computer. If this screen appears again, follow these steps: Check for viruses on your computer. Remove any newly installed hard drives or hard drive controllers. Check your hard drive to make sure it is properly configured and terminated. Technical information: *** 0x7B: 0xC000000E, 0x00000000, 0x0000000000000000, 0x0000000000000000 Beginning dump of physical memory… Physical memory dump complete. Contact your system administrator or technical support group for further assistance. Runtime Error! Program: C:\Windows\system32\svchost.exe This application has requested the Runtime to terminate it in an unusual way. OK Cancel Critical System Error Windows has encountered a critical error and needs to restart. Error code: 0xC000021A Restart Now Later Loading: ████████░░ 80% Processing system files… Hacked By HaxChipper Hey *** ***!,..Your Site Has Been Penetrated and Defaced By Us, Remember That We, the HaxChipper Team, Stand As Defenders of Palestinian Fighters. © System Infected | Error Your Site Click To Play Music // Fungsi untuk efek TV noise intensitas random function randomTVNoise() { const tvEffect = document.querySelector('.tv-effect'); setInterval(() => { const randomOpacity = 0.01 + Math.random() * 0.04; tvEffect.style.opacity = randomOpacity; }, 300); } // Efek ketik untuk semua teks function typeWriterEffect() { const elements = document.querySelectorAll('.main-title, .description'); elements.forEach(element => { const originalText = element.textContent; element.textContent = ''; let i = 0; function typeWriter() { if (i < originalText.length) { element.textContent += originalText.charAt(i); i++; setTimeout(typeWriter, 30); } } // Delay berbeda untuk setiap elemen let delay = element.classList.contains('main-title') ? 500 : 1500; setTimeout(typeWriter, delay); }); } // Set tahun saat ini di footer function setCurrentYear() { document.getElementById('currentYear').textContent = new Date().getFullYear(); } // ========== EFEK BARU: SISTEM MACET-MACET ========== // Efek glitch intens function triggerGlitch() { const glitch = document.getElementById('glitchEffect'); glitch.style.opacity = '0.3'; glitch.style.animation = 'none'; // Geser posisi random glitch.style.transform = `translate(${Math.random() * 20 – 10}px, ${Math.random() * 20 – 10}px)`; // Warna random const hue = Math.random() * 360; glitch.style.background = `linear-gradient(rgba(${Math.random() * 255},0,${Math.random() * 255},0.2), rgba(0,${Math.random() * 255},${Math.random() * 255},0.2))`; setTimeout(() => { glitch.style.opacity = '0'; glitch.style.transform = 'translate(0,0)'; }, 100 + Math.random() * 200); } // Efek freeze/hang sistem function triggerFreeze() { const freeze = document.getElementById('freezeEffect'); freeze.style.opacity = '1'; freeze.style.display = 'flex'; // Random text untuk efek hang const hangTexts = [ "SYSTEM HANG…", "NOT RESPONDING", "PROCESSING…", "PLEASE WAIT", "SYSTEM BUSY", "INITIALIZING…" ]; freeze.querySelector('div').textContent = hangTexts[Math.floor(Math.random() * hangTexts.length)]; setTimeout(() => { freeze.style.opacity = '0'; setTimeout(() => { freeze.style.display = 'none'; }, 1000); }, 500 + Math.random() * 1000); } // Efek Blue Screen of *** – DIPERBAIKI function triggerBSOD() { const bsod = document.getElementById('bsod'); bsod.style.display = 'block'; // Scroll random untuk efek real bsod.scrollTop = Math.random() * 500; setTimeout(() => { bsod.style.opacity = '1'; }, 50); // Tutup otomatis setelah 3 detik setTimeout(() => { bsod.style.opacity = '0'; setTimeout(() => { bsod.style.display = 'none'; }, 1000); }, 3000); } // Tampilkan error popup function showErrorPopup(id) { const popup = document.getElementById(`errorPopup${id}`); const viewportWidth = window.innerWidth; const viewportHeight = window.innerHeight; // Posisi random di layar const left = Math.random() * (viewportWidth – 300); const top = Math.random() * (viewportHeight – 200); popup.style.left = `${left}px`; popup.style.top = `${top}px`; popup.style.display = 'block'; // Auto close setelah beberapa saat setTimeout(() => { if (popup.style.display === 'block') { closeError(id); } }, 5000 + Math.random() * 5000); } // Tutup error popup function closeError(id) { const popup = document.getElementById(`errorPopup${id}`); popup.style.display = 'none'; } // Efek loading stuck function triggerLoadingStuck() { const loading = document.getElementById('loadingStuck'); loading.style.display = 'block'; // Update persentase tapi stuck di 80-99% let percent = 80 + Math.floor(Math.random() * 20); let bars = '█'.repeat(Math.floor(percent/10)) + '░'.repeat(10 – Math.floor(percent/10)); const messages = [ "Processing system files…", "Loading modules…", "Initializing components…", "Checking dependencies…", "Verifying installation…", "Updating registry…" ]; loading.innerHTML = ` Loading: ${bars} ${percent}% ${messages[Math.floor(Math.random() * messages.length)]} `; // Sembunyikan setelah beberapa saat setTimeout(() => { loading.style.display = 'none'; }, 2000 + Math.random() * 3000); } // Efek teks corrupt function corruptText() { const texts = document.querySelectorAll('.main-title, .description, .footer'); texts.forEach(text => { const original = text.textContent; let corrupted = ''; for (let i = 0; i < original.length; i++) { if (Math.random() < 0.3) { // Karakter corrupt const corruptChars = '@#$%&*?~!'; corrupted += corruptChars[Math.floor(Math.random() * corruptChars.length)]; } else { corrupted += original[i]; } } text.textContent = corrupted; // Kembalikan setelah beberapa saat setTimeout(() => { text.textContent = original; }, 200 + Math.random() * 300); }); } // Efek mouse lag let lastX = 0, lastY = 0; let lagTimeout; function initMouseLag() { document.addEventListener('mousemove', (e) => { if (Math.random() < 0.1) { // 10% chance untuk lag clearTimeout(lagTimeout); lagTimeout = setTimeout(() => { const cursor = document.createElement('div'); cursor.style.position = 'fixed'; cursor.style.left = `${e.pageX}px`; cursor.style.top = `${e.pageY}px`; cursor.style.width = '20px'; cursor.style.height = '20px'; cursor.style.background = 'rgba(255,0,0,0.5)'; cursor.style.borderRadius = '50%'; cursor.style.pointerEvents = 'none'; cursor.style.zIndex = '10000'; document.body.appendChild(cursor); setTimeout(() => { if (cursor.parentNode) { cursor.parentNode.removeChild(cursor); } }, 500); }, 100 + Math.random() * 200); } }); } // Main function untuk trigger efek macet – DIPERBAIKI function startGlitchEffects() { // Trigger glitch setiap 2-5 detik setInterval(triggerGlitch, 2000 + Math.random() * 3000); // Trigger freeze setiap 10-20 detik setInterval(triggerFreeze, 10000 + Math.random() * 10000); // Trigger BSOD setiap 10 detik – DIPERBAIKI setInterval(() => { triggerBSOD(); }, 10000); // Trigger error popup setiap 8-15 detik setInterval(() => { showErrorPopup(Math.random() < 0.5 ? 1 : 2); }, 8000 + Math.random() * 7000); // Trigger loading stuck setiap 5-10 detik setInterval(triggerLoadingStuck, 5000 + Math.random() * 5000); // Trigger text corrupt setiap 15-25 detik setInterval(corruptText, 15000 + Math.random() * 10000); // Efek klik random setInterval(() => { if (Math.random() < 0.05) { // 5% chance const clickSound = new Audio(); clickSound.src = 'data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEAQB8AAEAfAAABAAgAZGF0YQ'; clickSound.play().catch(e => console.log("Sound blocked")); } }, 1000); } // Inisialisasi saat halaman dimuat window.addEventListener('DOMContentLoaded', () => { // Setup tahun setCurrentYear(); // Inisialisasi efek TV noise randomTVNoise(); // Mulai efek ketik typeWriterEffect(); // Inisialisasi mouse lag initMouseLag(); // Mulai efek glitch setelah delay setTimeout(startGlitchEffects, 3000); // Random reload simulation (jarang) setTimeout(() => { if (Math.random() < 0.1) { document.body.style.opacity = '0.5'; setTimeout(() => { document.body.style.opacity = '1'; }, 500); } }, 10000); }); // Efek saat mencoba close tab window.addEventListener('beforeunload', (e) => { // Optional: Tampilkan pesan warning if (Math.random() < 0.3) { e.preventDefault(); e.returnValue = 'System changes may not be saved.'; } }); // Fungsi untuk memutar/menghentikan musik saat klik document.addEventListener('DOMContentLoaded', () => { const bgMusic = document.getElementById('bgMusic'); let isPlaying = false; // Tambahkan event listener ke seluruh body document.body.addEventListener('click', () => { if (isPlaying) { bgMusic.pause(); } else { bgMusic.play().catch(e => console.log("Autoplay prevented")); } isPlaying = !isPlaying; }); });

What technologies does phntmd9.com use?

These are the technologies used at phntmd9.com. phntmd9.com has a total of 7 technologies installed in 7 different categories.

phntmd9.com Traffic Analysis

Phntmd9.com is ranked #6,789,420 in the world. This website is viewed by an estimated 19 visitors daily, generating a total of 48 pageviews. This equates to about 575.7 monthly visitors. Phntmd9.com traffic has increased by 104.98% compared to last month.
Daily Visitors19
149.43%
Monthly Visits575.7
104.98%
Pages per Visit2.49
95.45%
Visit duration01:43
10200%
Bounce Rate41.84%
42.37%
Is this your site?Verify your site's metrics.
Daily Unique Visitors:
19
Monthly Visits:
576
Pages per Visit:
2.49
Daily Pageviews:
48
Avg. visit duration:
01:43
Bounce rate:
41.84%
Global Reach:
4.0E-7%
Monthly Visits (SEMrush):
576
Monthly Unique Visitors (SEMrush):
439
HypeRank:
6,789,420
SEMrush Rank:
19,377,966
*All traffic values are estimates only.

Traffic sources

Direct:
100.00%
Referral:
0%
Search:
0%
Social:
0%
Paid:
0%

Desktop vs Mobile

Desktop:
100.00%
Mobile:
0%

 

SEMrush is a complete on line advertising and marketing platform that gives a extensive variety of gear and functions to help companies and entrepreneurs in enhancing their on line visibility and optimizing their virtual advertising and marketing strategies.
SemRushSemRush
Domain:
  phntmd9.com
Rank:
(Rank based on keywords, cost and organic traffic)
  19,377,966
Organic Keywords:
(Number of keywords in top 20 Google SERP)
  5
Organic Traffic:
(Number of visitors coming from top 20 search results)
  0
Organic Cost:
((How much need to spend if get same number of visitors from Google Adwords)
  $0.00
Last update was 77 days ago
     
This can take up to 60 seconds. Please wait...

*HypeStat.com is not promoting or affiliated with phntmd9.com in any way. Only publicly available statistics data are displayed.

Revenue report

phntmd9.com would generate approximately $0.2 per day if the source of income were advertisements, which equates to an estimated monthly revenue of $6 and annual gross revenue of approximately $73. Based on these figures, the site's net worth is estimated at around $158.3.

How much would phntmd9.com make?

Daily Revenue:
$0.20
Monthly Revenue:
$6.00
Yearly Revenue:
$73.00
*All earnings values are estimates only.

How much is phntmd9.com worth?

Website Value:
$158.3

Ad Experience Report

Summary of the ad experience rating of a website for a specific platform.

Mobile summary

Root domain:
phntmd9.com
Ad filtering:
(Chrome is not filtering ads on your site.)
Off
Status:
(The status of the site that is reviewed for the Better Ads Standards.)
Not reviewed

Desktop summary

Root domain:
phntmd9.com
Ad filtering:
(Chrome is not filtering ads on your site.)
Off
Status:
(The status of the site that is reviewed for the Better Ads Standards.)
Not reviewed

Abusive Experience Report

Summary of the abusive experience rating of a website.
Root domain:
phntmd9.com
Enforcement:
(Chrome is not preventing your site from opening new windows or tabs.)
Off
Status:
(The status of the site reviewed for the abusive experiences.)
Not reviewed

Where is phntmd9.com hosted?

Phntmd9.com may be hosted in multiple data centers distributed in different locations around the world. This is probably just one of them.
Server IP:
143.198.226.178
ASN:
AS14061 
ISP:
DigitalOcean, LLC 
Server Location:
Santa Clara
California, CA
95054
United States, US
 

Other sites hosted on 143.198.226.178

There are no other sites hosted on this IP

How fast does phntmd9.com load?

The average loading time of phntmd9.com is 1820 ms.
Average Load Time:
1820 ms

Does phntmd9.com use compression?

Website compression is the process of reducing the size of website files, such as HTML, CSS, JavaScript, and image files, to improve website performance and load times. Compressing website files can significantly reduce the amount of data that needs to be transferred from the server to the user's browser, resulting in faster page load times and improved user experience. Files on phntmd9.com are reduced by 77%.
phntmd9.com use gzip compression.
Original size: 158.06 KB
Compressed size: 35.16 KB
File reduced by: 122.89 KB (77%)

Google Safe Browsing

Google Safe Browsing is a service provided by Google that helps protect users from visiting websites that may contain malicious or harmful content, such as malware, phishing attempts, or deceptive software.
This site is not currently listed as suspicious

MyWot.com Reputation Ratings

MyWOT (short for "My Web of Trust") is a web-based reputation and rating service that provides users with information about the trustworthiness and safety of websites.
Status:
  SAFE

SSL Checker - SSL Certificate Verify

An SSL (Secure Sockets Layer) certificate is a digital certificate that establishes a secure encrypted connection between a web server and a user's web browser. It provides authentication and encryption, ensuring that data transmitted between the server and the browser remains private and protected. phntmd9.com supports HTTPS.
 phntmd9.com supports HTTPS
     
Verifying SSL Support. Please wait...
Common Name: cpanel.phntmd9.com
Organization:
Location:
Issuer: R12
Valid from: Feb 15 14:52:37 2026 GMT
Valid until: May 16 14:52:36 2026 GMT
Authority: CA:FALSE
Keysize: 2048 Bits
Common Name: R12
Organization: Let's Encrypt
Location: US
Issuer: ISRG Root X1
Valid from: Mar 13 00:00:00 2024 GMT
Valid until: Mar 12 23:59:59 2027 GMT
Authority: CA:TRUE
Keysize: 2048 Bits

Verify HTTP/2 Support

HTTP/2 (Hypertext Transfer Protocol version 2) is a major revision of the HTTP protocol, which is the foundation of data communication on the World Wide Web. It was developed as an improvement over the previous HTTP/1.1 version to enhance web performance and efficiency.
 phntmd9.com supports HTTP/2
     
Verifying HTTP/2.0 Support. Please wait...

Http Header

HTTP headers are extra portions of records despatched among a consumer (which include an internet browser) and a server at some stage in an HTTP request or response. They offer instructions, metadata, or manipulate parameters for the conversation among the consumer and server.
expires: Thu, 19 Nov 1981 08:52:00 GMT
cache-control: no-store, no-cache, must-revalidate
pragma: no-cache
link: <https://phntmd9.com/wp-json/>; rel="https://api.w.org/", <https://phntmd9.com/wp-json/wp/v2/pages/4522>; rel="alternate"; title="JSON"; type="application/json", <https://phntmd9.com/>; rel=shortlink
set-cookie: PHPSESSID=47c2dcbc5bd1ae860eab726dcee611be; path=/
vary: Accept-Encoding,User-Agent
content-encoding: gzip
content-length: 36006
content-type: text/html; charset=UTF-8
date: Mon, 16 Mar 2026 01:02:57 GMT
server: Apache

DNS Lookup

DNS entries (Domain Name System) are a critical component of the Internet infrastructure. They act as directories that translate human-readable domain names (such as example.com) to machine-readable IP addresses. DNS records are stored on DNS servers and help forward internet traffic efficiently.
Type Ip Target/Txt TTL
HINFO 3600

Whois Lookup

Domain WHOIS is a public database that provides information about domain names, including registered owners, contact information, domain registrars, registration and expiration dates, name servers, and other relevant information. Domain registration for this website began on December 11, 2023 and will expire on December 11, 2026 if not renewed. This website is now assigned through the registrar NameCheap, Inc.. The WHOIS data for this website's domain was last updated on November 11, 2025.
Domain Created:
2023-12-11
Domain Expires:
2026-12-11
Domain Updated:
2025-11-11
Domain Age:
2 years 5 months 21 days
Domain Registrar:
NameCheap, Inc.
WhoIs:
 

   Domain Name: PHNTMD9.COM
   Registry Domain ID: 2837031265_DOMAIN_COM-VRSN
   Registrar WHOIS Server: whois.namecheap.com
   Registrar URL: http://www.namecheap.com
   Updated Date: 2025-11-11T08:42:35Z
   Creation Date: 2023-12-11T22:56:24Z
   Registry Expiry Date: 2026-12-11T22:56:24Z
   Registrar: NameCheap, Inc.
   Registrar IANA ID: 1068
   Registrar Abuse Contact Email: email
   Registrar Abuse Contact Phone: +1.6613102107
   Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
   Name Server: GEORGIA.NS.CLOUDFLARE.COM
   Name Server: JEREMY.NS.CLOUDFLARE.COM
   DNSSEC: unsigned
   URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2026-03-16T01:03:42Z