/* =========================================
   RISK GUARDIAN CSS - ELITE EDITION
========================================= */

/* Hapus .risk-card jadul lu karena kita udah full inline style HTML di atas */

/* Progress Bar Animasi Garis Miring Sci-Fi */
@keyframes progressStripes {
    0% { background-position: 1.5rem 0; }
    100% { background-position: 0 0; }
}

/* Input Kaca Premium */
.elite-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 12px 15px;
    border-radius: 8px;
    color: #fff !important;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
    outline: none;
}

.elite-input:focus {
    border-color: #c084fc !important;
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.3) !important;
    background: rgba(20, 15, 30, 0.8) !important;
}

/* Override Select / Dropdown */
select.elite-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23c084fc' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
}

/* Tombol PANIC LOCK Hover Effect */
#killSwitchBtn {
    position: relative;
    overflow: hidden;
}
#killSwitchBtn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(181, 80, 239, 0.2), transparent);
    transition: 0.5s;
}
#killSwitchBtn:hover::before { left: 100%; }
#killSwitchBtn:hover {
    background: rgba(239, 83, 80, 0.2) !important;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(239, 83, 80, 0.6) !important;
}

/* Hapus kotak putih bawaan browser (spinners) di input number */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type=number] {
  -moz-appearance: textfield;
}