* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    touch-action: manipulation;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #ff99cc; /* texto rosa neon */
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overscroll-behavior-y: contain;
}

/* Neural Network Background - Brilho aumentado */
.neural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: url('icon-512x512.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 120px;
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Menu Container */
.panel {
    width: 100%;
    max-width: 320px;
    border: 2px solid #ff99cc; /* borda rosa neon */
    border-radius: 20px; /* bordas arredondadas */
    background-color: rgba(20, 5, 20, 0.85); /* fundo roxo escuro */
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 45, 255, 0.884); /* sombra rosa neon melhorada */
    margin: 10px;
}

/* Header */
.panel-header {
    padding: 12px;
    background-color: rgba(30, 5, 30, 0.8);
    border-bottom: 1px solid #ff99cc;
    text-align: center;
    font-size: 18px;
    color: #fff;
    text-shadow: 0 0 8px #ff99cc;
    letter-spacing: 1px;
    border-top-left-radius: 20px;   /* topo arredondado */
    border-top-right-radius: 20px;
}

/* Content Area */
.panel-content {
    display: flex;
    min-height: 300px;
    border-bottom-left-radius: 20px;   /* cantos arredondados */
    border-bottom-right-radius: 20px;
}

/* Left Menu */
.side-menu {
    width: 90px;
    border-right: 2px solid #ff99cc;
    background-color: rgba(20, 5, 20, 0.8);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.menu-item {
    padding: 12px 10px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.menu-item i {
    font-size: 20px;
}

.side-menu .menu-item span {
    color: #ff99cc; /* muda a cor para azul neon, por exemplo */
}

.menu-item:hover, .menu-item.active {
    background-color: rgba(255, 0, 255, 0.2);
}

/* Right Content */
.content-area {
    flex: 1;
    padding: 12px;
    position: relative;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Checkbox Items */
.checkbox-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.checkbox-item input {
    margin-right: 8px;
    accent-color: #ff99cc;
    width: 16px;
    height: 16px;
}

/* Sliders */
.slider-container {
    margin: 12px 0;
}

.slider-container label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    color: #ff99cc;
}

.slider {
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    background: #200020;
    outline: none;
    border-radius: 2px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff99cc;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    background: #ff99cc;
}

.slider-value {
    text-align: right;
    font-size: 11px;
    margin-top: 2px;
    color: #ff99cc;
}

/* Divider */
.divider {
    height: 1px;
    background-color: #ff99cc;
    margin: 12px 0;
}

/* Info Text */
.info-text {
    margin: 6px 0;
    font-size: 13px;
    text-align: center;
    color: #ff99cc;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(20, 5, 20, 0.95);
    border: 1px solid #ff00ff;
    color: #ff99cc;
    padding: 6px 12px;
    border-radius: 12px; /* arredondado */
    font-size: 13px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.notification.show {
    opacity: 1;
}

/* Login Screen */
.login-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.5);
}

.login-box {
    width: 100%;
    max-width: 320px;
    border: 2px solid #ff99cc;
    border-radius: 15px; /* arredondado */
    background-color: rgba(20, 5, 20, 0.85);
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    margin: 10px;
}

.login-title {
    font-size: 22px;
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 0 8px #ff00ff;
}

.login-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    background-color: #200020;
    border: none;
    border-radius: 12px; /* arredondado */
    color: #ff99cc;
    font-size: 13px;
    text-align: center;
}

.login-input:focus {
    outline: none; /* remove a borda azul */
    border: 2px solid #ff99cc; /* mantém seu efeito rosa neon */
    box-shadow: 0 0 8px #ff99cc; /* mantém glow rosa */
}

/* Botão Login - Rosa normal */
.login-btn {
    width: 100%;
    padding: 8px;
    background-color: #ff99cc; /* rosa normal */
    color: #ffffff; /* texto escuro para contraste */
    border: none;
    border-radius: 12px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: none; /* sem neon inicialmente */
}

.login-btn:hover {
    background-color: #ff99cc; /* rosa um pouco mais forte ao passar o mouse */
    color: #fff;
}

/* Quando clicar - efeito neon */
.login-btn:active {
    box-shadow: 0 0 12px #ff99cc, 0 0 20px #ff99cc, 0 0 30px #ff99cc;
    transform: scale(0.98); /* leve efeito de clique */
}

/* Botão Injetar Pastas - Rosa normal */
.inject-btn {
    width: 100%;
    padding: 8px;
    background-color: #ff99cc; /* rosa normal */
    color: #ffffff; /* texto escuro */
    border: none;
    border-radius: 12px; /* arredondado */
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: none; /* sem neon inicialmente */
}

.inject-btn:hover {
    background-color: #ff99cc; /* rosa mais forte ao passar o mouse */
    color: #fff;
}

/* Quando clicar - efeito neon */
.inject-btn.active {
    box-shadow: 0 0 12px #ff99cc, 0 0 20px #ff99cc, 0 0 30px #ff99cc;
    transform: scale(0.98); /* leve efeito de clique */
}

/* ---------------------- */
/*   TOGGLE ROSA NEON     */
/* ---------------------- */

.toggle {
    position: relative;
    width: 42px;
    height: 22px;
    margin-right: 10px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c7b8c7;
    transition: 0.3s;
    border-radius: 30px;
    box-shadow: 0 0 6px #ff99cc(255, 255, 255, 0.3);
}

.slider-toggle:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #ff99cc;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 0 6px #ff99cc;
}

/* ativado */
.toggle input:checked + .slider-toggle {
    background-color: #ff99cc;
    box-shadow: 0 0 12px #ff99cc;
}

/* bolinha ao ativar */
.toggle input:checked + .slider-toggle:before {
    transform: translateX(20px);
    background-color: #fff;
    box-shadow: 0 0 8px #ffffff;
}

/* alinhamento bonito */
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item label {
    margin: 0;
    color: #ffffff; /* muda a cor do texto */
}

.acquire-btn {
    margin-top: 16px; /* AFASTA bem do botão ENTRAR */
    background: linear-gradient(135deg, #6a00ff, #9b4dff); /* ROXO */
    color: #ffffff;
}

.acquire-btn:hover {
    background: linear-gradient(135deg, #7b1bff, #b06bff);
}

.acquire-btn:active {
    box-shadow: 0 0 12px #9b4dff, 0 0 22px #6a00ff;
    transform: scale(0.97);
}
