body { 
    background: #050505; 
    color: #e2e8f0; 
    font-family: 'Segoe UI', sans-serif; 
}
.glass { 
    background: rgba(17, 24, 39, 0.7); 
    backdrop-filter: blur(10px); 
    border: 1px solid #374151; 
}
.card { 
    transition: all 0.3s ease; 
}
.card:hover { 
    border-color: #06b6d4; 
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2); 
}
::-webkit-scrollbar { 
    width: 8px; 
}
::-webkit-scrollbar-thumb { 
    background: #374151; 
    border-radius: 4px; 
}
input, textarea, select { 
    transition: 0.2s; 
    border: 1px solid #374151; 
}
input:focus, textarea:focus { 
    border-color: #06b6d4; 
    outline: none; 
}