* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  background: radial-gradient(circle at top, #111827 0, #020617 60%);
  color: #e5e7eb;
}

header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(12px);
  background: linear-gradient(90deg, rgba(15,23,42,0.9), rgba(15,23,42,0.6));
  position: sticky;
  top: 0;
  z-index: 10;
}
header h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.plugins {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.plugin-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.10), transparent 55%),
    radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.10), transparent 55%),
    rgba(15,23,42,0.92);
  box-shadow: 0 18px 45px rgba(15,23,42,0.75);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.plugin-row:hover {
  transform: translateY(-2px);
  border-color: rgba(129, 140, 248, 0.8);
  box-shadow: 0 20px 55px rgba(15,23,42,0.9);
}

.plugin-row img {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: radial-gradient(circle at top, #111827, #020617);
  padding: 6px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.plugin-name {
  font-size: 16px;
  font-weight: 600;
  color: #f9fafb;
}

.plugin-message {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 4px;
  line-height: 1.4;
}

.plugin-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  color: white;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4338ca, #6366f1);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: default;
  box-shadow: none;
}

.btn-secondary {
  background: rgba(15,23,42, 0.85);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.btn-secondary:hover {
  background: rgba(15,23,42, 1);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15,23,42, 0.8);
  font-size: 11px;
  color: #9ca3af;
}

.footer {
  text-align: center;
  color: #9ca3af;
  font-size: 12px;
  padding: 18px 16px 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin-top: 18px;
}

.plugin-status {
  font-size: 11px;
  color: #a5b4fc;
}
