/* 免费韩漫样式 */
/* 全局样式 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Montserrat:wght@500;600;700&display=swap');

body {
  background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
  background-attachment: fixed;
  color: #1E293B;
  font-family: 'Inter', system-ui, sans-serif;
}

/* 漫画卡片样式 */
.comic-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.comic-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.comic-cover {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.comic-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 30%);
  z-index: 1;
}

.comic-cover span {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 25px;
  line-height: 1.7;
}

.category-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  padding: 7px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  color: #1E293B;
}

.new-badge {
  position: absolute;
  top: -15px;
  left: 15px;
  background: #F97316;
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 18px;
  border-radius: 30px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

/* 标题样式 */
.section-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 38px;
  font-family: 'Montserrat', sans-serif;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, #3B82F6 0%, #F97316 100%);
  border-radius: 3px;
}

/* 按钮样式 */
.btn-primary {
  background: linear-gradient(90deg, #3B82F6 0%, #F97316 100%);
  color: white;
  border: none;
  border-radius: 40px;
  padding: 16px 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.45);
}

/* 导航栏样式 */
.header-gradient {
  background: linear-gradient(90deg, #3B82F6 0%, #EC4899 100%);
}

/* 统计信息样式 */
.comic-stats {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #64748B;
  margin-top: 10px;
}

.comic-stats span {
  display: flex;
  align-items: center;
}

.comic-stats i {
  margin-right: 7px;
}

/* 搜索框样式 */
.search-box {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 40px;
  padding: 10px 35px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 14px 20px;
}

/* 移动端菜单 */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: white;
}

.mobile-menu.active {
  max-height: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 页脚链接样式 */
.footer-links a {
  position: relative;
  padding-bottom: 8px;
  color: #94A3B8;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3B82F6;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* 应用下载样式 */
.app-download {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.app-download:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-7px);
}

/* 评分星星样式 */
.rating-stars {
  color: #FBBF24;
  font-size: 18px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .comic-cover {
height: 220px;
  }
  
  .hero-section {
height: 380px;
  }
  
  .hero-content h1 {
font-size: 30px;
  }
  
  .hero-content p {
font-size: 18px;
  }
  
  .section-title {
font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .comic-cover {
height: 200px;
  }
  
  .hero-section {
height: 340px;
  }
  
  .grid-cols-2 md\\:grid-cols-3 lg\\:grid-cols-4 xl\\:grid-cols-5 {
grid-template-columns: repeat(2, 1fr);
  }
  
  .btn-primary {
padding: 14px 35px;
font-size: 0.95rem;
  }
}