@charset "UTF-8";
/* Widescreen Layout - 响应式最大宽度 */
.wrapper {
  max-width: 100% !important;
  padding-right: 20px !important;
  padding-left: 20px !important;
  margin: 0 auto !important;
}

/* 强制覆盖Jekyll默认主题的所有wrapper限制 */
@media screen and (max-width: 800px) {
  .wrapper {
    max-width: 100% !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
@media screen and (max-width: 600px) {
  .wrapper {
    max-width: 100% !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
/* 超宽屏优化 - 限制文本行长度以提升可读性 */
/* Post Content Headers */
.post-content h2, .post-content h3 {
  border-bottom: 1px solid #eaecef;
  padding-bottom: 0.3em;
  margin-top: 2em;
  margin-bottom: 1em;
}

.post-content h1 {
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.5em;
}

/* Center Images and Captions */
.post-content .image-figure, .post-content figure {
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.post-content .figure-image, .post-content figure img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-content .figure-caption, .post-content figcaption {
  color: #888;
  font-size: 0.9em;
  margin-top: 0.5em;
  font-style: italic;
  text-align: center;
}

/* Site Stats Counter */
.site-stats {
  text-align: center;
  color: #888;
  margin: 1em 0;
  font-size: 0.9em;
}

.site-stats .separator {
  margin: 0 1em;
}

/* Paper Count Badge */
.paper-count-badge {
  display: inline-block;
  background-color: #f0f8ff;
  color: #4a90e2;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 1em;
  margin-bottom: 1.5em;
  border: 1px solid #d1e7fd;
}

/* Responsive Layout with Sticky Sidebar for Collection Page */
.collection-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.sidebar {
  flex: 0 0 280px;
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 20px; /* Adjust this for spacing from the top */
  max-height: calc(100vh - 60px); /* Full height minus padding */
  overflow-y: auto;
  padding-right: 15px;
  z-index: 100;
}

.collection-content {
  flex: 1;
  min-height: 100vh;
  padding-top: 20px;
}

/* On small screens, hide the sidebar and make content full-width */
@media (max-width: 960px) {
  .collection-wrapper {
    flex-direction: column;
    gap: 0;
    padding: 0 10px;
  }
  .sidebar {
    display: none !important;
  }
  .collection-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
/* 现代化侧边栏导航 */
.sidebar-nav {
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow-y: auto;
  transition: all 0.3s ease;
  min-height: 200px;
  position: relative;
}

.sidebar-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.8), rgba(16, 185, 129, 0.8), rgba(6, 182, 212, 0.8));
  border-radius: 16px 16px 0 0;
}

.sidebar-nav-item {
  margin-bottom: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  font-weight: 600;
  color: #4a5568;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sidebar-nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.sidebar-nav-item:hover::before {
  left: 100%;
}

.sidebar-nav-item:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
  color: rgba(59, 130, 246, 0.9);
}

/* Ensure content doesn't get hidden behind sidebar */
.collection-content .wrapper {
  padding-left: 0;
  padding-right: 0;
}

/* 现代化主分类折叠区域 */
.main-category-section {
  margin-bottom: 30px;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.main-category-section:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.main-category-summary {
  cursor: pointer;
  list-style: none;
  padding: 25px 30px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
}

.main-category-summary::-webkit-details-marker {
  display: none;
}

.main-category-summary::after {
  content: "▼";
  font-size: 16px;
  color: rgba(59, 130, 246, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
  background: rgba(59, 130, 246, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-category-section[open] > .main-category-summary::after {
  transform: rotate(180deg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(16, 185, 129, 0.8));
  color: white;
}

.main-category-summary:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
}

.main-category-summary:hover::after {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.1);
}

.main-category-content {
  padding: 30px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* 现代化面包屑路径样式 */
.breadcrumb-path {
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 25px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.08));
  border-radius: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(59, 130, 246, 0.15);
  position: relative;
  overflow: hidden;
}

.breadcrumb-path::before {
  content: "📁";
  margin-right: 12px;
  font-size: 18px;
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.breadcrumb-path::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(16, 185, 129, 0.8));
  border-radius: 0 2px 2px 0;
}

/* 分类锚点 - 为侧边栏导航提供跳转目标 */
.category-anchor {
  position: relative;
  top: -80px; /* 偏移以避免被header遮挡 */
  visibility: hidden;
}

/* Post Section */
.post-section {
  margin-bottom: 40px;
}

/* Details 元素层级样式 - 极简设计，用颜色深浅表达层级 */
details.cat-node {
  margin: 8px 0;
  transition: all 0.2s ease;
  position: relative;
  background: transparent;
}

details.cat-node > summary {
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  list-style: none;
  user-select: none;
  position: relative;
  background: transparent;
}

details.cat-node > summary::-webkit-details-marker {
  display: none;
}

/* 展开/折叠指示器 - 简洁的箭头 */
details.cat-node > summary::after {
  content: "›";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 18px;
  color: #a0aec0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: bold;
}

details.cat-node[open] > summary::after {
  transform: translateY(-50%) rotate(270deg);
  color: rgba(59, 130, 246, 0.9);
}

details.cat-node > summary:hover {
  background-color: rgba(59, 130, 246, 0.06);
}

details.cat-node > summary:hover::after {
  color: rgba(59, 130, 246, 0.9);
}

/* 层级区分 - 使用缩进和左边框 */
details.depth-1 {
  margin-left: 0;
  margin-bottom: 28px;
}

details.depth-2 {
  margin-left: 0;
  margin-bottom: 20px;
  border-left: 3px solid rgba(59, 130, 246, 0.15);
  padding-left: 12px;
}

details.depth-3 {
  margin-left: 16px;
  margin-bottom: 16px;
  border-left: 2px solid rgba(59, 130, 246, 0.1);
  padding-left: 12px;
}

details.depth-4 {
  margin-left: 24px;
  margin-bottom: 12px;
}

details.depth-5 {
  margin-left: 32px;
  margin-bottom: 8px;
}

.main-category {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-category a {
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.main-category a:hover {
  color: #007bff;
  text-decoration: none;
}

/* 侧边栏层级样式 - 现代简洁设计，用颜色深浅表达层级 */
.sub-category {
  margin-bottom: 16px;
  padding-left: 8px;
  border-left: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.sub-category:hover {
  border-left-color: rgba(59, 130, 246, 0.3);
}

.sub-category-title {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  text-transform: capitalize;
}

.sub-category-title a {
  color: #2d3748;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
  padding: 4px 8px;
  border-radius: 6px;
}

.sub-category-title a:hover {
  color: rgba(59, 130, 246, 0.9);
  background-color: rgba(59, 130, 246, 0.08);
  text-decoration: none;
}

.sub-sub-category {
  margin-bottom: 6px;
  padding-left: 16px;
}

.sub-sub-category a {
  display: block;
  padding: 5px 10px;
  color: #4a5568;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
  border-radius: 5px;
  background: transparent;
}

.sub-sub-category a:hover {
  color: rgba(59, 130, 246, 0.9);
  background-color: rgba(59, 130, 246, 0.08);
  text-decoration: none;
  padding-left: 14px;
}

.fourth-level-category {
  margin-bottom: 4px;
  padding-left: 28px;
}

.fourth-level-category a {
  display: block;
  padding: 4px 8px;
  color: #718096;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s ease;
  border-radius: 4px;
  background: transparent;
}

.fourth-level-category a:hover {
  color: rgba(59, 130, 246, 0.9);
  background-color: rgba(59, 130, 246, 0.08);
  text-decoration: none;
  padding-left: 12px;
}

.sub-sub-category-title {
  display: block;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 6px;
  font-size: 13px;
  padding: 5px 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 5px;
}

.sub-sub-category-title:hover {
  color: rgba(59, 130, 246, 0.9);
  background-color: rgba(59, 130, 246, 0.08);
  text-decoration: none;
}

/* Post List with Tags */
.post-list-with-tags {
  list-style: none;
  padding-left: 0;
}

.post-list-with-tags li {
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

/* 卡片样式优化 - tag和日期同行 */
.post-card-meta {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
}

.post-card-tag {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  margin-left: auto !important;
}

/* 确保现代化标签样式正确 */
.post-card-tag-modern {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  margin-left: auto !important;
}

/* Arxiv标签特殊样式 - 绿色渐变 */
.tag-arxiv {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3) !important;
  color: white !important;
}

.post-list-with-tags .post-meta {
  width: 100px;
  flex-shrink: 0;
  color: #888;
  font-size: 0.9em;
}

.post-list-with-tags .subcategory-tag {
  display: inline-block;
  padding: 4px 10px;
  margin-right: 12px;
  font-size: 0.75em;
  font-weight: 600;
  border-radius: 15px;
  color: white;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.post-list-with-tags .subcategory-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.post-list-with-tags .subcategory-tag:hover::before {
  left: 100%;
}

.post-list-with-tags .subcategory-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Tag colors - Enhanced gradient styles */
.tag-rlhf {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

.tag-attention {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  box-shadow: 0 2px 4px rgba(74, 144, 226, 0.3);
}

.tag-compiler {
  background: linear-gradient(135deg, #50e3c2 0%, #2ecc71 100%);
  box-shadow: 0 2px 4px rgba(80, 227, 194, 0.3);
}

.tag-framework {
  background: linear-gradient(135deg, #f0ad4e 0%, #f39c12 100%);
  box-shadow: 0 2px 4px rgba(240, 173, 78, 0.3);
}

.tag-gpu {
  background: linear-gradient(135deg, #5cb85c 0%, #27ae60 100%);
  box-shadow: 0 2px 4px rgba(92, 184, 92, 0.3);
}

.tag-inference {
  background: linear-gradient(135deg, #f5a623 0%, #f39c12 100%);
  box-shadow: 0 2px 4px rgba(245, 166, 35, 0.3);
}

.tag-kvcache {
  background: linear-gradient(135deg, #337ab7 0%, #2c3e50 100%);
  box-shadow: 0 2px 4px rgba(51, 122, 183, 0.3);
}

.tag-low_precision {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  box-shadow: 0 2px 4px rgba(155, 89, 182, 0.3);
}

.tag-models {
  background: linear-gradient(135deg, #9013fe 0%, #7d3c98 100%);
  box-shadow: 0 2px 4px rgba(144, 19, 254, 0.3);
}

.tag-networking {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  box-shadow: 0 2px 4px rgba(233, 30, 99, 0.3);
}

.tag-pretrain {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  box-shadow: 0 2px 4px rgba(46, 204, 113, 0.3);
}

.tag-reinforcement-learning {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  box-shadow: 0 2px 4px rgba(230, 126, 34, 0.3);
}

.tag-speculative_decoding {
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  box-shadow: 0 2px 4px rgba(26, 188, 156, 0.3);
}

.tag-training {
  background: linear-gradient(135deg, #bd10e0 0%, #9b59b6 100%);
  box-shadow: 0 2px 4px rgba(189, 16, 224, 0.3);
}

.tag-agent {
  background: linear-gradient(135deg, #d9534f 0%, #c0392b 100%);
  box-shadow: 0 2px 4px rgba(217, 83, 79, 0.3);
}

.tag-optimization {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.tag-memory {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

.tag-parallel {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  box-shadow: 0 2px 4px rgba(243, 156, 18, 0.3);
}

.tag-osdi25 {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  box-shadow: 0 2px 4px rgba(155, 89, 182, 0.3);
}

.post-list-with-tags .post-link {
  font-size: 1.05em;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.post-list-with-tags .post-link:hover {
  color: #0056b3;
}

/* Page Title */
.page-title {
  margin-top: 1em;
  margin-bottom: 1.5em;
  font-size: 2.2em;
  color: #111;
  padding-bottom: 0.5em;
  border-bottom: 3px solid #007bff;
  text-align: center;
}

/* Collection Page Title - 美化样式 */
.collection-page-title {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%);
  color: white;
  padding: 20px 30px;
  border: none;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  text-align: center;
  margin: 2em 0 2em 0;
  font-weight: 600;
  letter-spacing: 1px;
  width: 100%;
  border-radius: 0;
}

/* 现代化标题样式 - 去掉生硬的线条 */
.main-category-title {
  margin: 1.5em 0 1em 0;
  font-size: 1.8em;
  color: #1a202c;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Subcategory Title - 简洁优雅 */
.subcategory-title {
  margin: 1.5em 0 1em 0;
  font-size: 1.4em;
  color: #2d3748;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Sub-subcategory Title - 层级用缩进和字体大小表达 */
.sub-subcategory-title {
  margin: 1em 0 0.8em 0;
  font-size: 1.1em;
  color: #4a5568;
  font-weight: 600;
}

/* Fourth Level Title - 更柔和的层级表达 */
.fourth-level-title {
  margin: 0.8em 0 0.6em 0;
  font-size: 1em;
  font-weight: 500;
  color: #718096;
}

/* QR Code Hover Effect */
.qrcode-hover {
  position: relative;
  display: inline-block;
}

.qrcode-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border: 2px solid #007bff;
  border-radius: 6px;
  background: white;
  transition: all 0.3s ease;
}

.qrcode-link:hover {
  background: #007bff;
  color: white;
  text-decoration: none;
}

.qrcode-image {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  border: 3px solid #007bff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}

.qrcode-hover:hover .qrcode-image {
  opacity: 1;
  visibility: visible;
}

/* About Page Enhanced Styles */
.about-section {
  background: transparent;
  border-radius: 10px;
  padding: 0;
  box-shadow: none;
  border: none;
}

.about-intro {
  font-size: 1.05em;
  color: #444;
  line-height: 1.9;
  margin: 10px 0 18px 0;
}

.about-highlights {
  margin: 0 0 18px 0;
  padding-left: 18px;
}

.about-highlights li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.contact-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 18px;
  margin: 6px 0 18px 0;
}

.contact-label {
  display: inline-block;
  min-width: 72px;
  font-weight: 600;
  color: #333;
  margin-right: 10px;
}

.contact-list a {
  color: #0056b3;
  text-decoration: none;
}

.contact-list a:hover {
  color: #003c84;
  text-decoration: underline;
}

.timeline {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0 0;
  position: relative;
}

.timeline li {
  display: grid;
  grid-template-columns: 110px 16px 1fr;
  align-items: start;
  column-gap: 12px;
  padding: 8px 0;
}

.timeline-time {
  color: #666;
  font-weight: 600;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.timeline-content {
  color: #333;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .timeline li {
    grid-template-columns: 96px 14px 1fr;
  }
  .contact-list {
    grid-template-columns: 1fr;
  }
}
/* 现代化Tag Filter样式 */
.tag-filter-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 24px;
  margin: 2em 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
}

.tag-filter-title {
  margin: 0 0 16px 0;
  font-size: 1.3em;
  font-weight: 600;
  color: #2d3748;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag-stats {
  margin-bottom: 20px;
  color: #718096;
  font-size: 0.95em;
}

.tag-stats strong {
  color: rgba(59, 130, 246, 0.9);
  font-size: 1.2em;
}

.tag-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-filter-btn {
  background: white;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 0.9em;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tag-filter-btn:hover {
  background: #f7fafc;
  border-color: rgba(59, 130, 246, 0.9);
  color: rgba(59, 130, 246, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.tag-filter-btn.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.tag-filter-btn-count {
  opacity: 0.7;
  font-size: 0.9em;
}

.tag-filter-btn.active .tag-filter-btn-count {
  opacity: 0.9;
} /* Version: 1761017085 */

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