* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #0f0f13;
  color: #e4e4e7;
  min-height: 100vh;
}
.container { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }

/* Header */
header {
  text-align: center;
  margin-bottom: 50px;
}
header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
header p {
  color: #71717a;
  font-size: 0.95rem;
}

/* Sections */
.section {
  margin-bottom: 40px;
}
.section h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #a1a1aa;
  margin-bottom: 16px;
  padding-left: 4px;
  border-left: 3px solid #a78bfa;
  padding-left: 12px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

/* Card */
.card {
  background: #1a1a23;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}
.card:hover {
  border-color: #a78bfa;
  background: #1e1e2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(167,139,250,0.1);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.card-info { flex: 1; min-width: 0; }
.card-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.card-info p {
  font-size: 0.8rem;
  color: #71717a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-url {
  font-size: 0.7rem;
  color: #52525b;
  margin-top: 2px;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

/* Status badge */
.badge {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 500;
  flex-shrink: 0;
}
.badge-online { background: #166534; color: #86efac; }
.badge-offline { background: #7f1d1d; color: #fca5a5; }
