body { font-family: "Inter", sans-serif; }
html, body { overflow-x: hidden; }

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}
.stat-label { color: #6b7280; font-weight: 500; }
.stat-value { color: #111827; font-weight: 600; text-align: right; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.check-pass { background: #f0fdf4; border: 1px solid #bbf7d0; }
.check-fail { background: #fef2f2; border: 1px solid #fecaca; }
.check-warn { background: #fefce8; border: 1px solid #fde68a; }
.check-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.check-label { font-weight: 600; color: #111827; display: block; margin-bottom: 2px; }
.check-detail { color: #6b7280; line-height: 1.4; }

/* Safe zone overlay */
.safe-zone-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.safe-zone-top {
  background: rgba(239, 68, 68, 0.35);
  flex: 0 0 13%;
}
.safe-zone-safe {
  background: rgba(16, 185, 129, 0.12);
  border-top: 1px dashed rgba(16,185,129,0.7);
  border-bottom: 1px dashed rgba(16,185,129,0.7);
  flex: 1;
}
.safe-zone-bottom {
  background: rgba(239, 68, 68, 0.35);
  flex: 0 0 13%;
}

.tip-box {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 1rem;
  margin: 1.25rem 0;
  border-radius: 0.5rem;
}
.warning-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1rem;
  margin: 1.25rem 0;
  border-radius: 0.5rem;
}

.content-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.content-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: #111827; }
.content-section h3 { font-size: 1.25rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.75rem; color: #374151; }
.content-section p { margin-bottom: 1rem; color: #4b5563; line-height: 1.7; }
.content-section ul, .content-section ol { margin-bottom: 1.25rem; padding-left: 1.5rem; color: #4b5563; }
.content-section li { margin-bottom: 0.5rem; line-height: 1.6; }
