/* Direct style injection for dark mode fixes */
.dark .project-card-body a,
.dark .project-card-body a *,
.dark .project-card .text-primary,
.dark .project-link,
.dark .project-link span,
.dark .project-link i {
  color: white !important;
}

.dark .project-link:hover,
.dark .project-link:hover span,
.dark .project-link:hover i {
  color: #90caf9 !important;
  text-decoration: underline !important;
}

/* Do nothing to light mode links - let Tailwind handle those */
html:not(.dark) .project-link,
html:not(.dark) .project-link span,
html:not(.dark) .project-link i {
  color: inherit;
}