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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.hjzb-main-header {
    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;
}

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

.hjzb-logo-section h1 {
    color: white;
    font-size: 28px;
    font-weight: bold;
    padding: 15px 0;
    letter-spacing: 2px;
}

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

.hjzb-nav-menu a {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    padding: 20px 5px;
    display: block;
    position: relative;
}

.hjzb-nav-menu a:hover,
.hjzb-nav-active {
    color: white !important;
}

.hjzb-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.3s ease;
}

.hjzb-nav-menu a:hover::after,
.hjzb-nav-active::after {
    width: 100%;
}

.hjzb-hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 30px;
    color: white;
}

.hjzb-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hjzb-hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hjzb-hero-desc {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.hjzb-hero-buttons {
    display: flex;
    gap: 20px;
}

.hjzb-btn-primary,
.hjzb-btn-secondary,
.hjzb-btn-accent {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.hjzb-btn-primary {
    background: white;
    color: #667eea;
}

.hjzb-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hjzb-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hjzb-btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hjzb-btn-accent {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    display: inline-block;
}

.hjzb-btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245,87,108,0.4);
}

.hjzb-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hjzb-featured-section,
.hjzb-live-section,
.hjzb-manga-showcase,
.hjzb-community-section,
.hjzb-stats-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.hjzb-section-title {
    font-size: 42px;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 15px;
}

.hjzb-section-subtitle {
    font-size: 18px;
    color: #718096;
}

.hjzb-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.hjzb-anime-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjzb-anime-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hjzb-card-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.hjzb-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hjzb-anime-card:hover .hjzb-card-image img {
    transform: scale(1.1);
}

.hjzb-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.hjzb-card-content {
    padding: 25px;
}

.hjzb-card-content h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 12px;
}

.hjzb-card-desc {
    color: #718096;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.hjzb-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
    font-size: 14px;
}

.hjzb-card-meta span:last-child {
    color: #f5576c;
    font-weight: bold;
}

.hjzb-live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hjzb-live-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjzb-live-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.hjzb-live-preview {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hjzb-live-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjzb-live-indicator {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e53e3e;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hjzb-viewer-count {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 13px;
}

.hjzb-live-info {
    padding: 20px;
}

.hjzb-live-info h4 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 8px;
}

.hjzb-live-info p {
    color: #718096;
    font-size: 14px;
}

.hjzb-manga-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: white;
    padding: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.hjzb-showcase-title {
    font-size: 42px;
    color: #2d3748;
    margin-bottom: 25px;
    font-weight: bold;
}

.hjzb-showcase-desc {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 30px;
}

.hjzb-feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.hjzb-feature-list li {
    padding: 12px 0;
    color: #4a5568;
    font-size: 16px;
    position: relative;
    padding-left: 30px;
}

.hjzb-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 18px;
}

.hjzb-preview-img {
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.hjzb-community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.hjzb-community-card {
    background: white;
    padding: 45px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjzb-community-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.hjzb-community-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    object-fit: cover;
}

.hjzb-community-card h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 15px;
}

.hjzb-community-card p {
    color: #718096;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hjzb-topic-count {
    display: inline-block;
    background: #edf2f7;
    color: #667eea;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.hjzb-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px;
    border-radius: 20px;
}

.hjzb-stat-item {
    text-align: center;
    color: white;
}

.hjzb-stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hjzb-stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.hjzb-main-footer {
    background: #2d3748;
    color: white;
    padding: 60px 30px 30px;
    margin-top: 100px;
}

.hjzb-footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.hjzb-footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.hjzb-footer-section h4 h1 {
    font-size: 24px;
    color: white;
}

.hjzb-footer-section p {
    color: #cbd5e0;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.hjzb-footer-links li {
    margin-bottom: 12px;
}

.hjzb-footer-links a {
    color: #cbd5e0;
}

.hjzb-footer-links a:hover {
    color: white;
}

.hjzb-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0aec0;
}

.hjzb-page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 30px;
    text-align: center;
    color: white;
}

.hjzb-page-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hjzb-page-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.hjzb-filter-section {
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 30px;
}

.hjzb-filter-container {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hjzb-filter-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.hjzb-filter-group:last-child {
    margin-bottom: 0;
}

.hjzb-filter-label {
    font-weight: bold;
    color: #2d3748;
    margin-right: 20px;
    min-width: 60px;
}

.hjzb-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hjzb-filter-tags button {
    padding: 8px 20px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #4a5568;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.hjzb-filter-tags button:hover,
.hjzb-tag-active {
    background: #667eea !important;
    color: white !important;
    border-color: #667eea !important;
}

.hjzb-anime-list-section {
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 30px;
}

.hjzb-anime-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.hjzb-anime-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjzb-anime-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hjzb-item-poster {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.hjzb-item-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hjzb-anime-item:hover .hjzb-item-overlay {
    opacity: 1;
}

.hjzb-play-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.hjzb-play-btn:hover {
    transform: scale(1.1);
}

.hjzb-episode-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
}

.hjzb-item-info {
    padding: 20px;
}

.hjzb-item-info h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 8px;
}

.hjzb-item-tags {
    color: #718096;
    font-size: 13px;
    margin-bottom: 10px;
}

.hjzb-item-rating {
    color: #f5576c;
    font-weight: bold;
    font-size: 14px;
}

.hjzb-schedule-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 50px 30px;
    background: white;
    border-radius: 15px;
}

.hjzb-schedule-title {
    text-align: center;
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 40px;
}

.hjzb-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.hjzb-day-schedule {
    padding: 25px;
    background: #f7fafc;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.hjzb-day-schedule h3 {
    font-size: 20px;
    color: #667eea;
    margin-bottom: 15px;
}

.hjzb-day-schedule ul {
    list-style: none;
}

.hjzb-day-schedule li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.hjzb-day-schedule li:last-child {
    border-bottom: none;
}

.hjzb-day-schedule li em {
    color: #718096;
    font-style: normal;
    font-size: 14px;
}

.hjzb-manga-banner-section {
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 30px;
}

.hjzb-manga-banner {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.hjzb-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjzb-banner-text {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.hjzb-banner-text h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hjzb-banner-text p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hjzb-banner-btn {
    padding: 14px 35px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjzb-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.hjzb-manga-category-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-category-title {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 40px;
    text-align: center;
}

.hjzb-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.hjzb-category-card {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.hjzb-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hjzb-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px;
    transition: all 0.3s ease;
}

.hjzb-category-card:hover img {
    transform: scale(1.1);
}

.hjzb-category-card:hover .hjzb-category-overlay {
    background: linear-gradient(to top, rgba(102,126,234,0.9), rgba(118,75,162,0.7));
}

.hjzb-category-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.hjzb-category-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.hjzb-manga-list-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-list-title {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 40px;
}

.hjzb-manga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.hjzb-manga-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hjzb-manga-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.hjzb-manga-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hjzb-manga-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjzb-manga-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #48bb78;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
}

.hjzb-manga-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hjzb-manga-info h3 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 12px;
}

.hjzb-manga-desc {
    color: #718096;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}

.hjzb-manga-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
    font-size: 13px;
}

.hjzb-manga-rating {
    color: #f5576c;
    font-weight: bold;
}

.hjzb-reading-features {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
}

.hjzb-features-title {
    text-align: center;
    font-size: 38px;
    color: white;
    margin-bottom: 50px;
}

.hjzb-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.hjzb-feature-item {
    text-align: center;
    color: white;
}

.hjzb-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.hjzb-feature-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.hjzb-feature-item p {
    opacity: 0.9;
    line-height: 1.7;
}

.hjzb-cosplay-featured {
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 30px;
}

.hjzb-cosplay-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 700px;
}

.hjzb-cosplay-item-large {
    grid-row: 1 / 3;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.hjzb-cosplay-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.hjzb-cosplay-item-large img,
.hjzb-cosplay-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hjzb-cosplay-item-large:hover img,
.hjzb-cosplay-item:hover img {
    transform: scale(1.1);
}

.hjzb-cosplay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 30px;
}

.hjzb-cosplay-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.hjzb-cosplay-info p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.hjzb-cosplay-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.hjzb-cosplay-grid-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-cosplay-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.hjzb-cos-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.hjzb-cos-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hjzb-cos-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.hjzb-cos-card:hover .hjzb-cos-overlay {
    transform: translateY(0);
}

.hjzb-cos-card:hover img {
    transform: scale(1.1);
}

.hjzb-cos-overlay h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.hjzb-tutorial-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hjzb-tutorial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hjzb-tutorial-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hjzb-tutorial-content {
    padding: 25px;
}

.hjzb-tutorial-content h3 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 12px;
}

.hjzb-tutorial-content p {
    color: #718096;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hjzb-tutorial-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.hjzb-tutorial-btn:hover {
    transform: translateY(-2px);
}

.hjzb-event-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-event-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hjzb-event-card {
    display: flex;
    gap: 30px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjzb-event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.hjzb-event-date {
    text-align: center;
    min-width: 80px;
}

.hjzb-event-day {
    display: block;
    font-size: 42px;
    font-weight: bold;
    color: #667eea;
    line-height: 1;
}

.hjzb-event-month {
    display: block;
    font-size: 16px;
    color: #718096;
    text-transform: uppercase;
}

.hjzb-event-details h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 10px;
}

.hjzb-event-details p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 8px;
}

.hjzb-boards-container {
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hjzb-board-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.hjzb-board-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.hjzb-board-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.hjzb-board-card h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 15px;
}

.hjzb-board-card p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hjzb-board-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    color: #a0aec0;
    font-size: 14px;
}

.hjzb-board-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.hjzb-board-btn:hover {
    transform: scale(1.05);
}

.hjzb-hot-topics {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-topics-list {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hjzb-topic-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 35px;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s ease;
}

.hjzb-topic-item:last-child {
    border-bottom: none;
}

.hjzb-topic-item:hover {
    background: #f7fafc;
}

.hjzb-topic-rank {
    font-size: 28px;
    font-weight: bold;
    color: #667eea;
    min-width: 40px;
}

.hjzb-topic-content {
    flex: 1;
}

.hjzb-topic-content h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 8px;
    cursor: pointer;
}

.hjzb-topic-content h3:hover {
    color: #667eea;
}

.hjzb-topic-meta {
    display: flex;
    gap: 20px;
    color: #a0aec0;
    font-size: 13px;
}

.hjzb-topic-hot {
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.hjzb-user-showcase {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.hjzb-creator-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjzb-creator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.hjzb-creator-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid #667eea;
}

.hjzb-creator-card h3 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 5px;
}

.hjzb-creator-title {
    color: #718096;
    font-size: 14px;
    margin-bottom: 20px;
}

.hjzb-creator-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
}

.hjzb-creator-stats div {
    text-align: center;
}

.hjzb-creator-stats strong {
    display: block;
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 5px;
}

.hjzb-creator-stats span {
    color: #a0aec0;
    font-size: 13px;
}

.hjzb-follow-btn {
    padding: 10px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.hjzb-follow-btn:hover {
    transform: scale(1.05);
}

.hjzb-community-rules {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 30px;
    background: white;
    border-radius: 20px;
}

.hjzb-rules-content {
    max-width: 900px;
    margin: 0 auto;
}

.hjzb-rule-item {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.hjzb-rule-number {
    font-size: 48px;
    font-weight: bold;
    color: #667eea;
    opacity: 0.3;
    min-width: 80px;
}

.hjzb-rule-text h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 10px;
}

.hjzb-rule-text p {
    color: #718096;
    line-height: 1.8;
}

.hjzb-live-highlight {
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 30px;
}

.hjzb-main-live {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.hjzb-live-player {
    position: relative;
    height: 600px;
}

.hjzb-player-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjzb-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hjzb-live-badge-large {
    background: #e53e3e;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.hjzb-play-large {
    padding: 18px 50px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 35px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjzb-play-large:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hjzb-live-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.hjzb-live-details h2 {
    font-size: 26px;
    color: #2d3748;
    margin-bottom: 25px;
    line-height: 1.4;
}

.hjzb-live-host {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.hjzb-host-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.hjzb-host-info h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 5px;
}

.hjzb-host-info p {
    color: #718096;
    font-size: 14px;
}

.hjzb-live-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: #4a5568;
}

.hjzb-live-description {
    flex: 1;
}

.hjzb-live-description h4 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 12px;
}

.hjzb-live-description p {
    color: #718096;
    line-height: 1.8;
}

.hjzb-live-rooms {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.hjzb-room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjzb-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hjzb-room-preview {
    position: relative;
    height: 180px;
}

.hjzb-room-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjzb-room-info {
    padding: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hjzb-mini-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.hjzb-room-info h3 {
    font-size: 16px;
    color: #2d3748;
    margin-bottom: 5px;
}

.hjzb-room-info p {
    color: #718096;
    font-size: 13px;
}

.hjzb-schedule-overview {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-schedule-timeline {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hjzb-schedule-item {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 2px solid #e2e8f0;
}

.hjzb-schedule-item:last-child {
    border-bottom: none;
}

.hjzb-schedule-time {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    min-width: 100px;
}

.hjzb-schedule-content h3 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 8px;
}

.hjzb-schedule-content p {
    color: #718096;
    line-height: 1.7;
}

.hjzb-interaction-guide {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
}

.hjzb-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.hjzb-guide-card {
    text-align: center;
    color: white;
}

.hjzb-guide-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.hjzb-guide-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.hjzb-guide-card p {
    opacity: 0.95;
    line-height: 1.7;
}

.hjzb-about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 30px;
    text-align: center;
    color: white;
}

.hjzb-about-hero-content h2 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hjzb-about-hero-content p {
    font-size: 22px;
    opacity: 0.95;
}

.hjzb-company-intro {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-intro-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hjzb-intro-text h2 {
    font-size: 38px;
    color: #2d3748;
    margin-bottom: 25px;
}

.hjzb-intro-text p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.hjzb-intro-image img {
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.hjzb-mission-vision {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hjzb-mv-card {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #667eea;
}

.hjzb-mv-card h3 {
    font-size: 26px;
    color: #2d3748;
    margin-bottom: 18px;
}

.hjzb-mv-card p {
    color: #718096;
    line-height: 1.9;
}

.hjzb-milestones {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 30px;
    background: white;
    border-radius: 20px;
}

.hjzb-timeline {
    position: relative;
    padding: 40px 0;
}

.hjzb-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.hjzb-timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.hjzb-timeline-item:nth-child(even) .hjzb-timeline-year {
    order: 3;
}

.hjzb-timeline-item:nth-child(even) .hjzb-timeline-content {
    order: 1;
    text-align: right;
}

.hjzb-timeline-year {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px white, 0 0 0 13px #667eea;
    position: relative;
    z-index: 1;
}

.hjzb-timeline-content h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 10px;
}

.hjzb-timeline-content p {
    color: #718096;
    line-height: 1.7;
}

.hjzb-team-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.hjzb-team-member {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjzb-team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.hjzb-team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 5px solid #f7fafc;
}

.hjzb-team-member h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 8px;
}

.hjzb-member-role {
    color: #667eea;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 12px;
}

.hjzb-member-desc {
    color: #718096;
    font-size: 14px;
    line-height: 1.7;
}

.hjzb-contact-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.hjzb-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.hjzb-contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hjzb-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.hjzb-contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.hjzb-contact-card h3 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 15px;
}

.hjzb-contact-card p {
    color: #667eea;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.hjzb-contact-note {
    color: #a0aec0 !important;
    font-size: 13px !important;
    font-weight: normal !important;
}

.hjzb-join-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.hjzb-join-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hjzb-positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.hjzb-position-card {
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hjzb-position-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.hjzb-position-card p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
}

.hjzb-join-email {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.hjzb-partners-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 30px;
    background: white;
    border-radius: 20px;
    text-align: center;
}

.hjzb-partners-intro {
    color: #718096;
    font-size: 16px;
    margin-bottom: 50px;
}

.hjzb-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.hjzb-partner-logo {
    background: #f7fafc;
    padding: 40px 20px;
    border-radius: 10px;
    color: #a0aec0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.hjzb-partner-logo:hover {
    background: #667eea;
    color: white;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .hjzb-hero-content,
    .hjzb-manga-content,
    .hjzb-intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hjzb-main-live {
        grid-template-columns: 1fr;
    }

    .hjzb-live-player {
        height: 400px;
    }

    .hjzb-cosplay-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .hjzb-cosplay-item-large {
        grid-row: auto;
        height: 400px;
    }

    .hjzb-cosplay-item {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hjzb-nav-menu {
        gap: 15px;
        font-size: 14px;
    }

    .hjzb-hero-title {
        font-size: 36px;
    }

    .hjzb-hero-desc {
        font-size: 16px;
    }

    .hjzb-section-title {
        font-size: 32px;
    }

    .hjzb-page-title {
        font-size: 36px;
    }

    .hjzb-manga-content {
        padding: 40px;
    }

    .hjzb-event-card {
        flex-direction: column;
        text-align: center;
    }

    .hjzb-timeline::before {
        left: 20px;
    }

    .hjzb-timeline-item {
        grid-template-columns: auto 1fr;
        padding-left: 60px;
    }

    .hjzb-timeline-year {
        order: 1 !important;
        grid-column: 1;
    }

    .hjzb-timeline-content {
        order: 2 !important;
        grid-column: 2;
        text-align: left !important;
    }
}