@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Theme tokens ---------- */
:root {
  --background: 25 24% 7%;
  --foreground: 40 30% 92%;
  --card: 25 22% 10%;
  --primary: 32 85% 55%;
  --primary-foreground: 25 30% 8%;
  --secondary: 25 16% 16%;
  --secondary-foreground: 40 30% 92%;
  --muted: 25 14% 15%;
  --muted-foreground: 38 14% 62%;
  --accent: 43 80% 56%;
  --accent-foreground: 25 30% 8%;
  --destructive: 0 62% 50%;
  --border: 25 14% 20%;
  --ring: 32 85% 55%;
  --radius: 0.75rem;
}

/* Light mode: toggled on by the pure-CSS theme checkbox */
:root:has(#theme-toggle:checked) {
  --background: 40 33% 97%;
  --foreground: 25 30% 12%;
  --card: 40 30% 99%;
  --primary: 25 68% 42%;
  --primary-foreground: 40 40% 98%;
  --secondary: 38 24% 90%;
  --secondary-foreground: 25 30% 18%;
  --muted: 38 24% 91%;
  --muted-foreground: 28 12% 42%;
  --accent: 43 74% 49%;
  --accent-foreground: 25 40% 12%;
  --destructive: 0 72% 45%;
  --border: 33 20% 84%;
  --ring: 25 68% 42%;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  overflow-x: clip;
  min-height: 100dvh;
}

.font-display { font-family: "Cinzel", serif; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, textarea { font-family: inherit; }

::selection { background: hsl(var(--primary) / 0.3); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: hsl(var(--background) / 0.7);
  border-bottom: 1px solid hsl(var(--border) / 0.6);
}
.header-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.625rem; }
.brand-icon {
  height: 2.25rem; width: 2.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  object-fit: cover;
}
.brand-name {
  font-family: "Cinzel", serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.header-actions { display: flex; align-items: center; gap: 0.5rem; }

/* Pure-CSS theme toggle */
.theme-toggle {
  display: inline-grid;
  place-items: center;
  height: 2.5rem; width: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  cursor: pointer;
  transition: background 0.2s;
}
.theme-toggle:hover { background: hsl(var(--secondary)); }
.theme-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.theme-toggle .icon { width: 1.25rem; height: 1.25rem; stroke: hsl(var(--foreground)); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle input:checked ~ .moon { display: none; }
.theme-toggle input:not(:checked) ~ .sun { display: none; }

.back-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.back-link:hover { color: hsl(var(--foreground)); }
.back-link svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 4rem;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    hsl(var(--background)) 0%,
    hsl(var(--background) / 0.7) 40%,
    hsl(var(--background) / 0.2) 100%);
}
.hero-content {
  position: relative;
  max-width: 64rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(var(--primary) / 0.4);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.badge svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  max-width: 36rem;
}
.hero-sub {
  margin-top: 1rem;
  max-width: 28rem;
  color: hsl(var(--muted-foreground));
  font-size: 1.05rem;
}

/* ---------- Generator ---------- */
.generator-wrap {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.25rem 6rem;
  margin-top: -1rem;
  position: relative;
  z-index: 10;
}
.generator-card {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  border-radius: 1rem;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .generator-card { padding: 2rem; }
}

.mode-toggle {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 0.75rem;
  background: hsl(var(--secondary));
  width: 100%;
  margin-bottom: 1.75rem;
}
@media (min-width: 640px) { .mode-toggle { width: fit-content; } }
.mode-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s, background 0.2s;
}
.mode-btn:hover { color: hsl(var(--foreground)); }
.mode-btn.active {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
}
.mode-btn svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.own-name-field { margin-bottom: 1.75rem; }
.own-name-field label, .field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.text-input {
  width: 100%;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.text-input::placeholder { color: hsl(var(--muted-foreground) / 0.7); }
.text-input:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.5);
}

.race-section { margin-bottom: 1.5rem; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.section-head .race-blurb {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.race-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 640px) { .race-grid { grid-template-columns: repeat(4, 1fr); } }
.race-btn {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  border-radius: 0.75rem;
  padding: 0.75rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
}
.race-btn:hover { border-color: hsl(var(--primary) / 0.5); background: hsl(var(--secondary)); }
.race-btn:active { transform: scale(0.97); }
.race-btn.active {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.gender-section { margin-bottom: 2rem; }
.gender-section .field-label { margin-bottom: 0.75rem; }
.gender-row { display: flex; gap: 0.5rem; }
.gender-btn {
  flex: 1;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--muted-foreground));
  border-radius: 0.75rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.1s;
}
.gender-btn:hover { background: hsl(var(--secondary)); }
.gender-btn:active { transform: scale(0.97); }
.gender-btn.active {
  border-color: hsl(var(--accent));
  background: hsl(var(--accent) / 0.15);
  color: hsl(var(--foreground));
}

.result-box {
  border: 1px dashed hsl(var(--border));
  background: hsl(var(--secondary) / 0.4);
  border-radius: 0.75rem;
  padding: 1.5rem;
  min-height: 6.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.5rem;
}
.result-placeholder { color: hsl(var(--muted-foreground)); font-size: 0.875rem; }
.result-race {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}
.result-name {
  font-family: "Cinzel", serif;
  font-size: 1.875rem;
  font-weight: 700;
  word-break: break-word;
}
@media (min-width: 640px) { .result-name { font-size: 2.25rem; } }

.actions { display: flex; gap: 0.75rem; }
.btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 10px 25px -10px hsl(var(--primary) / 0.6);
  transition: filter 0.2s, transform 0.1s;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary.spinning svg { animation: spin 0.5s ease; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.btn-copy {
  display: grid;
  place-items: center;
  width: 3.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  border-radius: 0.75rem;
  transition: background 0.2s, transform 0.1s;
}
.btn-copy:hover:not(:disabled) { background: hsl(var(--secondary)); }
.btn-copy:active:not(:disabled) { transform: scale(0.95); }
.btn-copy:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-copy svg { width: 1.25rem; height: 1.25rem; stroke: hsl(var(--foreground)); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-copy.copied svg { stroke: hsl(var(--primary)); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid hsl(var(--border) / 0.6);
}
.footer-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}
@media (min-width: 640px) { .footer-inner { flex-direction: row; } }
.footer-brand { font-family: "Cinzel", serif; font-weight: 600; color: hsl(var(--foreground)); }
.footer-links { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.footer-link { transition: color 0.2s; }
.footer-link:hover { color: hsl(var(--foreground)); text-decoration: underline; }

/* ---------- About and privacy pages ---------- */
.privacy-main { max-width: 48rem; }
.policy-updated { color: hsl(var(--muted-foreground)); font-size: 0.8125rem; margin: -0.75rem 0 2rem; }
.prose h2 { font-family: "Cinzel", serif; font-size: 1.35rem; font-weight: 700; line-height: 1.25; margin: 2.25rem 0 0.625rem; }
.prose a { color: hsl(var(--primary)); text-decoration: underline; text-decoration-color: hsl(var(--primary) / 0.45); text-underline-offset: 0.18em; }
.prose a:hover { text-decoration-color: currentColor; }

/* ---------- About page ---------- */
.page-main {
  flex: 1;
  max-width: 42rem;
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}
.page-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-title {
  font-family: "Cinzel", serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.prose p { color: hsl(var(--muted-foreground)); font-size: 1rem; line-height: 1.7; margin-bottom: 1.25rem; }
.prose p:last-child { margin-bottom: 0; }
.divider { border-top: 1px solid hsl(var(--border) / 0.6); }
.form-sub { color: hsl(var(--muted-foreground)); font-size: 0.875rem; margin-bottom: 2rem; }

.feedback-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label { font-size: 0.875rem; font-weight: 500; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: hsl(var(--muted-foreground) / 0.7); }
.form-field input:focus, .form-field textarea:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.5);
}
.form-field textarea { resize: none; }
.form-note { font-size: 0.8125rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.875rem 1.5rem;
  box-shadow: 0 10px 25px -10px hsl(var(--primary) / 0.6);
  transition: filter 0.2s, transform 0.1s;
}
.submit-btn:hover { filter: brightness(1.1); }
.submit-btn:active { transform: scale(0.98); }
.submit-btn svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* hidden iframe target for the no-JS form post */
.submit-frame { position: absolute; width: 0; height: 0; border: 0; visibility: hidden; }

/* ---------- Blog ---------- */
.blog-main { max-width: 48rem; }
.post-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.post-card {
  border: 1px solid hsl(var(--border) / 0.7);
  border-radius: 1rem;
  background: hsl(var(--card));
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.post-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.4);
}
.post-card-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
}
.post-tag {
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.25);
  border-radius: 999px;
  padding: 0.2rem 0.625rem;
}
.post-title {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: hsl(var(--foreground));
}
.post-card:hover .post-title { color: hsl(var(--primary)); }
.post-excerpt { color: hsl(var(--muted-foreground)); font-size: 0.9375rem; line-height: 1.6; }
.post-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}
.post-meta svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Blog post ---------- */
.blog-post-main { max-width: 44rem; }
.post-back { color: hsl(var(--muted-foreground)); transition: color 0.2s; }
.post-back:hover { color: hsl(var(--primary)); }
.post-meta-line {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  margin: -0.5rem 0 1.75rem;
}
.post-meta-line svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.post-cta {
  display: inline-block;
  margin-top: 2rem;
  font-family: "Cinzel", serif;
  font-weight: 700;
  color: hsl(var(--primary));
  transition: color 0.2s, text-decoration-color 0.2s;
  text-decoration: underline;
  text-decoration-color: hsl(var(--primary) / 0.4);
  text-underline-offset: 0.18em;
}
.post-cta:hover { color: hsl(var(--foreground)); text-decoration-color: currentColor; }

/* ---------- 404 page ---------- */
.error-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.25rem 4rem;
  gap: 1rem;
}
.error-code {
  font-family: "Cinzel", serif;
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: hsl(var(--primary));
  text-shadow: 0 0 40px hsl(var(--primary) / 0.3);
}
.error-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
}
.error-text { color: hsl(var(--muted-foreground)); max-width: 26rem; }
.error-actions { margin-top: 1rem; display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* ---------- Admin (blog CMS) ---------- */
.admin-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 1rem;
  box-shadow: 0 1px 2px hsl(var(--foreground) / 0.04);
}
.admin-form { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 0.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.875rem; font-weight: 600; color: hsl(var(--foreground)); }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-row .form-field { flex: 1; min-width: 10rem; }
.field-hint { font-weight: 400; font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.text-area {
  font-family: "Inter", sans-serif;
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 0.25rem);
  color: hsl(var(--foreground));
  font-size: 0.9375rem;
  line-height: 1.6;
  resize: vertical;
}
.text-area:focus { outline: none; border-color: hsl(var(--primary)); box-shadow: 0 0 0 3px hsl(var(--primary) / 0.18); }
.text-area--code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.8125rem; }
.form-error { color: hsl(var(--destructive)); font-size: 0.875rem; margin: 0; }
.form-actions { display: flex; gap: 0.75rem; align-items: center; justify-content: flex-end; margin-top: 0.5rem; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.1rem; border-radius: calc(var(--radius) - 0.25rem);
  border: 1px solid hsl(var(--border)); background: transparent;
  color: hsl(var(--foreground)); font-weight: 600; font-size: 0.9375rem;
  cursor: pointer; text-decoration: none;
}
.btn-ghost:hover { background: hsl(var(--secondary)); }
.btn-ghost:active { transform: scale(0.98); }
.admin-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.admin-table-wrap { margin-top: 0.5rem; }
.admin-list { display: flex; flex-direction: column; border: 1px solid hsl(var(--border)); border-radius: var(--radius); overflow: hidden; }
.admin-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid hsl(var(--border)); }
.admin-row:last-child { border-bottom: none; }
.admin-row-main { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.admin-row-title { font-weight: 600; color: hsl(var(--foreground)); text-decoration: none; font-size: 1rem; }
.admin-row-title:hover { color: hsl(var(--primary)); }
.admin-row-meta { font-size: 0.8125rem; color: hsl(var(--muted-foreground)); }
.admin-row-actions { display: flex; gap: 0.4rem; flex-shrink: 0; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: calc(var(--radius) - 0.25rem);
  border: 1px solid hsl(var(--border)); background: hsl(var(--card));
  color: hsl(var(--foreground)); cursor: pointer; text-decoration: none;
}
.icon-btn:hover { background: hsl(var(--secondary)); border-color: hsl(var(--primary) / 0.4); }
.icon-btn:active { transform: scale(0.95); }
.icon-btn svg { width: 1.1rem; height: 1.1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
