
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1a1b2d;
    --secondary: #ff580f;
    --accent: #3a86ff;
    --dark: #0f1019;
    --gray: #2a2b3a;
    --light-gray: #e0e0e0;
}

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

body {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
}

.container {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

input, select {
    color: white;
    background-color: var(--gray) !important;
    border-radius: 4px;
    padding: 0.5rem 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(255, 88, 15, 0.2);
}

button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

button:hover {
    transform: translateY(-1px);
}

.select2-container .select2-selection--single {
    height: 38px !important;
    background-color: var(--gray) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white !important;
    line-height: 38px !important;
}

.title-bar {
    background: linear-gradient(90deg, var(--dark), var(--gray));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.keyboard-keys {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255,255,255,0.1);
}
