/* Inputs & selects */
.select-dark, select, input, textarea {
  background-color: rgba(255,255,255,0.06);
  color:#fff;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:14px;
  padding:10px 14px;
}
select option { background:#121212; color:#fff; }
select option:hover, select option:checked { background:#B7FF00; color:#000; }
input[type="checkbox"] { accent-color:#B7FF00; }

/* Menu + logo */
header nav ul { display:flex; gap:24px; list-style:none; margin:0; padding:0; align-items:center; }
header nav ul li a { text-decoration:none; color:#fff; transition:color .2s; }
header nav ul li a:hover { color:#B7FF00; }
header img { max-height:48px; width:auto; }
@media (max-width: 768px) { header img { max-height:36px; } }
@media (max-width: 480px) { header img { max-height:28px; } }