<!DOCTYPE html>
<html lang="zh-TW">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>年齡驗證 - kittyhub.net</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, sans-serif; display: flex; justify-content: center; align-items:
center; min-height: 100vh; background: linear-gradient(135deg, #1a1a2e 0%,
#16213e 100%); color: #fff; padding: 20px; }
        .box { text-align: center; padding: 40px; background:
rgba(255,255,255,0.05); border-radius: 16px; backdrop-filter: blur(10px);
max-width: 400px; }
        h1 { font-size: 48px; margin-bottom: 10px; }
        h2 { font-size: 24px; margin-bottom: 20px; font-weight: normal; }
        p { color: #aaa; margin-bottom: 30px; line-height: 1.6; }
        .buttons { display: flex; gap: 15px; justify-content: center;
flex-wrap: wrap; }
        button { padding: 15px 40px; font-size: 16px; cursor: pointer; border:
none; border-radius: 8px; font-weight: bold; transition: transform 0.2s,
opacity 0.2s; }
        button:hover { transform: scale(1.05); }
        .yes { background: #e94560; color: #fff; }
        .no { background: #333; color: #fff; }
        .no:hover { opacity: 0.8; }
    </style>
</head>
<body>
    <div class="box">
        <h1>🔞</h1>
        <h2>年齡驗證</h2>
        <p>本站可能含有成人內容<br>請確認您已年滿 18 歲</p>
        <div class="buttons">
            <button type="button" class="yes"
onclick="document.cookie=String.fromCharCode(97,103,101,95,118,101,114,105,102
,105,101,100,61,121,101,115,59,32,112,97,116,104,61,47,59,32,109,97,120,45,97,
103,101,61,51,49,53,51,54,48,48,48,59,32,83,97,109,101,83,105,116,101,61,76,97
,120,59,32,83,101,99,117,114,101);location.reload();">我已年滿 18 歲</button>
            <button type="button" class="no"
onclick="window.location.href=String.fromCharCode(104,116,116,112,115,58,47,47
,119,119,119,46,103,111,111,103,108,101,46,99,111,109);">離開</button>
        </div>
    </div>
</body>
</html>