
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
a { color: #fff; text-decoration: none; }
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2rem; background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px); position: fixed; top: 0; width: 100%; box-sizing: border-box; z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -1px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a:hover { color: #3b82f6; }
.container { max-width: 1200px; margin: 0 auto; padding: 8rem 1.5rem 4rem; }
.text-center { text-align: center; }
.mb-10 { margin-bottom: 2.5rem; }
.text-5xl { font-size: 3rem; font-weight: 900; margin-bottom: 1rem; }
.text-gray-400 { color: #9ca3af; }
.grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .grid { grid-template-columns: repeat(2, 1fr); } }
.card { display: flex; flex-direction: column; background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 1.5rem; overflow: hidden; transition: all 0.3s ease; }
.card:hover { border-color: rgba(59, 130, 246, 0.5); transform: translateY(-5px); }
.card-image-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-image-wrap img { transform: scale(1.05); }
.card-category { position: absolute; top: 1rem; left: 1rem; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.card-body { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: #9ca3af; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.card-title { font-size: 1.5rem; font-weight: 700; margin: 0 0 1rem; line-height: 1.2; }
.card:hover .card-title { color: #3b82f6; }
.card-excerpt { color: #9ca3af; margin-bottom: 2rem; }
.read-more { margin-top: auto; color: #3b82f6; font-weight: 700; text-transform: uppercase; font-size: 0.875rem; display: flex; align-items: center; gap: 0.5rem; }

/* Post page specific */
.post-container { max-width: 800px; margin: 0 auto; padding: 8rem 1.5rem 4rem; }
.post-header { margin-bottom: 3rem; }
.post-category { display: inline-block; color: #3b82f6; font-weight: 700; text-transform: uppercase; font-size: 0.875rem; margin-bottom: 1rem; }
.post-title { font-size: 2.5rem; font-weight: 900; line-height: 1.2; margin: 0 0 1.5rem; }
@media (min-width: 768px) { .post-title { font-size: 3.5rem; } }
.post-meta { display: flex; gap: 1.5rem; color: #9ca3af; font-size: 0.875rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 2rem; }
.post-cover { width: 100%; border-radius: 1.5rem; margin-bottom: 3rem; }
.post-content h2 { font-size: 1.875rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.post-content h3 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; }
.post-content p { color: #d1d5db; font-size: 1.125rem; margin-bottom: 1.5rem; }
.post-content ul { color: #d1d5db; font-size: 1.125rem; margin-bottom: 1.5rem; padding-left: 1.5rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content a { color: #3b82f6; text-decoration: underline; }
.footer { text-align: center; padding: 4rem 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 4rem; color: #9ca3af; }
