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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #0a0a0a;
}

.hjsq-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.hjsq-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b6b;
  text-decoration: none;
  letter-spacing: 1px;
}

.hjsq-nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.hjsq-nav-link {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.hjsq-nav-link:hover {
  color: #ff6b6b;
}

.hjsq-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b6b;
  transition: width 0.3s ease;
}

.hjsq-nav-link:hover::after {
  width: 100%;
}

.hjsq-hero-section {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('/edg202501.jpg');
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

.hjsq-hero-content {
  max-width: 900px;
  color: white;
}

.hjsq-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hjsq-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.hjsq-cta-button {
  background: #ff6b6b;
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

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

.hjsq-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.hjsq-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.hjsq-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #ff6b6b;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.hjsq-movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.hjsq-movie-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hjsq-movie-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255,107,107,0.3);
}

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

.hjsq-movie-info {
  padding: 1.5rem;
}

.hjsq-movie-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.hjsq-movie-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 0.8rem;
}

.hjsq-movie-desc {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.5;
}

.hjsq-category-section {
  background: #111;
}

.hjsq-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.hjsq-category-card {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hjsq-category-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}

.hjsq-about-content {
  max-width: 900px;
  margin: 0 auto;
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.8;
}

.hjsq-about-content p {
  margin-bottom: 1.5rem;
}

.hjsq-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.hjsq-feature-card {
  background: #1a1a1a;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #2d2d2d;
  transition: all 0.3s ease;
}

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

.hjsq-feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hjsq-feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.hjsq-feature-desc {
  color: #bbb;
  line-height: 1.6;
}

.hjsq-footer {
  background: #0d0d0d;
  color: #999;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid #222;
}

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

.hjsq-footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

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

.hjsq-copyright {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .hjsq-nav-menu {
    gap: 1.5rem;
    font-size: 0.9rem;
  }

  .hjsq-hero-title {
    font-size: 2.5rem;
  }

  .hjsq-section {
    padding: 3rem 1.5rem;
  }

  .hjsq-movie-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
