:root {
  --bg: #ffffff;
  --fg: #111;
  --muted: #555;
}

[data-theme="dark"] {
  --bg: #0f1115;
  --fg: #eaeaea;
  --muted: #aaa;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, Arial, Helvetica, sans-serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  line-height: 1.5;
}

#subtitle {
  margin: 0px;
}

header {
  position: relative;
  margin-bottom: 32px;
}

#dots {
  width: 100%;
  height: 130px; /* optional: initial height */
  display: block;
  margin-bottom: 1px;
}

.header-text {
  position: relative;
}

.controls button {
  margin-right: 8px;
}

h1 {
  margin: 0;
  font-size: 26px;
}

h2 {
  margin-top: 32px;
  font-size: 18px;
}

.meta {
  font-size: 14px;
  color: var(--muted);
}

.job {
  margin-top: 16px;
}

ul {
  margin-left: 18px;
}

/* ATS keyword block */
.ats-keywords {
  font-size: 1px;
  color: transparent;
  height: 0;
  overflow: hidden;
}

/* PRINT / ATS SAFE */
@media print {
  body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11pt;
    padding: 0;
  }

  canvas,
  button,
  .controls {
    display: none !important;
  }

  section {
    page-break-inside: avoid;
  }
}
