/* Reset & Base */
body { 
    background-color: #09090b; 
    color: #e4e4e7; 
    font-family: 'Inter', sans-serif; 
}

/* Glassmorphism Effect */
.glass { 
    background: rgba(39, 39, 42, 0.6); 
    backdrop-filter: blur(12px); 
    border: 1px solid rgba(255,255,255,0.08); 
}

/* Input Custom Style */
.input-dark { 
    background: #09090b; 
    border: 1px solid #3f3f46; 
    color: #f4f4f5; 
}
.input-dark:focus { 
    border-color: #6366f1; 
    outline: none; 
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2); 
}

/* Custom Scrollbar */
::-webkit-scrollbar { 
    width: 8px; 
    height: 8px; 
}
::-webkit-scrollbar-track { 
    background: #18181b; 
}
::-webkit-scrollbar-thumb { 
    background: #3f3f46; 
    border-radius: 4px; 
}
::-webkit-scrollbar-thumb:hover { 
    background: #52525b; 
}

/* Syntax Highlighting Simulation */
pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}
