body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #0f0f0f;
  color: #ddd;
  line-height: 1.6;
}

.blog-header {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #0f0f0f;
}

.blog-header h3 {
  color: #bbb;
  font-weight: 400;
  letter-spacing: 3px;
}

.blog-header h1 {
  color: #f7a600;
  font-size: 2rem;
  margin: 10px 0;
}

.blog-header p {
  color: #ccc;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.blog-container {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.blog-article {
  max-width: 800px;
  background-color: #161616;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.blog-image {
  width: 100%;
  display: block;
  border-bottom: 3px solid #f7a600;
}

.blog-content {
  padding: 30px;
}

.category {
  color: #f7a600;
  font-weight: 600;
  letter-spacing: 1px;
}

.blog-content h2 {
  color: #fff;
  margin-top: 5px;
}

.blog-content p {
  margin: 15px 0;
}

.back-link {
  display: inline-block;
  margin-top: 20px;
  color: #f7a600;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.back-link:hover {
  text-decoration: underline;
}

.blog-footer {
  text-align: center;
  padding: 20px;
  color: #777;
  background-color: #0f0f0f;
  font-size: 0.9rem;
  margin-top: 40px;
}
