        .container {
            width: auto; /* 随视口宽度自适应 */
            max-width: 700px; /* 最大宽度，防止过宽 */
            min-width: 100px; /* 最小宽度，保证可读性 */
            padding: 20px;
            text-align: center; /* 内容居中 */
            margin-left: 300px;
            padding: 50px 40px;
            position: relative;
            background-size: cover;
            color: #2c1f13;
            font-family: 'Liu Jian Mao Cao', cursive; /* 使用刘建毛草体 */
            min-height: 100vh;
            justify-content: center;
            align-items: center;
        }

        /* 背景遮罩 */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(10, 10, 30, 0.6), rgba(20, 20, 40, 0.7));
            z-index: -2;
        }

        /* 雨滴效果 - 美化版 */
        .rain-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .raindrop {
            position: absolute;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(200, 220, 255, 0.3));
            border-radius: 50% 50% 60% 60%;
            animation: rain linear infinite;
        }

        /* 不同大小的雨滴 */
        .raindrop.small {
            width: 1px;
            height: 15px;
        }
        
        .raindrop.medium {
            width: 1.5px;
            height: 25px;
        }
        
        .raindrop.large {
            width: 2px;
            height: 35px;
        }
        
        /* 雨滴涟漪效果 */
        .ripple {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: ripple 1.5s ease-out infinite;
            opacity: 0;
        }
        
        @keyframes rain {
            0% {
                transform: translateY(-100px) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(100vh) translateX(10px);
                opacity: 0;
            }
        }
        
        @keyframes ripple {
            0% {
                width: 5px;
                height: 5px;
                opacity: 0.7;
            }
            100% {
                width: 50px;
                height: 50px;
                opacity: 0;
            }
        }
        
        .title {
            font-family: 'Liu Jian Mao Cao', cursive; /* 使用刘建毛草体 */
            font-size: 7rem;
            text-align: center;
            margin-bottom: 25px;
            color: #fdfdfd;
            letter-spacing: 8px;
            font-weight: normal;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .author {
            text-align: center;
            font-size: 3.0rem;
            margin-bottom: 50px;
            color: #ffffff;
            font-family: 'Liu Jian Mao Cao', cursive; /* 使用刘建毛草体 */
            letter-spacing: 3px;
            position: relative;
            z-index: 1;
        }
        
        .poem-content {
            font-size: 3.5rem;
            line-height: 2.2;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
            color: #ffffff;
            font-family: 'Liu Jian Mao Cao', cursive; /* 使用刘建毛草体 */
        }
        
        .poem-line {
            margin-bottom: 25px;
            display: block;
        }
        
        .emphasis {
            color: #ffffff;
            font-weight: bold;
        }
        
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #fcfcfc, transparent);
            width: 40%;
            margin: 30px auto;
        }
        
        /* 响应式设计 */
        
        @media (max-width: 768px) {      
            .container {
            max-width: 500px; /* 随视口宽度自适应 */
            text-align: center; /* 内容居中 */
            margin-left: 0px;
            position: relative;
            background-size: cover;
            color: #2c1f13;
            min-height: 100vh;
            justify-content: center;
            align-items: center;
            }
            .poem-content {
            font-size: 3.0rem;
            line-height: 2.2;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            color: #ffffff;
            font-family: 'Liu Jian Mao Cao', cursive; /* 使用刘建毛草体 */
        }
        }



