/* 海角社区二次元漫画网站 - 全局样式 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.hjsq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 头部样式 */
.hjsq-header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.hjsq-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hjsq-logo h1 {
  font-size: 24px;
  color: #667eea;
  font-weight: 700;
  text-decoration: none;
}

.hjsq-logo a {
  text-decoration: none;
  color: inherit;
}

.hjsq-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.hjsq-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 16px;
}

.hjsq-nav a:hover {
  color: #667eea;
}

/* 主横幅 */
.hjsq-hero {
  background: linear-gradient(rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.hjsq-hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hjsq-hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* 内容区域 */
.hjsq-main {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* 漫画网格 */
.hjsq-manga-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.hjsq-manga-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.hjsq-manga-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.hjsq-manga-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hjsq-manga-info {
  padding: 15px;
}

.hjsq-manga-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.hjsq-manga-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.hjsq-manga-tag {
  display: inline-block;
  background: #667eea;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  margin-top: 8px;
}

/* 分类标签 */
.hjsq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.hjsq-category-item {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  transition: transform 0.3s;
  font-weight: 500;
}

.hjsq-category-item:hover {
  transform: scale(1.05);
}

/* 章节标题 */
.hjsq-section-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #667eea;
}

/* 页脚 */
.hjsq-footer {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

.hjsq-footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hjsq-footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hjsq-footer-links a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.hjsq-footer-copyright {
  color: #666;
  font-size: 14px;
}

/* 关于页面样式 */
.hjsq-about-section {
  margin-bottom: 40px;
}

.hjsq-about-section h2 {
  font-size: 28px;
  color: #667eea;
  margin-bottom: 15px;
}

.hjsq-about-section p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.hjsq-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.hjsq-feature-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.hjsq-feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .hjsq-header-content {
    flex-direction: column;
    gap: 15px;
  }

  .hjsq-nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hjsq-hero-title {
    font-size: 32px;
  }

  .hjsq-manga-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .hjsq-main {
    padding: 20px;
  }

  .hjsq-section-title {
    font-size: 24px;
  }
}

/* 加载动画 */
.hjsq-loading {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: hjsq-spin 1s linear infinite;
}

@keyframes hjsq-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
