/* base.css */

/* Global Reset */
* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  background: var(--bg-page);
  color: var(--text-main);
  transition: background 0.3s ease, color 0.3s ease;
}

a { color: var(--primary); text-decoration:none; }
a:hover { text-decoration:underline; }

/* Paragraphs & Typography */
p {
  margin: 0.5rem 0;
  line-height: 1.5;
  color: var(--text-main);
}
h2, h3, h4 {
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}

.lead { font-size: 16px; color: var(--text-muted); margin-bottom: 8px; }

.result-main { font-size: 24px; font-weight:700; margin-bottom:8px; }
.result-details, .result-mods, .info-content, .lead { color: var(--text-muted); }

.indicator.good .indicator-dot { background: var(--success); }
.indicator.fair .indicator-dot { background: var(--warning); }
.indicator.poor .indicator-dot { background: var(--danger); }