/* 海角社区影视网站全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
}

/* 首页样式 */
.hjsq-home-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hjsq-header-main {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.hjsq-logo-link {
  font-size: 28px;
  font-weight: bold;
  color: #f59e0b;
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.hjsq-logo-link:hover {
  color: #fbbf24;
  transform: scale(1.05);
}

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

.hjsq-nav-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 6px;
}

.hjsq-nav-menu a:hover {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.hjsq-hero-banner {
  margin: 40px 0;
  padding: 80px 40px;
  background: linear-gradient(135deg, #2d3561 0%, #1a1f3a 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hjsq-hero-banner h2 {
  font-size: 48px;
  color: #f59e0b;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hjsq-hero-banner p {
  font-size: 20px;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

.hjsq-content-section {
  margin: 50px 0;
}

.hjsq-section-title {
  font-size: 32px;
  color: #f59e0b;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #f59e0b;
}

.hjsq-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.hjsq-video-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hjsq-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.hjsq-video-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hjsq-video-info {
  padding: 20px;
}

.hjsq-video-title {
  font-size: 18px;
  color: #f1f5f9;
  margin-bottom: 10px;
  font-weight: 600;
}

.hjsq-video-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
}

.hjsq-footer-main {
  background: rgba(15, 23, 42, 0.95);
  padding: 40px 0;
  margin-top: 80px;
  text-align: center;
  border-top: 2px solid #f59e0b;
}

.hjsq-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hjsq-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hjsq-footer-links a:hover {
  color: #f59e0b;
}

.hjsq-copyright {
  color: #94a3b8;
  font-size: 14px;
}

/* 电影页面样式 */
.hjsq-movie-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hjsq-movie-hero {
  margin: 40px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-radius: 20px;
  text-align: center;
}

.hjsq-movie-categories {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.hjsq-category-tag {
  padding: 10px 25px;
  background: rgba(245, 158, 11, 0.2);
  border: 2px solid #f59e0b;
  border-radius: 25px;
  color: #f59e0b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hjsq-category-tag:hover {
  background: #f59e0b;
  color: #1a1a2e;
}

/* 电视剧页面样式 */
.hjsq-tv-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hjsq-tv-hero {
  margin: 40px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
  border-radius: 20px;
  text-align: center;
}

.hjsq-episode-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.hjsq-episode-btn {
  padding: 12px;
  background: rgba(8, 145, 178, 0.2);
  border: 2px solid #0891b2;
  border-radius: 8px;
  color: #0891b2;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.hjsq-episode-btn:hover {
  background: #0891b2;
  color: #fff;
}

/* 综艺页面样式 */
.hjsq-variety-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hjsq-variety-hero {
  margin: 40px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  border-radius: 20px;
  text-align: center;
}

.hjsq-show-card {
  background: rgba(124, 58, 237, 0.1);
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hjsq-show-card:hover {
  border-color: #7c3aed;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}

/* 动漫页面样式 */
.hjsq-anime-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hjsq-anime-hero {
  margin: 40px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  border-radius: 20px;
  text-align: center;
}

.hjsq-anime-card {
  background: rgba(236, 72, 153, 0.1);
  border: 2px solid rgba(236, 72, 153, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hjsq-anime-card:hover {
  border-color: #ec4899;
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.3);
}

/* 关于我们页面样式 */
.hjsq-about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hjsq-about-hero {
  margin: 40px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-radius: 20px;
  text-align: center;
}

.hjsq-about-content {
  background: rgba(30, 41, 59, 0.8);
  padding: 40px;
  border-radius: 12px;
  margin: 30px 0;
  line-height: 1.8;
}

.hjsq-about-content h3 {
  color: #f59e0b;
  font-size: 24px;
  margin: 30px 0 15px 0;
}

.hjsq-about-content p {
  color: #cbd5e1;
  margin-bottom: 15px;
}

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

.hjsq-feature-item {
  background: rgba(5, 150, 105, 0.2);
  padding: 25px;
  border-radius: 12px;
  border: 2px solid rgba(5, 150, 105, 0.3);
  transition: all 0.3s ease;
}

.hjsq-feature-item:hover {
  border-color: #059669;
  transform: translateY(-5px);
}

.hjsq-feature-item h4 {
  color: #10b981;
  font-size: 20px;
  margin-bottom: 10px;
}

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

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

  .hjsq-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .hjsq-footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
