body {
    background-color: #f0f0f0;
    font-family: 'SimSun', 'Songti SC', 'STSong', serif;
    color: #222;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.newspaper {
    max-width: 1000px;
    background-color: #fafafa;
    padding: 20px;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.03), 2px 2px 10px rgba(0,0,0,0.2);
    border: 1px solid #d3d3d3;
}

header {
    border-bottom: 4px double #222;
    margin-bottom: 15px;
    padding-bottom: 10px;
    text-align: center;
}

.header-top, .header-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-family: 'SimHei', 'Heiti SC', sans-serif;
    border-bottom: 1px solid #222;
    padding: 5px 0;
    margin-bottom: 10px;
}

.header-bottom {
    border-bottom: none;
    border-top: 1px solid #222;
    margin-bottom: 0;
    margin-top: 10px;
}

h1.red-star-title {
    font-family: 'Kaiti', 'STKaiti', 'KaiTi_GB2312', serif;
    font-size: 5rem;
    color: #cc0000;
    margin: 10px 0;
    letter-spacing: 2rem;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    border-bottom: 2px solid #222;
    padding-bottom: 20px;
}

h2 {
    font-family: 'SimHei', 'Heiti SC', sans-serif;
    font-size: 1.6rem;
    text-align: center;
    margin-top: 0;
    line-height: 1.3;
}

.lead-story {
    border-right: 1px solid #222;
    padding-right: 20px;
}

.lead-story h2 {
    font-size: 2rem;
    border-bottom: 1px solid #888;
    padding-bottom: 10px;
}

.author {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

p {
    line-height: 1.8;
    text-indent: 2em;
    margin-bottom: 12px;
    font-size: 1rem;
    text-align: justify;
}

.side-stories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-stories article {
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.side-stories article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.side-stories h2 {
    font-size: 1.3rem;
}

.read-more {
    display: block;
    text-align: right;
    font-family: 'Kaiti', 'STKaiti', 'KaiTi_GB2312', serif;
    font-size: 1rem;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    margin-top: 5px;
    transition: all 0.2s ease;
}

.read-more:hover {
    color: #cc0000;
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 15px;
    font-family: 'SimHei', 'Heiti SC', sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    body {
        padding: 5px;
    }

    .newspaper {
        padding: 15px;
    }

    h1.red-star-title {
        font-size: 2.8rem;
        letter-spacing: 0.5rem;
        margin: 5px 0;
    }

    .header-top, .header-bottom {
        font-size: 0.75rem;
        gap: 5px;
    }

    main {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .lead-story {
        border-right: none;
        padding-right: 0;
        border-bottom: 2px solid #222;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .lead-story h2 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
