.blog-header {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-bottom: -50px;
}

.blog-header h1 {
    font-family: 'Lexend', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: 2px;
}

.blog-header p {
    font-family: 'Fira Code', monospace;
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.8;
    color: #a0a0a0;
}

.blog-container {
    padding: 0 20px 100px;
}

.featured-post {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 35px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

@keyframes bluePulse {
    0% {
        box-shadow: 0 0 100px rgba(113, 20, 135, 0.3);
    }
    50% {
        box-shadow: 0 0 95px rgba(113, 20, 135, 0.6);
    }
    100% {
        box-shadow: 0 0 100px rgba(113, 20, 135, 0.3);
    }
}

.featured-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(113, 20, 135, 0.3);
    animation: bluePulse 3s infinite ease-in-out;
}

.post-date {
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: #711487;
    margin-bottom: 10px;
}

.post-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.featured-post .post-title {
    font-size: 2.2rem;
}

.post-excerpt {
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: #711487;
    text-decoration: none;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.read-more i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover {
    color: #ffffff;
}

.read-more:hover i {
    transform: translateX(5px);
}

.post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.post-tags span {
    background-color: rgba(113, 20, 135, 0.15);
    color: #711487;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-family: 'Fira Code', monospace;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@keyframes bluePulseCard {
    0% {
        box-shadow: 0 0 20px rgba(113, 20, 135, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(113, 20, 135, 0.6);
    }
    100% {
        box-shadow: 0 0 20px rgba(113, 20, 135, 0.3);
    }
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(113, 20, 135, 0.3);
    animation: bluePulseCard 3s infinite ease-in-out;
    
}

.post-card .post-title {
    font-size: 1.4rem;
}

.post-card .post-excerpt {
    flex-grow: 1;
}

@media (max-width: 768px) {
    .featured-post {
        padding: 25px;
    }
    
    .featured-post .post-title {
        font-size: 1.8rem;
    }
    
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .post-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-post .post-title {
        font-size: 1.6rem;
    }
    
    .blog-header {
        height: 30vh;
    }
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 100px;
}

.post-header {
    margin-bottom: 40px;
    margin-top: 75px;
}

.post-header .post-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.post-meta .date {
    margin-right: 20px;
}

.post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #c0c0c0;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #ffffff;
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #ffffff;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content code {
    background-color: #2a2a2a;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

.post-content pre {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.post-content pre code {
    background-color: transparent;
    padding: 0;
}

.post-content blockquote {
    border-left: 3px solid #711487;
    padding-left: 1.5rem;
    margin-left: 0;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #a0a0a0;
    margin-top: 20px;
}

.post-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: none;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-navigation a {
    color: #711487;
    text-decoration: none;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.post-navigation a:hover {
    color: #ffffff;
}

.post-navigation .prev i {
    margin-right: 8px;
}

.post-navigation .next i {
    margin-left: 8px;
}

@media (max-width: 768px) {
    .post-header .post-title {
        font-size: 2rem;
    }
    
    .post-content h2 {
        font-size: 1.6rem;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
    }
}

.blog-search-wrapper {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #2a2a2a00;
  }
  
  .search-container {
    margin-bottom: 1rem;
  }
  
.search-container form {
  display: flex;
  width: 100%;
  max-width: fit-content;
  position: relative;
}

.search-container input {
    width: 100%;
    padding: 8px 10px 8px 35px;
    font-size: 14px;
    background-color: #1e1e1e00;
    border: none;
    border-bottom: 1px solid #711487;
    color: #fff;
    transition: all 0.2s ease;
    font-family: 'Fira Code', monospace;
    outline: none;
  }
  
.search-container input:focus {
    border-bottom: 1px solid #711487;
}

.search-container .search-button {
  background-color: transparent;
  color: white;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.search-container .search-button i {
  font-size: 14px;
  color: #858585;
  transition: color 0.2s ease;
}

.search-container input:focus + .search-button i,
.search-container .search-button:hover i {
  color: #711487;
}
  
  .tag-filter h3 {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #aaa;
  }
  
  .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.5rem;
  }
  
  .tag-link {
    display: inline-block;
    padding: 3px 10px;
    background-color: #1e1e1e;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #ccc;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .tag-link:hover {
    background-color: #252525;
  }
  
  .tag-link.active {
    background-color: #711487;
    color: white;
  }
  
  .no-results {
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: 6px;
    padding: 1.25rem;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid #2a2a2a;
  }
  
  .no-results p {
    font-size: 0.9rem;
    margin: 0;
  }
  
  .no-results a {
    color: #711487;
    text-decoration: none;
  }
  
  .search-results-header {
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
  }
  
  .search-results-header h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 5px;
    color: #fff;
  }
  
  .tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background-color: rgba(113, 20, 135, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    color: #711487;
    margin-right: 0.35rem;
    margin-bottom: 0.35rem;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .tag-pill:hover {
    background-color: rgba(113, 20, 135, 0.2);
  }
  
  .single-post-search {
    max-width: 450px;
    margin: 0 auto 1.25rem;
  }
  
  @media (max-width: 768px) {
    .tag-list {
      gap: 0.25rem;
    }
    
    .tag-link {
      padding: 3px 8px;
      font-size: 0.75rem;
    }
    
    .search-container input {
      padding: 7px 30px;
      border-radius: 0%;
    }
  }

.single-post-search {
    display: none;
}

.post-reactions {
    margin: 3rem 0 2rem;
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(113, 20, 135, 0.05);
    border-radius: 8px;
  }
  
  .reaction-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
  }
  
  .reaction-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  
  .post-reaction-like,
  .post-reaction-dislike {
    background: none;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    color: #e0e0e0;
  }
  
  .post-reaction-like:hover,
  .post-reaction-dislike:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .post-reaction-like.active {
    color: #711487;
    border-color: #711487;
    background-color: rgba(76, 175, 80, 0.1);
  }
  
  .post-reaction-dislike.active {
    color: #F44336;
    border-color: #F44336;
    background-color: rgba(244, 67, 54, 0.1);
  }
  
  .post-likes,
  .post-dislikes {
    font-weight: 500;
  }
  
  .card-reaction-indicator {
    position: absolute;
    bottom: 10px;
    right: 15px;
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #aaa;
  }
  
  .featured-post .card-reaction-indicator {
    position: absolute;
    bottom: 15px;
    right: 20px;
  }
  
  .card-likes,
  .card-dislikes {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  
  .card-likes {
    color: rgba(255, 255, 255, 0.233);
  }
  
  .card-dislikes {
    color: rgba(255, 255, 255, 0.233);
  }
  
  .post-card, 
  .featured-post {
    position: relative;
    padding-bottom: 2.5rem;
  }



