/* 小说书架样式 */
.novel-shelf {
  padding: 2rem 0;
}

.novel-item {
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 240, 245, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(255, 182, 193, 0.3);
  backdrop-filter: blur(10px);
}

.novel-title {
  font-size: 2rem;
  color: #ffb6c1;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(255, 182, 193, 0.3);
}

.novel-parts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.part-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.part-link:hover {
  transform: translateY(-5px);
}

.part-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.95));
  border-radius: 8px;
  padding: 1.5rem;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 182, 193, 0.2);
  transition: box-shadow 0.3s ease;
}

.part-link:hover .part-card {
  box-shadow: 0 8px 16px rgba(255, 182, 193, 0.4);
}

.part-card h3 {
  font-size: 1.5rem;
  color: #d63384;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.chapter-count {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
  .novel-item {
    padding: 1rem;
  }
  
  .novel-title {
    font-size: 1.5rem;
  }
  
  .novel-parts {
    flex-direction: column;
    align-items: center;
  }
  
  .part-card {
    width: 100%;
    max-width: 300px;
  }
}

