body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: #fafafa;
  color: #222;
}

.card:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

.card-title a:hover {
  color: #6610f2;
}

.content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.content h2, .content h3 {
  margin-top: 2rem;
  font-weight: 600;
}

.content p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
body {
  background: #f8f9fc;
  font-family: "Poppins", sans-serif;
  color: #333;
}

/* Silver theme */
.bg-secondary {
  background: linear-gradient(180deg, #d7d7d7, #bfbfbf);
  color: #222 !important;
}
footer.bg-secondary {
  background: #bfbfbf;
  color: #222 !important;
}

/* Cards */
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.8rem 1.5rem rgba(0,0,0,0.08);
}
.hover-zoom img {
  transition: transform 0.4s ease;
}
.hover-zoom:hover img {
  transform: scale(1.05);
}

/* Blog content */
.content {
  font-size: 1.05rem;
  line-height: 1.8;
}
.content h2, .content h3 {
  margin-top: 2rem;
  font-weight: 600;
}
.content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: 0 3px 18px rgba(0,0,0,0.08);
}
