/* === Base / global === */

:root {
  --mp-accent:        #38bdf8;
  --mp-accent-soft:   #60a5fa;
  --mp-accent-deep:   #1e3a8a;
  --mp-border-soft:   #1f2937;
  --mp-text:          #e5e7eb;
  --mp-text-muted:    #9ca3af;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 40%, #020617 100%);
  color: var(--mp-text);
}

/* Generic wrappers used in templates */
.mp-main {
  min-height: 60vh;
}

.mp-shell {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 16px;
}

.mp-frame {
  background: transparent;
}

.mp-content {
  min-height: 400px;
}

/* Simple headings */
.mp-page-title,
.mp-mod-single-title,
.mp-archive-title {
  font-weight: 600;
}

/* Utility */
.mp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--mp-text-muted);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* Responsive tweaks for shell + main */
@media (max-width: 900px) {
  .mp-shell {
    margin: 12px auto;
    padding: 0 10px;
  }
}
