/* COMPLETE style.css - GREEN UNIFICATION */
body { 
    background: #000; 
    color: #fff; 
    margin: 0; 
    overflow: hidden; 
    font-family: 'Inter', sans-serif; 
    -webkit-font-smoothing: antialiased; 
}
.hidden { display: none; }

/* Global Green Accents */
.text-green-pro { color: #00b15d; }
.bg-green-pro { background: #00b15d; }
.border-green-pro { border-color: #00b15d; }

/* Prefs Options */
.pref-card { 
    border: 1px solid #2d343b; 
    border-radius: 4px; 
    padding: 12px; 
    text-align: center; 
    cursor: pointer;
    font-size: 10px;
    font-weight: bold;
    color: #848e9c;
    transition: all 0.2s ease;
}
.pref-card.active { 
    border-color: #00b15d; 
    background: rgba(0, 177, 93, 0.1); 
    color: #00b15d;
}
.pref-card:hover { border-color: #00b15d; color: #fff; }

/* Inputs */
input:focus { border-color: #00b15d !important; outline: none; }

/* Custom Scrollbars */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: #00b15d; border-radius: 10px; }
