.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.follow-x-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px 7px 8px;
  border: 1px solid var(--red, #ff2020);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 32, 32, 0.16), rgba(5, 5, 5, 0.9));
  color: var(--text, #f2f2f2);
  text-decoration: none;
  box-shadow: inset 0 0 18px rgba(255, 32, 32, 0.08);
  font-family: "Oswald", sans-serif;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.follow-x-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--text, #f2f2f2);
  color: var(--bg, #050505);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.follow-x-copy {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.follow-x-copy b {
  color: var(--red, #ff2020);
  font-size: 0.66rem;
}

.follow-x-copy span {
  color: var(--soft, #8f8f8f);
  font-size: 0.55rem;
  letter-spacing: 1.2px;
}

.follow-x-button:hover {
  border-color: var(--red-soft, #ff4444);
  box-shadow: 0 0 24px rgba(255, 32, 32, 0.22), inset 0 0 18px rgba(255, 32, 32, 0.08);
}

.kofi-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  text-decoration: none;
}

.kofi-button img {
  display: block;
  height: 36px;
  width: auto;
  border: 0;
}

.theme-toggle {
  border: 1px solid var(--border, #471111);
  border-radius: 999px;
  background: var(--panel, #111111);
  color: var(--text, #f2f2f2);
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 1.4px;
  padding: 8px 11px;
  text-transform: uppercase;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--red, #ff2020);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 32, 32, 0.18);
}

@media (max-width: 720px) {
  .nav-actions {
    gap: 6px;
  }

  .follow-x-button {
    min-width: 0;
    padding: 7px;
  }

  .follow-x-copy {
    display: none;
  }

  .theme-toggle {
    padding: 7px 9px;
  }

  .kofi-button img {
    height: 32px;
  }
}
