/* GLOBAL STYLES */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter', sans-serif; background:#0b0b0b; color:#fff; line-height:1.6; }
a { color:#2f66ff; text-decoration:none; }
button { cursor:pointer; border:none; border-radius:6px; background:#2f66ff; color:#fff; padding:0.8rem 1.2rem; font-weight:600; transition:0.2s; }
button:hover { background:#1f4bcc; }
header { display:flex; justify-content:space-between; align-items:center; padding:1rem 2rem; background:#0d0d0d; border-bottom:1px solid #1a1a1a; }
header img { height:60px; }
nav a { margin-left:2rem; font-weight:600; }
nav a:hover { color:#fff; }
section { padding:3rem 2rem; max-width:1000px; margin:0 auto; }
section h2 { font-size:2rem; color:#2f66ff; margin-bottom:1.5rem; text-align:center; }
input, select, textarea { padding:0.8rem; margin-bottom:1rem; border-radius:6px; border:1px solid #333; background:#1a1a1a; color:#fff; width:100%; }
input::placeholder, textarea::placeholder { color:#888; }
footer { text-align:center; padding:2rem; border-top:1px solid #1a1a1a; color:#777; font-size:0.9rem; }
ul { list-style:none; margin-top:1rem; }
li { padding:0.5rem 0; border-bottom:1px solid #333; }