:root {
  --bg: #06070b;
  --card: #0b0f17;
  --accent1: #7c3aed;
  --accent2: #00e5ff;
}

.blog-content {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 30px;
}
.blog-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0f4ff;
  margin-bottom: 10px;
}
.blog-meta {
  color: #9fb0c9;
  font-size: 0.9rem;
  margin-bottom: 25px;
}
.blog-body p {
  color: #b8c8df;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}
.blog-body img {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
}
.sidebar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px;
  height: fit-content;
}
.sidebar h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #e6eef8;
  border-left: 4px solid var(--accent1);
  padding-left: 8px;
}
.category-list li {
  list-style: none;
  margin-bottom: 10px;
}
.category-list a {
  color: #9fb0c9;
  text-decoration: none;
  transition: 0.3s;
}
.category-list a:hover {
  color: var(--accent2);
}
.latest-blog {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.latest-blog img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}
.latest-blog .info {
  font-size: 0.9rem;
}
.latest-blog .info a {
  text-decoration: none;
  color: #e6eef8;
  font-weight: 600;
}
.latest-blog .info a:hover {
  color: var(--accent2);
}
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 20px 0;
}
