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

body.hjsq-main-body {
    font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

h1.hjsq-keyword-highlight {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
}

h1.hjsq-keyword-highlight a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

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

nav.hjsq-navigation-bar {
    padding: 0;
}

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

.hjsq-logo-wrapper h1.hjsq-site-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.hjsq-logo-wrapper h1.hjsq-site-title a {
    color: #fff;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

ul.hjsq-menu-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

section.hjsq-hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hjsq-banner-overlay {
    max-width: 1400px;
    margin: 0 auto;
}

.hjsq-banner-content {
    position: relative;
    z-index: 2;
}

h2.hjsq-banner-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

p.hjsq-banner-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

img.hjsq-banner-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

section.hjsq-news-section {
    padding: 4rem 2rem;
    background: #fff;
}

.hjsq-section-container {
    max-width: 1400px;
    margin: 0 auto;
}

h2.hjsq-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
    font-weight: 700;
}

h2.hjsq-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.hjsq-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

article.hjsq-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

img.hjsq-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

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

p.hjsq-card-desc {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

span.hjsq-card-date {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

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

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

section.hjsq-manga-section h2.hjsq-section-title::after {
    background: #fff;
}

.hjsq-manga-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hjsq-manga-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

.hjsq-featured-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h3.hjsq-featured-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

p.hjsq-featured-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hjsq-manga-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

span.hjsq-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.hjsq-manga-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

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

h4.hjsq-manga-name {
    padding: 1rem;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

p.hjsq-manga-brief {
    padding: 0 1rem 1rem;
    color: #666;
    line-height: 1.6;
}

section.hjsq-character-section {
    padding: 4rem 2rem;
    background: #fff;
}

p.hjsq-section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hjsq-character-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.hjsq-character-card {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hjsq-character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

img.hjsq-character-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

h3.hjsq-character-name {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

p.hjsq-character-intro {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hjsq-character-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

span.hjsq-stat-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

section.hjsq-community-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

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

.hjsq-discussion-area {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

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

.hjsq-topic-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hjsq-topic-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hjsq-topic-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

img.hjsq-topic-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.hjsq-topic-info {
    flex: 1;
}

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

p.hjsq-topic-meta {
    color: #777;
    font-size: 0.9rem;
}

.hjsq-activity-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

h3.hjsq-sidebar-title {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.hjsq-activity-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

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

h4.hjsq-activity-name {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

p.hjsq-activity-desc {
    padding: 0 1rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

span.hjsq-activity-status {
    display: inline-block;
    margin: 1rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

section.hjsq-doujin-section {
    padding: 4rem 2rem;
    background: #fff;
}

.hjsq-creation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hjsq-creation-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hjsq-creation-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.hjsq-creation-item:hover .hjsq-creation-overlay {
    opacity: 1;
}

img.hjsq-creation-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.hjsq-creation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

h4.hjsq-creation-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

p.hjsq-creation-author {
    color: #ddd;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

span.hjsq-creation-likes {
    color: #ff6b6b;
    font-weight: 600;
}

section.hjsq-features-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
}

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

section.hjsq-features-section h2.hjsq-section-title::after {
    background: #fff;
}

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

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

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

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

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

p.hjsq-feature-desc {
    color: #666;
    line-height: 1.7;
}

section.hjsq-contact-section {
    padding: 4rem 2rem;
    background: #fff;
}

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

.hjsq-contact-info {
    padding: 2rem;
}

h3.hjsq-contact-subtitle {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

p.hjsq-contact-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

ul.hjsq-contact-list {
    list-style: none;
}

li.hjsq-contact-item {
    padding: 1rem 0;
    color: #555;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.hjsq-contact-form {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

h3.hjsq-form-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

form.hjsq-message-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input.hjsq-form-input,
textarea.hjsq-form-textarea {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

button.hjsq-form-button {
    padding: 1rem;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.hjsq-form-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.hjsq-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

h3.hjsq-footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

a.hjsq-footer-link {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.hjsq-footer-link:hover {
    color: #fff;
    padding-left: 5px;
}

p.hjsq-social-text {
    color: #bbb;
    margin-bottom: 1rem;
}

.hjsq-social-icons {
    display: flex;
    gap: 1rem;
}

span.hjsq-social-icon {
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

span.hjsq-social-icon:hover {
    transform: scale(1.2);
}

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

p.hjsq-copyright {
    color: #999;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hjsq-nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    ul.hjsq-menu-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

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

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

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

@media (max-width: 768px) {
    h2.hjsq-banner-title {
        font-size: 2rem;
    }

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

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

    .hjsq-news-grid,
    .hjsq-manga-grid,
    .hjsq-character-gallery,
    .hjsq-features-grid,
    .hjsq-creation-grid {
        grid-template-columns: 1fr;
    }
}