/* Painel em Segundo Plano (Glassmorphism) */
.panel {
background: rgba(26, 26, 26, 0.85); /* Roxo bem escuro transparente */
backdrop-filter: blur(10px); /* Desfoca o que estiver atrás */
-webkit-backdrop-filter: blur(10px);
border: 2px solid #A020F0;
border-radius: 20px;
box-shadow: 0 0 30px rgba(160, 32, 240, 0.6);
display: flex;
padding: 30px;
gap: 50px;
width: 550px;
color: white;
position: relative;
}
.column {
flex: 1;
display: flex;
flex-direction: column;
}
h2 {
color: #A020F0;
font-size: 1.1rem;
margin-top: 0;
text-transform: uppercase;
text-shadow: 0 0 10px rgba(160, 32, 240, 0.5);
border-left: 4px solid #A020F0;
padding-left: 10px;
}
/* Opções Estilizadas */
.option {
margin: 8px 0;
display: flex;
align-items: center;
cursor: pointer;
font-size: 0.95rem;
font-weight: 500;
transition: 0.2s;
}
.option:hover {
color: #bc4dfd;
text-shadow: 0 0 8px #A020F0;
}
input[type="checkbox"], input[type="radio"] {
accent-color: #A020F0;
width: 18px;
height: 18px;
margin-right: 12px;
cursor: pointer;
}
.label-aux {
font-size: 0.7rem;
color: #A020F0;
margin: 15px 0 5px 0;
font-weight: bold;
}
/* Botão Injetar Flutuante */
.btn-inject {
background: linear-gradient(45deg, #A020F0, #6a0dad);
color: white;
border: none;
padding: 12px;
border-radius: 8px;
font-weight: 900;
cursor: pointer;
margin-top: 20px;
transition: 0.4s;
box-shadow: 0 4px 15px rgba(160, 32, 240, 0.4);
}
.btn-inject:hover {
letter-spacing: 2px;
box-shadow: 0 0 25px #A020F0;
}