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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-weight: 700;
  color: #f0f4ff;
}
.section-title p {
  color: #9fb0c9;
}

.blog-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
  backdrop-filter: blur(8px);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent2);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}
.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
}
.blog-content h5 {
  color: #00e5ff;
  font-weight: 600;
}
.blog-content p {
  color: #b8c8df;
  font-size: 15px;
}
.blog-content a {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 600;
}
.blog-content a:hover {
  color: #00e5ff;
}

.sidebar {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 25px;
  backdrop-filter: blur(8px);
}
.sidebar h5 {
  color: #00e5ff;
  font-weight: 700;
  margin-bottom: 20px;
}
.sidebar ul {
  padding-left: 0;
  list-style: none;
}
.sidebar ul li {
  margin-bottom: 12px;
}
.sidebar ul li a {
  text-decoration: none;
  color: #b8c8df;
  transition: 0.3s;
}
.sidebar ul li a:hover {
  color: #7c3aed;
}
.latest-post img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 10px;
}
.latest-post a {
  color: #b8c8df;
  text-decoration: none;
}
.latest-post a:hover {
  color: #00e5ff;
}

.pagination .page-link {
  background: transparent;
  color: #b8c8df;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pagination .page-link:hover {
  background: var(--accent1);
  color: #fff;
  border-color: var(--accent1);
}
