/* ==================== ADVANCED STYLES ==================== */

:root {
    --primary-green: #00ff41;
    --dark-bg: #0a0a0a;
    --card-bg: #111111;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.kali-bg {
    background-color: #0a0a0a;
}

.kali-card {
    background-color: #111111;
    border: 1px solid #222222;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kali-green {
    color: #00ff41;
}

.tool-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #222222;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    border-color: #00ff41;
    transform: translateY(-4px);
}

.login-input {
    background-color: #111111;
    border: 1px solid #333333;
    color: white;
    transition: all 0.2s ease;
}

.login-input:focus {
    border-color: #00ff41;
    box-shadow: 0 0 0 4px rgba(0, 255, 65, 0.1);
}

.modal {
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    0% { transform: scale(0.8) translateY(40px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.search-input {
    background-color: #111111;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #00ff41;
    box-shadow: 0 0 0 4px rgba(0, 255, 65, 0.1);
}

.three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.92;
}