:root { font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, sans-serif; }
body { margin: 0; background: #0b0e14; color: #e8e8e8; }
a { color: #9bd; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1200px; margin: 0 auto; padding: 24px; }
.card { background: #121826; border: 1px solid #1f2a44; border-radius: 14px; padding: 16px; margin: 14px 0; }
.header { display:flex; align-items:center; justify-content:space-between; gap: 12px; }
.badge { display:inline-block; padding: 10px 14px; border-radius: 10px; border: 1px solid #2c3a5d; background:#16213a; color:#e8e8e8;}
.btn { display:inline-block; padding: 10px 14px; border-radius: 10px; border: 1px solid #2c3a5d; background:#16213a; color:#e8e8e8; cursor:pointer; }
.btn:hover { filter: brightness(1.08); }
.btn.danger { background:#3a1620; border-color:#6a2a3a; }
.btn.primary { background:#1a2f5a; border-color:#3557a8; }
.input { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid #2c3a5d; background:#0f1728; color:#e8e8e8; }
.grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.thumb { background:#0f1728; border:1px solid #223153; border-radius: 12px; padding: 10px; display:flex; flex-direction:column; gap: 8px; }
.thumb img { width: 100%; height: 130px; object-fit: cover; border-radius: 10px; border: 1px solid #223153; }
.row { display:flex; gap: 12px; flex-wrap: wrap; }
.notice { padding: 10px 12px; border-radius: 12px; border: 1px solid #2c3a5d; background:#0f1728; margin: 12px 0; }
.notice.ok { border-color:#2a6a4a; background:#0f2218; }
.notice.err { border-color:#6a2a3a; background:#2a0f16; }
.small { opacity: .85; font-size: 13px; }
hr { border: 0; border-top: 1px solid #1f2a44; margin: 18px 0; }
table { width:100%; border-collapse: collapse; }
th, td { text-align:left; padding: 10px; border-bottom: 1px solid #1f2a44; vertical-align: top; }
code { background:#0f1728; padding:2px 6px; border-radius:8px; border:1px solid #223153; }
