* {
  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: #fff;
  background: #0a0a0a;
}

.hjys-header-wrap {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(231, 76, 60, 0.3);
}

.hjys-header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.hjys-nav-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.hjys-brand-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hjys-logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.hjys-site-title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #e74c3c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hjys-nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.hjys-nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 8px;
  display: block;
  position: relative;
}

.hjys-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #e74c3c;
  transition: width 0.3s;
}

.hjys-nav-link:hover {
  color: #fff;
  background: rgba(231, 76, 60, 0.1);
}

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

.hjys-hero-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
  padding: 100px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hjys-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(231,76,60,0.1)"/></svg>');
  opacity: 0.3;
}

.hjys-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hjys-hero-heading {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(231, 76, 60, 0.5);
  line-height: 1.2;
}

.hjys-hero-subtext {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 45px;
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hjys-cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  padding: 16px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
  border: 2px solid transparent;
}

.hjys-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(231, 76, 60, 0.6);
  border-color: rgba(255,255,255,0.3);
}

.hjys-main-container {
  max-width: 1400px;
  margin: 70px auto;
  padding: 0 30px;
}

.hjys-section-header {
  font-size: 40px;
  color: #fff;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.hjys-section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #e74c3c, #ff6b6b);
  border-radius: 3px;
}

.hjys-movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 35px;
  margin-bottom: 70px;
}

.hjys-movie-card {
  background: #1a1a2e;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}

.hjys-movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
  border-color: rgba(231, 76, 60, 0.5);
}

.hjys-movie-poster {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  position: relative;
  overflow: hidden;
}

.hjys-movie-poster::before {
  content: '🎬';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0.3;
}

.hjys-quality-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hjys-movie-info {
  padding: 25px;
}

.hjys-movie-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hjys-movie-meta {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hjys-movie-desc {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hjys-category-section {
  background: #1a1a2e;
  padding: 60px 30px;
  margin: 80px 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}

.hjys-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.hjys-category-item {
  background: linear-gradient(135deg, #16213e, #0f3460);
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.hjys-category-item:hover {
  transform: translateY(-5px);
  border-color: rgba(231, 76, 60, 0.5);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
}

.hjys-category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 38px;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hjys-category-name {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}

.hjys-category-count {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.hjys-feature-showcase {
  padding: 70px 0;
}

.hjys-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.hjys-feature-box {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}

.hjys-feature-box:hover {
  border-color: rgba(231, 76, 60, 0.3);
  transform: translateY(-5px);
}

.hjys-feature-symbol {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 42px;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hjys-feature-label {
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.hjys-feature-text {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-size: 15px;
}

.hjys-footer-wrapper {
  background: #0d0d0d;
  color: rgba(255,255,255,0.8);
  padding: 60px 30px 30px;
  margin-top: 100px;
  border-top: 2px solid rgba(231, 76, 60, 0.3);
}

.hjys-footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.hjys-footer-column h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 600;
}

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

.hjys-footer-links li {
  margin-bottom: 14px;
}

.hjys-footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.hjys-footer-links a:hover {
  color: #e74c3c;
  transform: translateX(5px);
}

.hjys-footer-bottom {
  text-align: center;
  padding-top: 35px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.hjys-content-block {
  background: #1a1a2e;
  padding: 50px;
  border-radius: 16px;
  margin-bottom: 35px;
  border: 1px solid rgba(255,255,255,0.05);
}

.hjys-content-block h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(231, 76, 60, 0.3);
}

.hjys-content-block h3 {
  font-size: 24px;
  color: #e74c3c;
  margin: 30px 0 18px;
}

.hjys-content-block p {
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 16px;
}

.hjys-content-list {
  list-style: none;
  padding-left: 0;
}

.hjys-content-list li {
  padding: 15px 0;
  padding-left: 35px;
  position: relative;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 15px;
}

.hjys-content-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
  font-size: 18px;
}

.hjys-ranking-list {
  display: grid;
  gap: 20px;
}

.hjys-ranking-item {
  background: linear-gradient(135deg, #16213e, #0f3460);
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.hjys-ranking-item:hover {
  transform: translateX(8px);
  border-color: rgba(231, 76, 60, 0.5);
}

.hjys-rank-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.hjys-ranking-details {
  flex: 1;
}

.hjys-ranking-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.hjys-ranking-meta {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.hjys-search-section {
  background: linear-gradient(135deg, #16213e, #0f3460);
  padding: 50px;
  border-radius: 16px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

.hjys-search-box {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  gap: 15px;
}

.hjys-search-input {
  flex: 1;
  padding: 15px 25px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: all 0.3s;
}

.hjys-search-input:focus {
  border-color: #e74c3c;
  background: rgba(0,0,0,0.5);
}

.hjys-search-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.hjys-search-button {
  padding: 15px 40px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.hjys-search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
  .hjys-nav-menu {
    gap: 15px;
    flex-wrap: wrap;
  }

  .hjys-hero-heading {
    font-size: 36px;
  }

  .hjys-hero-subtext {
    font-size: 16px;
  }

  .hjys-section-header {
    font-size: 28px;
  }

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

  .hjys-content-block {
    padding: 30px 20px;
  }

  .hjys-search-box {
    flex-direction: column;
  }
}