/* 文字样式 */
.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.text-container {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 80px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 20px;
}

.gradient-title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
}

.poem {
    color: rgba(0, 128, 128, 0.9);
    font-size: 1.3rem;
    line-height: 2.2;
    font-weight: 500;
}

.poem p {
    margin: 15px 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .text-container {
        padding: 40px 30px;
    }
    
    .gradient-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .poem {
        font-size: 1rem;
    }
}