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

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

/* 漫画卡片样式 */
.manga-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.manga-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

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

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

.manga-cover span {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  line-height: 1.6;
}

.genre-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 18px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  color: #333;
}

.new-label {
  position: absolute;
  top: -12px;
  left: 12px;
  background: #FF6B9B;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 15px;
  border-radius: 25px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(255, 107, 155, 0.4);
}

/* 标题样式 */
.section-header {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 35px;
  font-family: 'Poppins', sans-serif;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #FF6B9B 0%, #9D6EDD 100%);
  border-radius: 3px;
}

/* 按钮样式 */
.btn-primary {
  background: linear-gradient(90deg, #FF6B9B 0%, #FF8BC3 100%);
  color: white;
  border: none;
  border-radius: 35px;
  padding: 14px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(255, 107, 155, 0.3);
  font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 107, 155, 0.4);
}

/* 导航栏样式 */
.nav-gradient {
  background: linear-gradient(90deg, #FF6B9B 0%, #9D6EDD 100%);
}

/* 统计信息样式 */
.manga-stats {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

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

.manga-stats i {
  margin-right: 5px;
}

/* 搜索框样式 */
.search-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 35px;
  padding: 8px 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.search-container input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 12px 15px;
}

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

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

/* 页脚链接样式 */
.footer-links a {
  position: relative;
  padding-bottom: 7px;
  color: #9CA3AF;
  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: #FF6B9B;
  transition: width 0.3s ease;
}

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

/* 应用下载样式 */
.app-download {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  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(-6px);
}

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

/* 响应式调整 */
@media (max-width: 768px) {
  .manga-cover {
height: 220px;
  }
  
  .hero-section {
height: 360px;
  }
  
  .hero-content h1 {
font-size: 28px;
  }
  
  .hero-content p {
font-size: 17px;
  }
  
  .section-header {
font-size: 1.7rem;
  }
}

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