@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
 
:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --neon-lime: #bfff00;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --glass-border: rgba(255, 255, 255, 0.08);
}
 
body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
 
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}
 
.glass-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}
 
.neon-border {
    border: 1px solid var(--neon-lime);
    box-shadow: 0 0 10px rgba(191, 255, 0, 0.1);
}
 
.neon-text {
    color: var(--neon-lime);
}
 
.btn-neon {
    background: var(--neon-lime);
    color: #000;
    font-weight: 700;
    transition: all 0.2s ease-out;
    height: 2.75rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem !important;
    border-radius: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem !important;
}
 
.btn-neon:hover {
    box-shadow: 0 0 15px rgba(191, 255, 0, 0.25);
    transform: translateY(-1px);
}
 
.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease-out;
    height: 2.75rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem !important;
    border-radius: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem !important;
}
 
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.06);
    color: white;
}
 
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
 
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
 
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-lime);
}
 
/* Global Form Element Styling - UNIFIED HEIGHT */
select, input[type="date"], input[type="text"], input[type="number"], input[type="email"], input[type="password"], textarea {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 0.85rem !important;
    padding: 0 1.25rem !important;
    color: white !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    outline: none !important;
    transition: all 0.25s ease !important;
    height: 2.75rem !important; 
    line-height: normal !important;
}
 
textarea {
    height: auto !important;
    padding: 1rem !important;
    line-height: 1.6 !important;
}
 
select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding-right: 2.5rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23bfff00'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 0.9rem !important;
}
 
input:focus, select:focus, textarea:focus {
    border-color: rgba(191, 255, 0, 0.4) !important;
    box-shadow: 0 0 0 4px rgba(191,255,0,0.03) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}
 
/* Heading scaling */
h1 { font-size: clamp(1.5rem, 5vw, 2.25rem) !important; font-weight: 900 !important; }
h2 { font-size: clamp(1.25rem, 4vw, 1.75rem) !important; font-weight: 900 !important; }
h3 { font-size: clamp(1.1rem, 3vw, 1.25rem) !important; font-weight: 800 !important; }
h4 { font-size: 1rem !important; font-weight: 700 !important; }
 
/* Label styling */
.label-small {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666;
}
 
/* Content spacing */
.section-padding {
    padding: 1.5rem;
}
@media (min-width: 768px) {
    .section-padding { padding: 2.5rem; }
}
