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

body {
    font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.hjsq-home-body {
    min-height: 100vh;
}

.hjsq-main-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.hjsq-logo-section a {
    text-decoration: none;
}

.hjsq-site-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hjsq-main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hjsq-nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hjsq-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hjsq-nav-link:hover,
.hjsq-nav-link.hjsq-active {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hjsq-search-box {
    display: flex;
    gap: 0.5rem;
}

.hjsq-search-input {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 25px;
    width: 220px;
    font-size: 0.9rem;
    outline: none;
}

.hjsq-search-btn {
    padding: 0.6rem 1.5rem;
    background: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hjsq-search-btn:hover {
    background: #ee5a52;
    transform: scale(1.05);
}

.hjsq-hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    color: #fff;
}

.hjsq-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hjsq-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hjsq-banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hjsq-banner-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ff6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.hjsq-banner-cta:hover {
    background: #ee5a52;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

.hjsq-feature-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hjsq-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hjsq-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hjsq-section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.hjsq-section-title h1 {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
}

.hjsq-section-title a {
    text-decoration: none;
    color: inherit;
}

.hjsq-section-desc {
    font-size: 1.1rem;
    color: #7f8c8d;
}

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

.hjsq-movie-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.hjsq-card-image {
    position: relative;
    overflow: hidden;
}

.hjsq-poster-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hjsq-movie-card:hover .hjsq-poster-img {
    transform: scale(1.1);
}

.hjsq-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hjsq-movie-card:hover .hjsq-card-overlay {
    opacity: 1;
}

.hjsq-play-icon {
    font-size: 4rem;
    color: #fff;
}

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

.hjsq-movie-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hjsq-movie-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.hjsq-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hjsq-stars {
    color: #f39c12;
    font-size: 1rem;
}

.hjsq-score {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.hjsq-tv-section {
    background: #fff;
}

.hjsq-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hjsq-more-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hjsq-more-link:hover {
    color: #2980b9;
}

.hjsq-tv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.hjsq-tv-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hjsq-tv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hjsq-tv-poster {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hjsq-tv-details {
    padding: 1rem;
}

.hjsq-tv-name {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hjsq-tv-info {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.hjsq-tv-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #3498db;
    color: #fff;
    border-radius: 15px;
    font-size: 0.8rem;
}

.hjsq-variety-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 4rem 0;
}

.hjsq-variety-section .hjsq-section-title {
    color: #fff;
}

.hjsq-variety-list {
    display: grid;
    gap: 2rem;
}

.hjsq-variety-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.hjsq-variety-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

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

.hjsq-variety-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hjsq-variety-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hjsq-variety-desc {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hjsq-variety-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #27ae60;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    align-self: flex-start;
}

.hjsq-anime-section {
    background: #fff;
}

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

.hjsq-anime-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hjsq-anime-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hjsq-anime-cover {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hjsq-anime-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 1.5rem;
    color: #fff;
}

.hjsq-anime-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hjsq-anime-type {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hjsq-features-section {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    padding: 4rem 0;
}

.hjsq-features-section .hjsq-section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.hjsq-feature-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hjsq-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.hjsq-feature-heading {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.hjsq-latest-section {
    background: #fff;
}

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

.hjsq-latest-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hjsq-latest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hjsq-latest-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.hjsq-latest-title {
    padding: 1rem;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.hjsq-latest-date {
    padding: 0 1rem 1rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.hjsq-main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.hjsq-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.hjsq-footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hjsq-footer-title h1 {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
}

.hjsq-footer-title a {
    text-decoration: none;
    color: inherit;
}

.hjsq-footer-desc {
    line-height: 1.8;
    opacity: 0.9;
}

.hjsq-footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hjsq-footer-list {
    list-style: none;
}

.hjsq-footer-list li {
    margin-bottom: 0.8rem;
}

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

.hjsq-footer-link:hover {
    color: #3498db;
    opacity: 1;
}

.hjsq-footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hjsq-copyright {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .hjsq-banner-container {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .hjsq-header-container {
        flex-direction: column;
    }

    .hjsq-nav-list {
        gap: 1rem;
    }

    .hjsq-banner-title {
        font-size: 2rem;
    }

    .hjsq-section-title {
        font-size: 1.5rem;
    }
}