/* 91网美剧 - 杂志博客风格 | 全新设计：红黑金配色+不对称布局+时间线元素 */

:root {
    --crimson: #dc2626;
    --crimson-dark: #b91c1c;
    --gold: #f59e0b;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

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

body {
    font-family: 'Georgia', serif;
    background: var(--light-gray);
    color: var(--black);
    line-height: 1.8;
}

/* 全宽导航栏 - 左侧logo右侧菜单 */
header-m9x4k {
    background: var(--black);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.header-inner-p7w3j {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.brand-logo-k5n8m a {
    color: var(--gold);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

main-nav-q2x7v {
    display: flex;
    gap: 0;
}

main-nav-q2x7v li a {
    color: var(--white);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

main-nav-q2x7v li a:hover,
main-nav-q2x7v li a.active-z8k4m {
    background: var(--crimson);
    border-bottom-color: var(--gold);
    color: var(--white);
}

/* 全宽英雄区 - 左文右图布局 */
.hero-banner-t6w9n {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-banner-t6w9n::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--crimson);
    opacity: 0.1;
}

.hero-content-r4x8k {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-w7n3p h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-text-w7n3p h1 span {
    color: var(--gold);
}

.hero-text-w7n3p p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button-x5k9m {
    display: inline-block;
    padding: 18px 50px;
    background: var(--crimson);
    color: var(--white);
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 2px solid var(--crimson);
}

.cta-button-x5k9m:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

/* 双栏内容区 - 非对称比例 */
.main-content-y8w4n {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* 杂志风格文章卡片 - 全宽横幅式 */
.featured-article-v5k7x {
    background: var(--white);
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.featured-article-v5k7x:hover {
    transform: translateY(-8px);
}

.article-image-u3m9w {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--crimson), var(--gold));
    position: relative;
}

.article-category-t7x4k {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--crimson);
    color: var(--white);
    padding: 8px 20px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-body-r6n8p {
    padding: 2.5rem;
}

.article-body-r6n8p h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-body-r6n8p h2 a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s;
}

.article-body-r6n8p h2 a:hover {
    color: var(--crimson);
}

.article-meta-q4w7x {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.article-excerpt-p8k3m {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.9;
}

/* 侧边栏 - 粘性定位 */
.sidebar-widget-o5x9n {
    position: sticky;
    top: 100px;
}

.widget-box-n7w4k {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.widget-title-m6k8j {
    font-size: 1.2rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--crimson);
    color: var(--black);
}

.trending-list-l4x7v {
    list-style: none;
}

.trending-list-l4x7v li {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    padding-left: 3rem;
}

.trending-list-l4x7v li::before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    top: 1.2rem;
    font-size: 2rem;
    font-weight: 900;
    color: var(--crimson);
    opacity: 0.3;
}

.trending-list-l4x7v li a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
}

.trending-list-l4x7v li a:hover {
    color: var(--crimson);
}

/* 时间线式栏目 */
.timeline-section-k8x3m {
    background: var(--black);
    color: var(--white);
    padding: 80px 0;
    margin: 60px 0;
}

.timeline-header-j5w7n {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 2rem;
    text-align: center;
}

.timeline-header-j5w7n h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.timeline-header-j5w7n h2 span {
    color: var(--gold);
}

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

.timeline-grid-h6k2m {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.timeline-item-g8w5n {
    border-left: 3px solid var(--crimson);
    padding-left: 2rem;
    position: relative;
}

.timeline-item-g8w5n::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-date-f7x4k {
    color: var(--gold);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.timeline-item-g8w5n h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.timeline-item-g8w5n p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* 页脚 - 三栏式 */
.site-footer-e9w3m {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-inner-d6x8k {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-col-c5w7j h3 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

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

.footer-col-c5w7j ul li {
    margin-bottom: 0.8rem;
}

.footer-col-c5w7j ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col-c5w7j ul li a:hover {
    color: var(--gold);
}

.footer-bottom-b4x6n {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 968px) {
    .hero-content-r4x8k {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text-w7n3p h1 {
        font-size: 2.5rem;
    }

    .main-content-y8w4n {
        grid-template-columns: 1fr;
    }

    .timeline-grid-h6k2m {
        grid-template-columns: 1fr;
    }

    .footer-inner-d6x8k {
        grid-template-columns: 1fr;
    }

    main-nav-q2x7v {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    main-nav-q2x7v.active-a8k4m {
        display: flex;
    }
}
