.about-section {
    background: var(--light-paper);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px -5px var(--shadow);
    position: relative;
    margin: 3rem 0;
}

.about-section::before {
    content: "醉论";
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 8rem;
    font-family: 'Ma Shan Zheng', cursive;
    color: rgba(139, 0, 0, 0.05);
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--crimson);
    font-family: 'Ma Shan Zheng', cursive;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.about-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.9;
}

.verse {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.3rem;
    line-height: 2;
    color: var(--deep-red);
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 4px;
    font-style: italic;
}

.author-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0;
}

.author-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--highlight);
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--deep-red);
    margin-bottom: 1.5rem;
}

.author-bio {
    text-align: center;
    max-width: 600px;
}

.author-bio h3 {
    font-size: 1.8rem;
    font-family: 'Ma Shan Zheng', cursive;
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.author-bio p {
    font-size: 1.1rem;
    color: var(--ink-light);
    margin-bottom: 1.5rem;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-item {
    padding: 1.2rem;
    background: rgba(139, 0, 0, 0.03);
    border-radius: 4px;
    text-align: center;
}

.about-item h4 {
    color: var(--deep-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.disclaimer-box.prominent {
    background: #ffeeee;
    border: 1px solid var(--deep-red);
    padding: 2rem;
    margin: 4rem 0;
}

.final-note {
    background: #f8f4e6;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 3rem;
    border-left: 4px solid var(--gold);
}

.final-note .verse {
    font-size: 1.4rem;
    margin: 1.5rem 0;
    line-height: 1.8;
}