:root {
  --bg-color: #ffffff;
  --text-color: #1a1a1a;
  --text-muted: #666666;
  --border-color: #e5e5e5;
  --accent-color: #2563eb;
  --accent-hover: #1d4ed8;
  --code-bg: #f8f9fa;
  --code-text: #e83e8c;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.bengali, [lang=bn] {
  font-family: "Noto Sans Bengali", "Inter", sans-serif;
}

.nav-link.active {
  color: var(--accent-color) !important;
  font-weight: 600;
  position: relative;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-color);
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.post-content h1 {
  font-size: 2rem;
}
.post-content h2 {
  font-size: 1.75rem;
}
.post-content h3 {
  font-size: 1.5rem;
}
.post-content h4 {
  font-size: 1.25rem;
}
.post-content h5 {
  font-size: 1.125rem;
}
.post-content h6 {
  font-size: 1rem;
}
.post-content p {
  margin-bottom: 1.5rem;
}
.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.post-content li {
  margin-bottom: 0.5rem;
}
.post-content blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
}
.post-content code {
  background-color: var(--code-bg);
  color: var(--code-text);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-size: 0.875em;
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
}
.post-content pre {
  background-color: var(--code-bg);
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.post-content pre code {
  background: none;
  padding: 0;
  color: var(--text-color);
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.post-content table th, .post-content table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
.post-content table th {
  font-weight: 600;
  background-color: var(--border-color);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.card {
  border: 1px solid var(--border-color);
  transition: box-shadow 0.2s ease;
}
.card:hover {
  box-shadow: 0 4px 12px var(--shadow);
}

.btn {
  transition: all 0.2s ease;
}

.btn-outline-dark {
  color: #000;
  border-color: #000;
}
.btn-outline-dark:hover {
  background-color: #000;
  color: #fff;
}

.btn-outline-secondary {
  color: #666;
  border-color: #666;
}
.btn-outline-secondary:hover {
  background-color: #666;
  color: #fff;
}

.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}
.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

.card .d-grid .btn {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.toast-notification {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

@media (max-width: 768px) {
  .display-5 {
    font-size: 2rem;
  }
  .display-4 {
    font-size: 2.5rem;
  }
  .post-content h1 {
    font-size: 1.75rem;
  }
  .post-content h2 {
    font-size: 1.5rem;
  }
  .post-content h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .display-5 {
    font-size: 1.75rem;
  }
  .display-4 {
    font-size: 2rem;
  }
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .d-flex.gap-3 {
    flex-direction: column;
    gap: 0.5rem !important;
  }
}
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-icon {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.error-actions {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-suggestion {
  animation: fadeInUp 0.8s ease-out;
}

.recent-posts {
  animation: fadeInUp 1s ease-out;
}

@media (max-width: 768px) {
  .error-icon {
    font-size: 6rem !important;
  }
  .display-1 {
    font-size: 4rem !important;
  }
}
.featured-post-card {
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
}
.featured-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}
.featured-post-card .card-title a {
  color: var(--text-color);
  transition: color 0.2s ease;
}
.featured-post-card .card-title a:hover {
  color: var(--accent-color);
}

.related-post-card {
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.related-post-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--shadow);
  border-color: var(--accent-color);
}
.related-post-card .card-title a {
  color: var(--text-color);
  transition: color 0.2s ease;
}
.related-post-card .card-title a:hover {
  color: var(--accent-color);
}

.featured-posts-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.related-posts-section {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

@keyframes starPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.material-icons.text-warning {
  animation: starPulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .featured-post-card {
    margin-bottom: 1rem;
  }
  .related-post-card {
    margin-bottom: 1rem;
  }
}

/*# sourceMappingURL=main.css.map */