* {
    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: #f5f7fa;
}

.hjsq-main-body,
.hjsq-anime-body,
.hjsq-videos-body,
.hjsq-community-body,
.hjsq-ranking-body,
.hjsq-about-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hjsq-header-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hjsq-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hjsq-navigation-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

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

.hjsq-menu-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.hjsq-menu-list a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.hjsq-menu-list a:hover,
.hjsq-active-link {
    color: #fff;
    border-bottom-color: #fff;
}

.hjsq-search-container {
    display: flex;
    gap: 10px;
}

.hjsq-search-input {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    outline: none;
    width: 200px;
    font-size: 14px;
}

.hjsq-search-btn {
    padding: 8px 20px;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hjsq-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hjsq-hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hjsq-banner-content {
    position: relative;
    height: 100%;
}

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

.hjsq-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 100px;
}

.hjsq-banner-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hjsq-banner-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    margin-bottom: 30px;
}

.hjsq-cta-button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjsq-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hjsq-featured-section,
.hjsq-category-showcase,
.hjsq-latest-updates,
.hjsq-community-highlights {
    padding: 60px 0;
}

.hjsq-section-header {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.hjsq-section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.hjsq-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

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

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

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

.hjsq-card-info {
    padding: 15px;
}

.hjsq-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hjsq-card-meta {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.hjsq-card-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #e8f0fe;
    color: #667eea;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 5px;
}

.hjsq-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.hjsq-category-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    padding-bottom: 20px;
}

.hjsq-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.hjsq-category-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 15px 0 5px;
}

.hjsq-category-count {
    font-size: 14px;
    color: #7f8c8d;
}

.hjsq-update-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hjsq-update-item {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjsq-update-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.hjsq-update-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.hjsq-update-details {
    flex: 1;
}

.hjsq-update-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.hjsq-update-time {
    font-size: 13px;
    color: #7f8c8d;
}

.hjsq-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

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

.hjsq-highlight-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    padding: 15px 15px 10px;
}

.hjsq-highlight-desc {
    font-size: 14px;
    color: #7f8c8d;
    padding: 0 15px 15px;
    line-height: 1.5;
}

.hjsq-footer-section {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: auto;
}

.hjsq-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.hjsq-footer-heading {
    margin-bottom: 15px;
}

.hjsq-footer-heading .hjsq-site-title {
    font-size: 22px;
}

.hjsq-footer-desc {
    color: #bdc3c7;
    line-height: 1.8;
}

.hjsq-footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

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

.hjsq-footer-links li {
    margin-bottom: 10px;
}

.hjsq-footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hjsq-footer-links a:hover {
    color: #fff;
}

.hjsq-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
}

.hjsq-anime-hero,
.hjsq-videos-hero,
.hjsq-community-hero,
.hjsq-ranking-hero,
.hjsq-about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.hjsq-page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hjsq-page-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

.hjsq-anime-filter,
.hjsq-ranking-tabs {
    padding: 30px 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.hjsq-filter-bar,
.hjsq-tab-bar {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hjsq-filter-btn,
.hjsq-tab-btn {
    padding: 10px 25px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    color: #495057;
    transition: all 0.3s ease;
}

.hjsq-filter-btn:hover,
.hjsq-tab-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.hjsq-active-filter,
.hjsq-active-tab {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #fff;
}

.hjsq-anime-collection,
.hjsq-category-main {
    padding: 50px 0;
}

.hjsq-collection-title {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #667eea;
}

.hjsq-anime-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.hjsq-anime-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

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

.hjsq-anime-card:hover .hjsq-anime-poster {
    transform: scale(1.05);
}

.hjsq-anime-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    padding: 20px;
    color: #fff;
    transform: translateY(60%);
    transition: transform 0.3s ease;
}

.hjsq-anime-card:hover .hjsq-anime-overlay {
    transform: translateY(0);
}

.hjsq-anime-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hjsq-anime-rating,
.hjsq-anime-status {
    font-size: 14px;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.9);
}

.hjsq-watch-btn {
    margin-top: 10px;
    padding: 8px 20px;
    background: #667eea;
    border: none;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hjsq-watch-btn:hover {
    background: #764ba2;
}

.hjsq-anime-recommend {
    padding: 50px 0;
    background: #f8f9fa;
}

.hjsq-recommend-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hjsq-recommend-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hjsq-recommend-thumb {
    width: 200px;
    height: 280px;
    border-radius: 8px;
    object-fit: cover;
}

.hjsq-recommend-content {
    flex: 1;
}

.hjsq-recommend-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hjsq-recommend-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.hjsq-recommend-tags {
    display: flex;
    gap: 10px;
}

.hjsq-tag-item {
    padding: 6px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 15px;
    font-size: 13px;
}

.hjsq-category-section {
    margin-bottom: 50px;
}

.hjsq-category-header {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.hjsq-category-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    color: #fff;
}

.hjsq-category-label {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hjsq-category-description {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.hjsq-category-stat {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.hjsq-video-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

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

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

.hjsq-video-label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    padding: 12px 12px 5px;
}

.hjsq-video-views {
    font-size: 13px;
    color: #7f8c8d;
    padding: 0 12px 12px;
}

.hjsq-community-content {
    padding: 40px 0;
}

.hjsq-community-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.hjsq-post-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hjsq-post-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.hjsq-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hjsq-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.hjsq-username {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.hjsq-post-time {
    font-size: 13px;
    color: #95a5a6;
}

.hjsq-post-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hjsq-post-content {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.hjsq-post-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.hjsq-post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.hjsq-post-img-single {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.hjsq-post-tags {
    margin-bottom: 15px;
}

.hjsq-content-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #f0f2f5;
    color: #667eea;
    border-radius: 12px;
    font-size: 13px;
    margin-right: 8px;
}

.hjsq-post-footer {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.hjsq-action-btn {
    padding: 8px 15px;
    background: #f8f9fa;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #495057;
    transition: all 0.3s ease;
}

.hjsq-action-btn:hover {
    background: #e9ecef;
}

.hjsq-sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hjsq-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2f5;
}

.hjsq-topic-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f5;
}

.hjsq-topic-rank {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
}

.hjsq-topic-name {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.hjsq-topic-count {
    font-size: 12px;
    color: #95a5a6;
}

.hjsq-user-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f5;
}

.hjsq-mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.hjsq-user-nickname {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
}

.hjsq-follow-btn {
    padding: 5px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.hjsq-follow-btn:hover {
    opacity: 0.9;
}

.hjsq-activity-card {
    margin-bottom: 15px;
}

.hjsq-activity-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.hjsq-activity-name {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.hjsq-activity-time {
    font-size: 13px;
    color: #7f8c8d;
}

.hjsq-ranking-main {
    padding: 50px 0;
}

.hjsq-top-three {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: end;
}

.hjsq-rank-first,
.hjsq-rank-second,
.hjsq-rank-third {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hjsq-rank-first {
    height: 480px;
}

.hjsq-rank-second,
.hjsq-rank-third {
    height: 400px;
}

.hjsq-rank-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjsq-rank-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.hjsq-badge-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.hjsq-badge-silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.5);
}

.hjsq-badge-bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #B5651D 100%);
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.5);
}

.hjsq-rank-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px 20px 20px;
    color: #fff;
}

.hjsq-rank-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hjsq-rank-score {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
}

.hjsq-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hjsq-ranking-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjsq-ranking-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.hjsq-rank-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #95a5a6;
}

.hjsq-top-rank {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 8px;
}

.hjsq-rank-thumb {
    width: 120px;
    height: 160px;
    border-radius: 8px;
    object-fit: cover;
}

.hjsq-rank-details {
    flex: 1;
}

.hjsq-rank-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.hjsq-rank-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.hjsq-meta-item {
    font-size: 14px;
    color: #7f8c8d;
}

.hjsq-rank-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.hjsq-rank-watch {
    padding: 10px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hjsq-rank-watch:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.hjsq-about-intro {
    padding: 60px 0;
    background: #fff;
}

.hjsq-intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.hjsq-intro-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.hjsq-intro-paragraph {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hjsq-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.hjsq-mission-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.hjsq-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hjsq-mission-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjsq-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.hjsq-mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.hjsq-mission-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hjsq-mission-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.hjsq-features-section {
    padding: 60px 0;
    background: #fff;
}

.hjsq-features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hjsq-feature-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: center;
}

.hjsq-feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hjsq-feature-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hjsq-feature-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.hjsq-team-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.hjsq-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hjsq-team-member {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hjsq-member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.hjsq-member-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.hjsq-member-role {
    font-size: 14px;
    color: #667eea;
    margin-bottom: 10px;
}

.hjsq-member-intro {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
}

.hjsq-contact-section {
    padding: 60px 0;
    background: #fff;
}

.hjsq-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.hjsq-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hjsq-contact-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.hjsq-contact-label {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.hjsq-contact-value {
    font-size: 15px;
    color: #555;
}

.hjsq-form-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hjsq-message-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hjsq-form-input,
.hjsq-form-textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.hjsq-form-input:focus,
.hjsq-form-textarea:focus {
    border-color: #667eea;
}

.hjsq-form-submit {
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hjsq-form-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.hjsq-policy-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.hjsq-policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hjsq-policy-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hjsq-policy-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hjsq-policy-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hjsq-policy-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hjsq-policy-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hjsq-navigation-bar {
        flex-direction: column;
        gap: 15px;
    }

    .hjsq-menu-list {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hjsq-video-grid,
    .hjsq-category-grid,
    .hjsq-video-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

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

    .hjsq-intro-content,
    .hjsq-contact-content {
        grid-template-columns: 1fr;
    }

    .hjsq-mission-grid,
    .hjsq-team-grid,
    .hjsq-policy-grid {
        grid-template-columns: 1fr;
    }

    .hjsq-banner-overlay {
        padding: 0 30px;
    }

    .hjsq-banner-title {
        font-size: 32px;
    }
}