@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700;900&family=ZCOOL+XiaoWei&display=swap');

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

:root {
    --bg-black: #0d0d0d;
    --bg-card: #1a1a1a;
    --bg-elevated: #222222;
    --gold: #ffca28;
    --gold-light: #ffd75e;
    --gold-dark: #c49a00;
    --red: #d32f2f;
    --red-light: #ef5350;
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
    --border-gold: rgba(255, 202, 40, 0.3);
    --shadow-gold: 0 4px 20px rgba(255, 202, 40, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Serif SC', serif;
    background-color: var(--bg-black);
    color: var(--text-light);
    line-height: 1.8;
    min-height: 100vh;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

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

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

/* ============ HEADER / NAV ============ */
.site-header {
    background: linear-gradient(180deg, #0a0a0a 0%, #121212 100%);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 202, 40, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 22px;
    font-weight: 900;
    color: #0d0d0d;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 22px;
    color: var(--gold);
    letter-spacing: 3px;
}

.logo-text span {
    color: var(--red);
}

.header-meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    gap: 20px;
}

.header-meta span {
    color: var(--gold);
}

.main-nav {
    padding: 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    justify-content: center;
}

.main-nav a {
    display: block;
    padding: 14px 28px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(255, 202, 40, 0.05);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 60%;
}

/* ============ MAGAZINE BANNER ============ */
.magazine-header {
    background: linear-gradient(180deg, #1a0a0a 0%, #0d0d0d 100%);
    padding: 50px 0 40px;
    text-align: center;
    border-bottom: 3px double var(--gold);
    position: relative;
    overflow: hidden;
}

.magazine-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 202, 40, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.magazine-label {
    display: inline-block;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 14px;
    color: var(--red);
    letter-spacing: 8px;
    padding: 6px 20px;
    border: 1px solid var(--red);
    margin-bottom: 20px;
    position: relative;
}

.magazine-title {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 202, 40, 0.3);
    position: relative;
}

.magazine-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-muted);
    letter-spacing: 4px;
    margin-bottom: 25px;
    position: relative;
}

.magazine-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
}

.magazine-meta strong {
    color: var(--gold);
    font-weight: 600;
}

/* ============ SECTION TITLE ============ */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.section-title h2 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--gold);
    letter-spacing: 4px;
    display: inline-block;
    padding: 0 40px;
    position: relative;
}

.section-title h2::before,
.section-title h2::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    font-size: 16px;
}

.section-title h2::before {
    left: 0;
}

.section-title h2::after {
    right: 0;
}

.section-title .en {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 6px;
    margin-top: 5px;
    text-transform: uppercase;
}

/* ============ TIMELINE ============ */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--red) 50%, var(--gold) 100%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 35px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--bg-black);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255, 202, 40, 0.5);
}

.timeline-item:nth-child(odd)::before {
    right: -8px;
}

.timeline-item:nth-child(even)::before {
    left: -8px;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.timeline-time {
    display: inline-block;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 14px;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.timeline-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 10px;
    font-size: 12px;
    background: rgba(211, 47, 47, 0.15);
    color: var(--red);
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: 3px;
}

/* ============ CARD GRID ============ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.5;
}

.card-summary {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
    padding-top: 15px;
    border-top: 1px solid rgba(255, 202, 40, 0.1);
}

.card-meta .views {
    color: var(--gold);
}

.card-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

.card-link:hover {
    color: var(--gold-light);
}

/* ============ FEATURED / EXCLUSIVE ============ */
.featured-article {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.featured-article .article-cover {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

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

.featured-article .article-body {
    padding: 30px 40px 40px;
}

.featured-article .article-category {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 3px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.featured-article h2 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: clamp(24px, 4vw, 36px);
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.4;
}

.featured-article .article-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 202, 40, 0.15);
}

.featured-article .article-text {
    font-size: 16px;
    line-height: 2;
    color: var(--text-light);
}

.featured-article .article-text p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.drop-cap::first-letter {
    font-family: 'ZCOOL XiaoWei', serif;
    float: left;
    font-size: 64px;
    line-height: 0.8;
    padding: 6px 10px 0 0;
    color: var(--gold);
    font-weight: 900;
}

/* ============ CATEGORY NAV ============ */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.category-item:hover {
    border-color: var(--gold);
    background: var(--bg-elevated);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0d0d0d;
}

.category-name {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
}

.category-count {
    color: var(--text-muted);
    font-size: 12px;
}

/* ============ SIDEBAR / HOT LIST ============ */
.hot-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hot-list ol {
    list-style: none;
    counter-reset: hot-counter;
}

.hot-list li {
    counter-increment: hot-counter;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 202, 40, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hot-list li:hover {
    padding-left: 10px;
}

.hot-list li::before {
    content: counter(hot-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-elevated);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    border-radius: 4px;
}

.hot-list li:nth-child(1)::before {
    background: var(--red);
    color: #fff;
}

.hot-list li:nth-child(2)::before {
    background: #e65100;
    color: #fff;
}

.hot-list li:nth-child(3)::before {
    background: var(--gold);
    color: #0d0d0d;
}

.hot-list .hot-title {
    flex: 1;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.hot-list li:hover .hot-title {
    color: var(--gold);
}

.hot-list .hot-date {
    font-size: 13px;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.contact-card .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #0d0d0d;
    margin: 0 auto 20px;
}

.contact-card h3 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-card .contact-value {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    word-break: break-all;
}

.contact-card .contact-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============ ABOUT PAGE ============ */
.about-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-block {
    margin-bottom: 50px;
}

.about-block h3 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--red);
}

.about-block p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 15px;
    text-indent: 2em;
}

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

.team-member {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 32px;
    color: #0d0d0d;
    font-weight: 900;
}

.team-name {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: 700;
}

.team-role {
    font-size: 14px;
    color: var(--red);
    margin-bottom: 10px;
}

.team-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============ FOOTER ============ */
.site-footer {
    background: #080808;
    border-top: 3px double var(--gold);
    margin-top: 60px;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.footer-col h4 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 202, 40, 0.2);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col .social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-col .social a {
    width: 38px;
    height: 38px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-col .social a:hover {
    background: var(--gold);
    color: #0d0d0d;
}

.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 202, 40, 0.15);
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom .copyright {
    color: var(--gold);
    font-weight: 600;
}

/* ============ UTILITIES ============ */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 1px;
}

.badge-gold {
    background: rgba(255, 202, 40, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 202, 40, 0.3);
}

.badge-red {
    background: rgba(211, 47, 47, 0.15);
    color: var(--red);
    border: 1px solid rgba(211, 47, 47, 0.3);
}

.page-banner {
    background: linear-gradient(180deg, #1a0a0a 0%, #0d0d0d 100%);
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 3px double var(--gold);
}

.page-banner h1 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: clamp(32px, 5vw, 52px);
    color: var(--gold);
    letter-spacing: 6px;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 3px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 50px;
        padding-right: 15px;
    }

    .timeline-item::before,
    .timeline-item:nth-child(odd)::before,
    .timeline-item:nth-child(even)::before {
        left: 12px;
        right: auto;
    }

    .main-nav ul {
        flex-wrap: wrap;
    }

    .main-nav a {
        padding: 12px 20px;
        font-size: 14px;
    }

    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .magazine-meta {
        gap: 20px;
    }

    .featured-article .article-body {
        padding: 20px;
    }

    .featured-article .article-cover {
        height: 220px;
    }

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

@media (max-width: 480px) {
    .magazine-title {
        letter-spacing: 4px;
    }

    .main-nav a {
        padding: 10px 15px;
        font-size: 13px;
    }

    .logo-text {
        font-size: 18px;
    }

    .section-title h2 {
        padding: 0 25px;
    }

    .category-item {
        min-width: 120px;
        padding: 20px;
    }
}