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

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

.hjsq-header-container {
    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-header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hjsq-logo-section {
    flex-shrink: 0;
}

.hjsq-site-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.hjsq-home-link {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.hjsq-main-navigation {
    flex: 1;
}

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

.hjsq-nav-item {
    position: relative;
}

.hjsq-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.hjsq-nav-link:hover,
.hjsq-nav-link.hjsq-active {
    color: #ffd700;
}

.hjsq-nav-link.hjsq-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ffd700;
}

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

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

.hjsq-search-button {
    padding: 0.6rem 1.5rem;
    background-color: #ffd700;
    color: #1e3c72;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjsq-search-button:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
}

.hjsq-main-content {
    min-height: calc(100vh - 400px);
}

.hjsq-hero-banner {
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.hjsq-banner-slider {
    position: relative;
    height: 500px;
}

.hjsq-banner-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hjsq-banner-item.hjsq-banner-active {
    opacity: 1;
}

.hjsq-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjsq-banner-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hjsq-banner-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hjsq-banner-desc {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hjsq-banner-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background-color: #e50914;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hjsq-banner-button:hover {
    background-color: #f40612;
    transform: scale(1.05);
}

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

.hjsq-section-title {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #2a5298;
    display: inline-block;
}

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

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

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

.hjsq-video-thumb {
    position: relative;
    width: 100%;
    padding-top: 140%;
    overflow: hidden;
    background-color: #ddd;
}

.hjsq-thumb-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hjsq-video-card:hover .hjsq-thumb-image {
    transform: scale(1.1);
}

.hjsq-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.hjsq-quality-badge,
.hjsq-episode-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e50914;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: bold;
}

.hjsq-video-info {
    padding: 1.2rem;
}

.hjsq-video-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.hjsq-video-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.hjsq-video-rating {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: bold;
}

.hjsq-featured-section,
.hjsq-movies-section,
.hjsq-series-section,
.hjsq-variety-section,
.hjsq-anime-section {
    background-color: #fff;
    margin-bottom: 2rem;
    border-radius: 10px;
    padding: 2rem 0;
}

.hjsq-footer-container {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.hjsq-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.hjsq-footer-section {
    color: #fff;
}

.hjsq-footer-title,
.hjsq-footer-subtitle {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.hjsq-footer-text {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.hjsq-footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.hjsq-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hjsq-page-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hjsq-page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hjsq-page-desc {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hjsq-filter-section {
    background-color: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hjsq-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hjsq-filter-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hjsq-filter-label {
    font-weight: bold;
    color: #1e3c72;
}

.hjsq-filter-btn {
    padding: 0.5rem 1.2rem;
    border: 2px solid #2a5298;
    background-color: #fff;
    color: #2a5298;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.hjsq-filter-btn:hover,
.hjsq-filter-btn.hjsq-filter-active {
    background-color: #2a5298;
    color: #fff;
}

.hjsq-content-section {
    padding: 2rem 0;
}

.hjsq-about-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 4rem 0;
    text-align: center;
}

.hjsq-about-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.hjsq-about-image {
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hjsq-about-content {
    background-color: #fff;
}

.hjsq-about-section {
    margin-bottom: 3rem;
}

.hjsq-section-heading {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2a5298;
}

.hjsq-about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.hjsq-content-image {
    max-width: 100%;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.hjsq-feature-card,
.hjsq-category-item {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.hjsq-feature-card:hover,
.hjsq-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.hjsq-feature-image,
.hjsq-category-image {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.hjsq-feature-title,
.hjsq-category-title {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 0.8rem;
}

.hjsq-feature-desc,
.hjsq-category-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hjsq-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .hjsq-banner-desc {
        font-size: 1.2rem;
    }

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

    .hjsq-search-input {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hjsq-site-title {
        font-size: 1.4rem;
    }

    .hjsq-banner-slider {
        height: 300px;
    }

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

    .hjsq-banner-desc {
        font-size: 1rem;
    }

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

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