<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global CSS styles */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

/* Default body text color only when no Tailwind color class is present */
body:not([class*="text-"]) {
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
}

/* Default heading color only when no Tailwind color class is present */
h1:not([class*="text-"]),
h2:not([class*="text-"]),
h3:not([class*="text-"]),
h4:not([class*="text-"]),
h5:not([class*="text-"]),
h6:not([class*="text-"]) {
  color: #000;
}

a {
  color: #ef4444;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b91c1c;
}

/* Blog specific styles */
.blog-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.blog-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-content blockquote {
  border-left: 4px solid #ef4444;
  padding-left: 1rem;
  font-style: italic;
  margin: 1.5rem 0;
}

.blog-content pre {
  background-color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.blog-content code {
  font-family: monospace;
  background-color: #f3f4f6;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.blog-content th, .blog-content td {
  border: 1px solid #e5e7eb;
  padding: 0.75rem;
  text-align: left;
}

.blog-content th {
  background-color: #f3f4f6;
  font-weight: bold;
}

.blog-content tr:nth-child(even) {
  background-color: #f9fafb;
}
</pre></body></html>