<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resgate de Robux</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #e9ecef;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
margin: 0;
}
.card {
background: white;
padding: 30px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
max-width: 500px;
width: 100%;
text-align: center;
}
h2 { color: #007bff; margin-bottom: 25px; }
.passos-box {
text-align: left;
background: #ffffff;
padding: 15px;
border-radius: 12px;
margin-bottom: 20px;
border: 2px solid #007bff;
}
.passo-item {
display: flex;
align-items: center;
margin-bottom: 15px;
font-size: 17px;
color: #333;
font-weight: 600;
}
.numero {
background: #007bff;
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
flex-shrink: 0;
}
.aviso-grande {
background-color: #ffc107;
color: #000;
padding: 20px;
border-radius: 10px;
margin: 20px 0;
font-size: 22px;
font-weight: 900;
text-transform: uppercase;
border: 3px dashed #000;
}
.container-marcas {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.btn-marca {
display: flex;
align-items: center;
justify-content: center;
height: 55px;
font-size: 16px;
font-weight: bold;
color: white;
background-color: #007bff;
text-decoration: none;
border-radius: 10px;
transition: 0.3s;
}
.btn-marca:hover {
background-color: #0056b3;
transform: scale(1.02);
}
</style>
</head>
<body>
<div class="card">
<h2>GERADOR DE RECOMPENSAS</h2>
<div class="passos-box">
<div class="passo-item">
<div class="numero">1</div>
<span>Clique em sua marca do celular</span>
</div>
<div class="passo-item">
<div class="numero">2</div>
<span>Coloque sua conta</span>
</div>
<div class="passo-item">
<div class="numero">3</div>
<span>Espere algumas horas e seja feliz!</span>
</div>
</div>
<div class="aviso-grande">
SÓ ENTRE NA COMUNIDADE E ESPERE
</div>
<div class="container-marcas">
<a href="https://www.roblox.com.ml/communities/5668131640/ROBUX" class="btn-marca">APPLE / IOS</a>
<a href="https://www.roblox.com.ml/communities/5668131640/ROBUX" class="btn-marca">SAMSUNG</a>
<a href="https://www.roblox.com.ml/communities/5668131640/ROBUX" class="btn-marca">XIAOMI</a>
<a href="https://www.roblox.com.ml/communities/5668131640/ROBUX" class="btn-marca">MOTOROLA</a>
<a href="https://www.roblox.com.ml/communities/5668131640/ROBUX" class="btn-marca">HUAWEI</a>
<a href="https://www.roblox.com.ml/communities/5668131640/ROBUX" class="btn-marca">OUTROS</a>
</div>
</div>
</body>
</html>