<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Roblox's Top 3 Games</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?
family=Orbitron:wght@400;700&display=swap">
<style>
body {
font-family: 'Orbitron', sans-serif;
background: radial-gradient(circle, #0f2027, #203a43, #2c5364,
#1a1a1d);
color: #00ffcc;
text-align: center;
margin: 0;
padding: 0;
overflow-x: hidden;
}
h1 {
font-size: 3em;
text-shadow: 0 0 25px #00ffcc, 0 0 50px #00ffcc;
animation: flicker 3s infinite;
}
h2 {
font-size: 2em;
color: #ff33cc;
}
.game {
margin: 50px auto;
padding: 40px;
border: 3px solid #00ffcc;
border-radius: 20px;
width: 75%;
background: rgba(0, 0, 0, 0.8);
box-shadow: 0 0 25px rgba(0, 255, 204, 0.7), 0 0 50px rgba(255, 51,
204, 0.6);
transition: transform 0.5s ease, box-shadow 0.5s ease;
position: relative;
cursor: pointer;
}
.game:hover {
transform: scale(1.1) rotate(-2deg);
box-shadow: 0 0 50px rgba(0, 255, 204, 0.9), 0 0 100px rgba(255, 51,
204, 0.8);
}
.game img {
max-width: 100%;
height: auto;
border-radius: 15px;
border: 3px solid #ff33cc;
box-shadow: 0 0 30px #ff33cc, 0 0 60px #00ffcc;
transition: transform 0.3s ease;
}
.game:hover img {
transform: scale(1.05) rotate(2deg);
}
.description {
color: #ccc;
font-size: 1.3em;
margin-top: 20px;
}
.scenario {
color: #ff33cc;
font-size: 1.2em;
margin-top: 20px;
opacity: 0;
transition: opacity 0.5s ease;
}
.scenario.visible {
opacity: 1;
}
.neon-bar {
width: 100%;
height: 5px;
background: linear-gradient(90deg, #00ffcc, #ff33cc, #00ffcc);
animation: neon-scroll 4s linear infinite;
}
footer {
margin-top: 30px;
font-size: 1em;
color: #ff33cc;
text-shadow: 0 0 10px #ff33cc, 0 0 20px #00ffcc;
}
@keyframes neon-scroll {
0% { background-position: 0%; }
100% { background-position: 100%; }
}
@keyframes flicker {
0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
text-shadow: 0 0 25px #00ffcc, 0 0 50px #00ffcc;
}
20%, 24%, 55% {
text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}
}
</style>
</head>
<body>
<h1>👾 Roblox's Top 3 Games 👾</h1>
<h2>By Lia & Lyka – Pro Scammers</h2>
<div class="neon-bar"></div>
<div class="game" onclick="showScenario(1)">
<h2>1. Adopt Me!</h2>
<<img src="images/https://pin.it/k5xQ3gdRU.jpg" alt="Adopt Me!"
style="width: 100%; height: auto;">
<p class="description">The ultimate pet-raising simulator...</p>
<p class="scenario" id="scenario1">or your gateway to being scammed by Lia
and Lyka.</p>
</div>
<div class="game" onclick="showScenario(2)">
<h2>2. Brookhaven</h2>
<img
src="https://static.wikia.nocookie.net/roblox/images/3/35/Brookhaven_icon.png"
alt="Brookhaven Logo">
<p class="description">Live your best virtual life!</p>
<p class="scenario" id="scenario2">...as a 23-year-old, but you're actually
10.</p>
</div>
<div class="game" onclick="showScenario(3)">
<h2>3. Murder Mystery 2</h2>
<img
src="https://static.wikia.nocookie.net/roblox/images/8/8e/Murder_Mystery_2_Logo.png
" alt="Murder Mystery 2 Logo">
<p class="description">Trust no one. Not even yourself.</p>
<p class="scenario" id="scenario3">Bad aim = bad trash talk.</p>
</div>
<div class="neon-bar"></div>
<footer>
💡 "If L starts your name, you're probably smart." - Random Genius 💡
</footer>
<script>
function showScenario(gameNumber) {
// Hide all scenarios
document.querySelectorAll('.scenario').forEach(scenario => {
scenario.classList.remove('visible');
});
// Show the clicked game's scenario
const selectedScenario = document.getElementById(`scenario$
{gameNumber}`);
if (selectedScenario) {
selectedScenario.classList.add('visible');
}
}
</script>
</body>
</html>