<title>COMPLEXO STORE - FF MODS</title>
<style>
:root {
--primary: #6a0dad; /* Roxo */
--secondary: #00d4ff; /* Azul */
--bg: #050505;
--card-bg: rgba(20, 20, 20, 0.9);
}
body {
background-color: var(--bg);
background-image: radial-gradient(circle at center, #1a0a2e 0%, #050505 100%);
color: white;
font-family: 'Segoe UI', Roboto, sans-serif;
margin: 0;
padding: 0;
overflow-x: hidden;
}
/* Efeito de brilho no topo */
.header {
text-align: center;
padding: 40px 20px;
border-bottom: 2px solid var(--primary);
box-shadow: 0 0 20px var(--primary);
background: rgba(0, 0, 0, 0.8);
}
.header h1 {
font-size: 2.5em;
margin: 0;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 5px;
text-shadow: 0 0 15px var(--primary), 0 0 5px var(--secondary);
font-weight: 900;
}
.login-box {
display: flex;
justify-content: center;
margin-top: 20px;
}
/* Botão Estilo Google */
.btn-google {
background: white;
color: #444;
padding: 10px 20px;
border-radius: 5px;
font-weight: bold;
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
cursor: pointer;
border: none;
transition: 0.3s;
}
.btn-google:hover { transform: scale(1.05); box-shadow: 0 0 15px white; }
.container {
padding: 20px;
display: grid;
gap: 20px;
max-width: 600px;
margin: 0 auto;
}
/* Card Estilo Mod Menu */
.mod-card {
background: var(--card-bg);
border-left: 5px solid var(--secondary);
border-right: 2px solid var(--primary);
border-radius: 8px;
padding: 20px;
position: relative;
overflow: hidden;
box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}
.mod-card::before {
content: "ONLINE";
position: absolute;
top: 10px;
right: -30px;
background: #00ff00;
color: black;
font-size: 10px;
font-weight: bold;
padding: 2px 40px;
transform: rotate(45deg);
}
.mod-card h2 {
margin: 0;
color: var(--secondary);
font-size: 20px;
text-transform: uppercase;
}
.price {
font-size: 24px;
color: #00ff00;
font-weight: bold;
margin: 10px 0;
display: block;
}
.features {
list-style: none;
padding: 0;
font-size: 14px;
color: #bbb;
}
.features li::before {
content: "✓ ";
color: var(--secondary);
}
.btn-buy {
background: linear-gradient(90deg, var(--primary), var(--secondary));
color: white;
width: 100%;
border: none;
padding: 12px;
border-radius: 5px;
font-weight: bold;
text-transform: uppercase;
cursor: pointer;
margin-top: 15px;
}
.footer {
text-align: center;
padding: 20px;
font-size: 12px;
color: var(--primary);
opacity: 0.7;
}
</style>
<div class="header">
<h1>COMPLEXO STORE</h1>
<div class="login-box">
<button class="btn-google" onclick="alert('Sistema de login em manutenção!')">
<img src="https://www.google.com/favicon.ico" width="20"> Logar com Google
</button>
</div>
</div>
<div class="container">
<div class="mod-card">
<h2>Mod Menu VIP - V1</h2>
<ul class="features">
<li>Aimbot 100% Head</li>
<li>Esp Line / Esp Name</li>
<li>Antiban Atualizado</li>
</ul>
<span class="price">R$ 29,90</span>
<button class="btn-buy" onclick="window.open('https://wa.me/SEUNUMERO')">Comprar Agora</button>
</div>
<div class="mod-card" style="border-left-color: var(--primary);">
<h2>Regedit Extreme - iOS/Android</h2>
<ul class="features">
<li>Mira Gruda na Cabeça</li>
<li>No Recoil Ativado</li>
<li>Suporte 24h</li>
</ul>
<span class="price">R$ 19,90</span>
<button class="btn-buy" onclick="window.open('https://wa.me/SEUNUMERO')">Comprar Agora</button>
</div>
</div>
<div class="footer">
© 2026 COMPLEXO STORE - TODOS OS DIREITOS RESERVADOS
</div>