body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
}
header {
    background: #3a3a3a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
nav {
    background: #222;
    display: flex;
    justify-content: center;
}
nav a {
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    transition: background 0.3s;
}
nav a:hover {
    background: #444;
}
.main {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 30px;
}
#gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}
#gallery img {
    width: 220px;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
#poem-section {
    margin-bottom: 30px;
}
#poem-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}
#poem-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
}
#next-poem {
    background: #3a3a3a;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
#next-poem:hover {
    background: #222;
}
#qa-section {
    margin-top: 30px;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 8px;
}
#qa-section label {
    font-size: 16px;
}
#qa-section input {
    padding: 6px 12px;
    font-size: 16px;
    margin-right: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
#qa-section button {
    background: #3a3a3a;
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
#qa-section button:hover {
    background: #222;
}
#qa-answer {
    margin-top: 12px;
    font-size: 16px;
    color: #2a7a2a;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 16px 0;
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 40px;
    border-radius: 0 0 8px 8px;
}
