File: /var/www/www-root/data/www/automoon.click/site/dao.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Age Verification</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: white;
}
.container {
text-align: center;
background: rgba(0, 0, 0, 0.7);
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
max-width: 500px;
width: 90%;
}
h1 {
font-size: 28px;
margin-bottom: 20px;
color: #fff;
}
.arrow {
font-size: 40px;
margin-bottom: 30px;
animation: bounce 2s infinite;
}
.buttons {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.btn {
padding: 15px 40px;
border: none;
border-radius: 50px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.btn-yes {
background: linear-gradient(to right, #4CAF50, #45a049);
color: white;
}
.btn-no {
background: linear-gradient(to right, #f44336, #da190b);
color: white;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.btn:active {
transform: translateY(1px);
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-10px);
}
60% {
transform: translateY(-5px);
}
}
@media (max-width: 480px) {
.container {
padding: 20px;
}
h1 {
font-size: 22px;
}
.buttons {
flex-direction: column;
gap: 15px;
}
.btn {
padding: 12px 30px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Age Verification 18+ ?</h1>
<div class="arrow">↓</div>
<div class="buttons">
<a href="https://92orb.com/link?z=9417679&var=dating&ymid={CLICK_ID}" class="btn btn-yes">Yes</a>
<a href="https://92orb.com/link?z=9417679&var=dating&ymid={CLICK_ID}" class="btn btn-no">No</a>
</div>
</div>
<script>
// Простая анимация для привлечения внимания к кнопкам
document.addEventListener('DOMContentLoaded', function() {
const buttons = document.querySelectorAll('.btn');
buttons.forEach(button => {
button.addEventListener('mouseenter', function() {
this.style.transform = 'scale(1.05)';
});
button.addEventListener('mouseleave', function() {
this.style.transform = 'scale(1)';
});
});
});
</script>
</body>
</html>