body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

header {
  background-color: #0d0d0d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #222;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80%;
  height: auto;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
  font-size: 17px;
}


nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #ff33cc;
  left: 0;
  bottom: -4px;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.blog-post-detail {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.blog-page-header {
  text-align: center;
  font-size: 32px;
  background: linear-gradient(to right, #ff66cc, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
}

.content h3 {
  font-size: 22px;
  margin-top: 30px;
  color: #ff66cc;
}

.content p,
.content li {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 10px;
}

.content ul,
.content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

blockquote {
  font-style: italic;
  color: #00ffff;
  background-color: #1a1a1a;
  padding: 10px 15px;
  border-left: 4px solid #ff66cc;
  margin: 30px 0;
}

hr {
  border: 0;
  border-top: 1px solid #444;
  margin: 40px 0;
}

footer {
  background-color: #0d0d0d;
  text-align: center;
  padding: 30px 10px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #222;
}

footer a {
  color: #ff66cc;
  margin-left: 10px;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
