.glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.neural-response {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 20px;
    color: cyan;
    font-family: 'Share Tech Mono', monospace;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.synaptic-text {
    position: relative;
    &::after {
        content: '_';
        animation: blink 1s infinite;
    }
}

@keyframes blink {
    50% { opacity: 0; }
}

.quantum-form {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
}

.quantum-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem;
    margin: 0.5rem 0;
    width: 100%;
    border-radius: 6px;
    transition: border-color 0.3s;
}

.quantum-form input:focus {
    border-color: rgba(99, 102, 241, 0.6);
    outline: none;
}

.quantum-form button {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border: none;
    color: white;
    padding: 0.75rem;
    width: 100%;
    border-radius: 6px;
    margin-top: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.quantum-form button:hover {
    transform: translateY(-1px);
}

.quantum-form.quantum-error {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    border-color: rgba(239, 68, 68, 0.5);
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}
