        :root { --main-bg: #fee440; }
        body { background-color:#333231; margin: 0; font-family: sans-serif; overflow-x: hidden; }
        
        /* 背景层：确保不拦截点击 */
        .bg-anim { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
        
        .container { position: relative; width: 100%; min-height: 10vh; display: flex; flex-direction: column; align-items: center; padding-top: 5px; }
        
        /* 图片包装器 */
        .img-wrapper { 
            position: relative; 
            width: 98%; 
            max-width: 800px; 
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
    
        #main-img {
            display: block;
            border-radius: 8px;
                width: 100%;
            margin: 0 auto;

        }

        /* 文字面板 */
        .text-box { 
            z-index: 10; 
            background: rgba(0, 0, 0, 0.3); 
            backdrop-filter: blur(10px); 
            -webkit-backdrop-filter: blur(10px);
            color: #fff; 
            padding: 10px 15px; 
            border-radius: 8px; 
            font-size: 13px;
            margin-top: 15px;
            width: 90%;
            max-width: 770px;
        }
        .info-item { margin-bottom: 3px; }
        .footer-tag { font-size: 10px; opacity: 0.6; margin-top: 5px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 5px; }
        
.glass-button {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    
    /* 毛玻璃效果 */
    background: rgb(0 0 0 / 25%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* 边框与阴影 */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

/* 悬停交互 */
.glass-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

/* 激活点击态 */
.glass-button:active {
    transform: translateY(0);
}

/* 按钮内的文字，确保在模糊层之上 */
.glass-button span {
    position: relative;
    z-index: 1;
}