:root { color-scheme: light dark; }
* { box-sizing: border-box; }
body {
  margin: 0; font-family: system-ui, sans-serif; line-height: 1.4;
  background: #0f1115; color: #e6e8eb;
}
@media (prefers-color-scheme: light) { body { background: #f6f7f9; color: #1b1e24; } }
.wrap { max-width: 980px; margin: 0 auto; padding: 32px 20px 60px; }
h1 { font-size: 22px; margin: 0 0 20px; }
.authbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; border: 1px solid #ffffff22; border-radius: 10px;
  margin-bottom: 22px; font-size: 14px;
}
.badge { font-size: 11px; padding: 2px 8px; border-radius: 20px; background: #3b82f633; color: #6ea8fe; font-weight: 600; }
.login { font-weight: 600; text-decoration: none; color: #fff; background: #3b82f6; padding: 8px 16px; border-radius: 8px; }
.logout { font-size: 13px; text-decoration: none; color: inherit; opacity: .85; border: 1px solid #ffffff33; padding: 5px 12px; border-radius: 7px; }
.logout:hover { color: #ef4444; border-color: #ef444488; }
.cat { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .55; margin: 26px 0 12px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 12px; }
.tile {
  display: flex; gap: 12px; align-items: center; padding: 14px; position: relative;
  border: 1px solid #ffffff22; border-radius: 12px; text-decoration: none; color: inherit;
}
.tile:hover { border-color: #3b82f6aa; transform: translateY(-2px); transition: .1s; }
.ico { width: 40px; height: 40px; border-radius: 9px; flex: 0 0 40px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.ico img { width: 22px; height: 22px; }
.meta { display: flex; flex-direction: column; }
.name { font-weight: 600; font-size: 15px; }
.desc { font-size: 12px; opacity: .6; margin-top: 2px; }
.dot { position: absolute; top: 12px; right: 12px; width: 8px; height: 8px; border-radius: 50%; }
.dot.up { background: #22c55e; box-shadow: 0 0 0 3px #22c55e33; }
.dot.down { background: #ef4444; box-shadow: 0 0 0 3px #ef444433; }
.dot.unknown { background: #6b7280; }
.hint { margin-top: 26px; opacity: .7; font-size: 14px; }
