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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #0a0a0a;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.hjys-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hjys-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hjys-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hjys-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #e94560;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.hjys-nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
}

.hjys-nav-link:hover {
  color: #e94560;
}

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

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

.hjys-hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  padding: 4rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hjys-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hjys-hero-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #e94560;
}

.hjys-hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ddd;
  line-height: 1.8;
}

.hjys-cta-button {
  display: inline-block;
  background: #e94560;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.hjys-cta-button:hover {
  background: #d63651;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.hjys-hero-image img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hjys-features-section {
  background: #0f0f0f;
  padding: 5rem 0;
  color: #fff;
}

.hjys-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #e94560;
  position: relative;
  padding-bottom: 1rem;
}

.hjys-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #e94560;
}

.hjys-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.hjys-feature-card {
  background: #1a1a2e;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hjys-feature-card:hover {
  transform: translateY(-10px);
  border-color: #e94560;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.hjys-feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #e94560;
}

.hjys-feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hjys-feature-card p {
  color: #bbb;
  line-height: 1.8;
}

.hjys-movies-section {
  background: #0a0a0a;
  padding: 5rem 0;
  color: #fff;
}

.hjys-movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.hjys-movie-card {
  background: #1a1a2e;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hjys-movie-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.hjys-movie-poster {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

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

.hjys-movie-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #e94560;
}

.hjys-movie-meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}

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

.hjys-categories-section {
  background: #0f0f0f;
  padding: 5rem 0;
  color: #fff;
}

.hjys-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.hjys-category-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hjys-category-card:hover {
  border-color: #e94560;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.hjys-category-card h3 {
  font-size: 1.5rem;
  color: #e94560;
  margin-bottom: 0.5rem;
}

.hjys-category-count {
  color: #888;
  font-size: 0.9rem;
}

.hjys-about-section {
  background: #0a0a0a;
  padding: 5rem 0;
  color: #fff;
}

.hjys-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hjys-about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #e94560;
}

.hjys-about-text p {
  margin-bottom: 1.5rem;
  color: #bbb;
  line-height: 1.8;
  font-size: 1.05rem;
}

.hjys-about-image img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hjys-footer {
  background: #0d0d0d;
  color: #888;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid #1a1a2e;
}

.hjys-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.hjys-footer-section h4 {
  color: #e94560;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.hjys-footer-links {
  list-style: none;
}

.hjys-footer-links li {
  margin-bottom: 0.8rem;
}

.hjys-footer-links a:hover {
  color: #e94560;
}

.hjys-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1a1a2e;
  color: #666;
}

@media (max-width: 968px) {
  .hjys-hero-content,
  .hjys-about-content {
    grid-template-columns: 1fr;
  }

  .hjys-nav-menu {
    gap: 1.5rem;
  }

  .hjys-hero-text h2 {
    font-size: 2.2rem;
  }

  .hjys-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .hjys-container {
    padding: 0 1rem;
  }

  .hjys-nav-menu {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hjys-hero-text h2 {
    font-size: 1.8rem;
  }

  .hjys-movies-grid {
    grid-template-columns: 1fr;
  }
}