/* 全局样式 - 响应式影视资料站 */

:root {
  --primary-color: #2c5aa0;
  --secondary-color: #3d7dd6;
  --accent-color: #ff6b6b;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #f5f5f5;
  --card-bg: #fff;
  --border-color: #e0e0e0;
  --hover-bg: #f0f0f0;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
  --spacing: 1rem;
  --radius: 8px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-color);
  font-size: 16px;
}

/* UI 风格变体 */
body.ui-style-0 { --primary-color: #2c5aa0; --accent-color: #ff6b6b; }
body.ui-style-1 { --primary-color: #1e88e5; --accent-color: #ffa726; }
body.ui-style-2 { --primary-color: #43a047; --accent-color: #ec407a; }
body.ui-style-3 { --primary-color: #5e35b1; --accent-color: #26c6da; }
body.ui-style-4 { --primary-color: #00897b; --accent-color: #ff7043; }
body.ui-style-5 { --primary-color: #3949ab; --accent-color: #ffca28; }
body.ui-style-6 { --primary-color: #1565c0; --accent-color: #66bb6a; }
body.ui-style-7 { --primary-color: #6a1b9a; --accent-color: #ef5350; }
body.ui-style-8 { --primary-color: #0277bd; --accent-color: #ffd54f; }
body.ui-style-9 { --primary-color: #00695c; --accent-color: #ff8a65; }
body.ui-style-10 { --primary-color: #283593; --accent-color: #81c784; }
body.ui-style-11 { --primary-color: #d32f2f; --accent-color: #64b5f6; }
body.ui-style-12 { --primary-color: #c62828; --accent-color: #4db6ac; }
body.ui-style-13 { --primary-color: #ad1457; --accent-color: #aed581; }
body.ui-style-14 { --primary-color: #4e342e; --accent-color: #90caf9; }
body.ui-style-15 { --primary-color: #37474f; --accent-color: #ffb74d; }

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* 顶部导航栏 */
.top-nav {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  padding: 1rem 0;
  margin-right: 2rem;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  list-style: none;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  display: block;
  padding: 1.2rem 1rem;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-menu a:hover {
  background: var(--hover-bg);
  color: var(--primary-color);
}

/* 主内容区域 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* 页面标题 */
.page-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.page-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* 分区标题 */
.section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
}

.section-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* 卡片列表 */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.card-meta span {
  background: var(--hover-bg);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.card-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.card-link:hover {
  gap: 0.6rem;
}

/* 列表样式 */
.list-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.list-item:hover {
  box-shadow: var(--shadow-hover);
  border-left-color: var(--accent-color);
}

.list-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  gap: 1rem;
}

.list-item-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-color);
  line-height: 1.3;
  flex: 1;
}

.list-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.list-item-meta span {
  background: var(--hover-bg);
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  color: var(--text-light);
}

.list-item-desc {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.list-item-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-block;
}

/* 标签 */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--hover-bg);
  color: var(--text-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--primary-color);
  color: white;
}

/* 详情页样式 */
.detail-header {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.detail-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--bg-color);
  border-radius: var(--radius);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.meta-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.meta-value {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 600;
}

.detail-section {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.detail-section h2 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.detail-section p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* 相关推荐 */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.related-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.related-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.related-item-title {
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.related-item-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 页面介绍模块 */
.intro-section {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--primary-color);
}

.intro-section p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* 底部信息 */
.footer {
  background: var(--card-bg);
  border-top: 2px solid var(--primary-color);
  padding: 2rem 0;
  margin-top: 4rem;
  text-align: center;
  color: var(--text-light);
}

/* 排名标识 */
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.rank-badge.top3 {
  background: var(--accent-color);
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 0.5rem;
  }

  .logo {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    padding: 0.8rem 0;
  }

  .nav-menu {
    flex: 1 1 0;
    justify-content: space-between;
    flex-wrap: nowrap !important;
  }

  .nav-menu li {
    flex: 1 1 0;
    min-width: 0;
  }

  .nav-menu a {
    padding: 0.8rem 0.3rem;
    font-size: 0.85rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .container {
    padding: 1rem 0.5rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .detail-title {
    font-size: 1.6rem;
  }

  .detail-meta {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .detail-header,
  .detail-section,
  .intro-section {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }

  .nav-menu a {
    padding: 0.8rem 0.2rem;
    font-size: 0.8rem;
  }

  .page-title {
    font-size: 1.3rem;
  }

  .card,
  .list-item {
    padding: 1rem;
  }
}

/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* 返回顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  font-size: 1.5rem;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-color);
  transform: translateY(-4px);
}
