/* Global Styles for 海角社区在线播放 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.hjsq-header-wrapper {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.hjsq-nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.hjsq-logo-link {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  transition: opacity 0.3s;
}

.hjsq-logo-link:hover {
  opacity: 0.8;
}

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

.hjsq-nav-item a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  padding: 5px 10px;
}

.hjsq-nav-item a:hover {
  color: #ffd700;
}

.hjsq-hero-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/blg202501.jpg') center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hjsq-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.hjsq-hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hjsq-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.hjsq-cta-button:hover {
  background-color: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

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

.hjsq-section-alt {
  background-color: white;
}

.hjsq-section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #2a5298;
}

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

.hjsq-video-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hjsq-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

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

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

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

.hjsq-feature-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.hjsq-feature-card:hover {
  transform: translateY(-5px);
}

.hjsq-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: cover;
}

.hjsq-feature-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2a5298;
}

.hjsq-feature-text {
  color: #666;
  line-height: 1.8;
}

.hjsq-content-block {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.hjsq-content-heading {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2a5298;
}

.hjsq-content-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.hjsq-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.hjsq-category-tag {
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.3s;
}

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

.hjsq-footer-wrapper {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

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

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

.hjsq-footer-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.hjsq-footer-link:hover {
  color: #ffd700;
}

.hjsq-copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .hjsq-nav-menu {
    flex-direction: column;
    gap: 15px;
  }

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

  .hjsq-hero-subtitle {
    font-size: 16px;
  }

  .hjsq-video-grid {
    grid-template-columns: 1fr;
  }
}
