:root {
  --bg: #1d2021;
  --bg-soft: #282828;
  --bg-panel: #32302f;
  --fg: #ebdbb2;
  --fg-dim: #bdae93;
  --muted: #8a8272;
  --border: #45403d;
  --orange: #fe8019;
  --green: #b8bb26;
  --yellow: #fabd2f;
  --red: #fb4934;
  --blue: #83a598;
  --purple: #d3869b;
  --aqua: #8ec07c;
  --radius: 8px;
  --mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', 'Fira Code', Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse at top, #23201d 0%, var(--bg) 55%),
    var(--bg);
  color: var(--fg);
  font-family: var(--mono);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--orange);
  color: var(--bg);
}

a {
  color: var(--aqua);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
}

a:hover {
  border-bottom-color: currentColor;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

.prompt {
  color: var(--green);
}

.path {
  color: var(--blue);
}

.flag {
  color: var(--yellow);
}

.str {
  color: var(--yellow);
}

.comment {
  color: var(--muted);
  font-style: italic;
}

.accent {
  color: var(--orange);
}

.accent2 {
  color: var(--purple);
}

.titlebar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(29, 32, 33, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.titlebar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
}

.titlebar-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
}

.dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.dots .r {
  background: #fb4934;
}

.dots .y {
  background: #fabd2f;
}

.dots .g {
  background: #b8bb26;
}

.titlebar-name {
  color: var(--fg-dim);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 16px;
  font-size: 13px;
  overflow-x: auto;
}

.nav a {
  color: var(--fg-dim);
  white-space: nowrap;
}

.nav a:hover {
  color: var(--orange);
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 20px 90px;
}

section {
  margin-bottom: 64px;
  scroll-margin-top: 60px;
}

section:last-of-type {
  margin-bottom: 20px;
}

.line {
  margin: 0 0 6px;
  word-break: break-word;
}

.line .prompt {
  margin-right: 2px;
}

.output {
  margin: 10px 0 0;
  padding-left: 0;
}

.cursor {
  display: inline-block;
  width: 9px;
  height: 1.1em;
  background: var(--green);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 15px;
}

.hero {
  margin-bottom: 56px;
}

.hero-cmd {
  font-size: 15px;
  color: var(--fg-dim);
}

#hero-title {
  font-size: clamp(28px, 6vw, 46px);
  font-weight: 800;
  margin: 14px 0 6px;
  min-height: 1.2em;
}

#hero-title .accent {
  color: var(--orange);
}

#hero-sub {
  font-size: clamp(14px, 2.6vw, 18px);
  color: var(--fg-dim);
  min-height: 1.6em;
}

.hero-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--fg-dim);
  background: var(--bg-soft);
}

.neofetch {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.ascii {
  color: var(--orange);
  font-size: 11px;
  line-height: 1.25;
  white-space: pre;
  user-select: none;
}

.neofetch dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  font-size: 13.5px;
}

.neofetch dt {
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.neofetch dd {
  margin: 0;
  color: var(--fg-dim);
}

.swatches {
  grid-column: 1 / -1;
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.swatches span {
  width: 22px;
  height: 14px;
  border-radius: 3px;
}

@media (max-width:560px) {
  .neofetch {
    grid-template-columns: 1fr;
  }

  .ascii {
    font-size: 9.5px;
  }
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.skill-card {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 13px;
  transition: border-color .2s, transform .2s;
}

.skill-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.skill-card .k {
  color: var(--fg);
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}

.skill-card .v {
  color: var(--muted);
  font-size: 11.5px;
}

.toolbox {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tool-badge {
  font-size: 12px;
  font-family: var(--mono);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--aqua);
  background: var(--bg-soft);
  letter-spacing: .03em;
}

.playlist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.track {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  text-decoration: none;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  transition: border-color .2s, transform .2s;
  flex: 1 1 240px;
  min-width: 0;
}

.track:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.album-art {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
}

.album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-gradient {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: .03em;
}

.track-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.track-title {
  color: var(--fg);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  color: var(--fg-dim);
  font-size: 11.5px;
}

.track-album {
  color: var(--muted);
  font-size: 11px;
}

.cta-block {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 10px;
  font-size: 13.5px;
}

.cta-line {
  margin: 3px 0;
}

.cta-divider {
  margin: 10px 0 4px;
  color: var(--muted);
}

.cta-stat {
  margin: 0;
  color: var(--fg-dim);
}

.green-text {
  color: var(--green);
}

.ls-header {
  display: grid;
  grid-template-columns: 120px 1fr 90px;
  font-size: 11.5px;
  color: var(--muted);
  padding: 6px 14px;
  border-bottom: 1px solid var(--border);
}

.proj-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 8px;
  background: var(--bg-soft);
}

details.proj {
  border-bottom: 1px solid var(--border);
}

details.proj:last-child {
  border-bottom: none;
}

details.proj summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 120px 1fr 90px;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: 13px;
  transition: background .15s;
}

details.proj summary::-webkit-details-marker {
  display: none;
}

details.proj summary:hover {
  background: rgba(254, 128, 25, 0.06);
}

details.proj summary .perm {
  color: var(--muted);
  font-size: 11.5px;
}

details.proj summary .name {
  color: var(--aqua);
  font-weight: 700;
}

details.proj summary .name::before {
  content: "▸ ";
  color: var(--orange);
  display: inline-block;
  transition: transform .15s;
}

details.proj[open] summary .name::before {
  transform: rotate(90deg);
}

details.proj summary .stack {
  color: var(--muted);
  font-size: 11.5px;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.proj-body {
  padding: 0 14px 18px 34px;
  color: var(--fg-dim);
  font-size: 13.5px;
}

.proj-body p {
  margin: 6px 0;
}

.proj-body .stack-full {
  color: var(--purple);
}

.proj-body .proj-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--aqua);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 12px;
}

.proj-body .proj-link:hover {
  border-color: var(--aqua);
  border-bottom-color: var(--aqua);
}

.proj-body .proj-fork {
  color: var(--muted);
  font-size: 11.5px;
  margin-bottom: 4px;
}

.itch-badge {
  display: inline-block;
  background: #fa5c5c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.itch-badge--wip {
  background: transparent;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  padding: 0 5px;
}

.itch-badge--suspended {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 0 5px;
  opacity: .85;
}

.proj-wip-note {
  color: var(--muted) !important;
  font-style: italic;
  font-size: 12px;
}

.proj-body .proj-link--itch {
  color: #fa5c5c;
  border-color: rgba(250, 92, 92, 0.35);
  background: rgba(250, 92, 92, 0.06);
}

.proj-body .proj-link--itch:hover {
  border-color: #fa5c5c;
  border-bottom-color: #fa5c5c;
  background: rgba(250, 92, 92, 0.12);
  box-shadow: 0 0 12px rgba(250, 92, 92, 0.18);
}

@media (max-width:600px) {
  .ls-header {
    display: none;
  }

  details.proj summary {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  details.proj summary .stack {
    text-align: left;
    color: var(--muted);
  }

  .proj-body {
    padding-left: 20px;
  }
}

.manpage {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 14px;
}

.manpage .sec {
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .05em;
  margin: 16px 0 6px;
}

.manpage .sec:first-child {
  margin-top: 0;
}

.chatlog {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.bubble {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  max-width: 80%;
  background: var(--bg-panel);
  border: 1px solid var(--border);
}

.bubble.them {
  align-self: flex-start;
  color: var(--fg-dim);
}

.bubble.reply {
  align-self: flex-end;
  color: var(--green);
  border-color: var(--green);
}

.contact-block {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 14px;
  font-size: 13.5px;
  overflow-x: auto;
}

.contact-block pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.contact-links a {
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 20px;
  color: var(--fg);
  font-size: 13px;
}

.contact-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

#discord-copy {
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 20px;
  color: var(--fg);
  font-size: 13px;
  font-family: var(--mono);
  background: var(--bg-soft);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}

#discord-copy:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--bg-panel);
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--mono);
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  white-space: nowrap;
  z-index: 200;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 40px;
  color: var(--muted);
  font-size: 12px;
}

code.inline {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--yellow);
  font-size: 0.92em;
}

/* ==========================================================================
   florexblog Specific UI Components
   ========================================================================== */

/* Layout & Containers */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 20px;
}

/* Filter & Search Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 32px 0;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius);
}

.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 240px;
}

.search-input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--mono);
  padding: 8px 14px;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
}

.search-input:focus {
  outline: none;
  border-color: var(--yellow);
}

.category-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-btn {
  background: var(--bg-panel);
  color: var(--fg-dim);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

.cat-btn:hover, .cat-btn.active {
  background: var(--orange);
  color: var(--bg);
  border-color: var(--orange);
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.post-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.post-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}

.post-card .cmd-line {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.post-card .post-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.post-card .post-title a {
  color: var(--fg);
}

.post-card .post-title a:hover {
  color: var(--orange);
}

.post-card .post-excerpt {
  color: var(--fg-dim);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.post-card .post-stats {
  display: flex;
  gap: 12px;
}

.post-card .post-stats span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Post Detail View */
.post-detail-container {
  max-width: 800px;
  margin: 0 auto;
}

.post-detail-header {
  margin-bottom: 28px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 20px;
}

.post-detail-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  margin: 12px 0;
  line-height: 1.3;
}

.post-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.post-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 40px;
}

.post-content h2 {
  font-size: 22px;
  color: var(--yellow);
  margin-top: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.post-content h3 {
  font-size: 18px;
  color: var(--green);
  margin-top: 24px;
}

.post-content blockquote {
  margin: 20px 0;
  padding: 12px 20px;
  border-left: 3px solid var(--orange);
  background: var(--bg-soft);
  color: var(--fg-dim);
  font-style: italic;
}

.post-content pre {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: 14px;
}

.post-content code {
  color: var(--aqua);
}

.post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.btn-like {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: var(--mono);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-like:hover, .btn-like.liked {
  background: var(--red);
  color: var(--bg);
}

/* Comments Section */
.comments-section {
  margin-top: 40px;
}

.comments-header {
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 20px;
}

.comment-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}

.comment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
}

.comment-author {
  font-weight: 700;
  color: var(--green);
}

.comment-author.admin-author {
  color: var(--orange);
}

.comment-date {
  color: var(--muted);
  font-size: 12px;
}

.comment-body {
  color: var(--fg);
  font-size: 14px;
  white-space: pre-wrap;
  word-break: break-word;
}

.comment-delete {
  background: none;
  border: none;
  color: var(--red);
  font-size: 12px;
  cursor: pointer;
  padding: 2px 6px;
  font-family: var(--mono);
}

.comment-delete:hover {
  text-decoration: underline;
}

/* Forms & Inputs */
.form-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--mono);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
}

.form-control:focus {
  outline: none;
  border-color: var(--yellow);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-panel);
  color: var(--fg);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-primary {
  background: var(--orange);
  color: var(--bg);
  border-color: var(--orange);
  font-weight: 700;
}

.btn-primary:hover {
  background: #e06d0b;
  color: var(--bg);
  border-color: #e06d0b;
}

.btn-danger {
  border-color: var(--red);
  color: var(--red);
}

.btn-danger:hover {
  background: var(--red);
  color: var(--bg);
}

.btn-sm {
  padding: 4px 10px;
  font-size: 12px;
}

/* Admin Dashboard */
.admin-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.table-responsive {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 14px;
}

.admin-table th, .admin-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  background: var(--bg-panel);
  color: var(--yellow);
  font-weight: 700;
}

.admin-table tr:hover td {
  background: var(--bg-panel);
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-admin {
  background: var(--orange);
  color: var(--bg);
}

.badge-user {
  background: var(--blue);
  color: var(--bg);
}

/* Alerts */
.alert {
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
  border: 1px solid transparent;
}

.alert-error, .alert-danger {
  background: rgba(251, 73, 52, 0.15);
  border-color: var(--red);
  color: var(--red);
}

.alert-success {
  background: rgba(184, 187, 38, 0.15);
  border-color: var(--green);
  color: var(--green);
}

.alert-info {
  background: rgba(131, 165, 152, 0.15);
  border-color: var(--blue);
  color: var(--blue);
}