    #message-board {
        background: url('images/hehua.png') center/cover fixed !important;
        padding: 3rem 0;
    }
    
    #tech-process {
        background: url('images/hehua.png') center/cover fixed !important;
    }
    
    #guild-intro {
        background: url('images/hehua.png') center/cover fixed !important;
    }
    
    #personal-intro {
        background: url('images/hehua.png') center/cover fixed !important;
    }
    
    /* 按照"唯心阁的背后"卡片框的透明度参数调整 */
    .recruitment-card {
        background: rgba(245, 245, 220, 0.85) !important;
        max-width: 900px;
        margin: 0 auto;
        padding: 1.5rem;
        min-height: auto;
        width: 90%;
        max-width: 850px;
    }
    
    /* 调整留言板表单透明度 */
    #message-form {
        background: rgba(245, 245, 220, 0.9);
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    /* 调整状态消息透明度 */
    #status-message {
        border: 1px solid #ddd;
        background: rgba(245, 245, 220, 0.95);
        margin-bottom: 1rem;
        padding: 0.75rem;
        border-radius: 6px;
        display: none;
    }
    
    #status-text {
        text-align: center;
        margin: 0;
        font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    }
    
    /* 调整攻略板块卡片透明度 */
    .bamboo-scroll {
        background-color: rgba(240, 230, 210, 0.85) !important;
    }
    
    /* 管理员入口样式 */
    #admin-entry {
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        background-color: #D4AF37 !important;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    #admin-entry:hover {
        background-color: #C09A26;
    }
    
    /* 表单元素样式优化 */
    #message-form label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: bold;
        font-size: 1.3rem;
        color: #333;
        font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    }
    
    #message-form input[type="text"] {
        width: 50%;
        padding: 0.9rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
        box-sizing: border-box;
        max-width: 400px;
        font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    }
    
    /* 表单容器居中对齐 */
    #message-form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #message-form > div {
        width: 100%;
        max-width: 700px;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    /* 响应式调整 */
    @media (max-width: 768px) {
        #message-form input[type="text"] {
            width: 80%;
            max-width: 100%;
        }
        
        #message-form > div {
            max-width: 90%;
        }
        
        #message-form textarea {
            max-width: 100%;
        }
    }
    
    @media (max-width: 480px) {
        #message-form input[type="text"] {
            width: 100%;
        }
    }
    
    #message-form textarea {
        width: 100%;
        max-width: 700px;
        padding: 0.9rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 1.2rem;
        font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
        resize: vertical;
        min-height: 180px;
        max-height: 300px;
        margin-bottom: 0.75rem;
        box-sizing: border-box;
    }
    
    #char-count {
        font-size: 1.1rem;
        color: #666;
        font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    }
    
    #message-form button[type="submit"] {
        display: block;
        margin: 1.5rem auto 0;
        background-color: #D4AF37 !important;
        color: white;
        padding: 0.9rem 2.2rem;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1.3rem;
        font-family: 'Ma Shan Zheng', cursive;
        font-weight: bold;
        transition: all 0.3s ease;
    }
    
    #message-form button:hover {
        background-color: #C09A26;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    #message-form input:focus,
    #message-form textarea:focus {
        outline: none;
        border-color: #D4AF37 !important;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    }
    
    /* 留言板滚动条美化 */
    #message-list::-webkit-scrollbar {
        width: 8px;
    }
    
    #message-list::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 4px;
    }
    
    #message-list::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom, #D4AF37, #B8960C);
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    #message-list::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to bottom, #E6C750, #D4AF37);
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        #message-board {
            padding: 2rem 0;
        }
        
        .recruitment-card {
            width: 95%;
            padding: 1rem;
        }
        
        /* 留言板表单响应式 */
        #message-form {
            grid-template-columns: 1fr !important;
        }
        
        #message-form > div[style*="grid-template-columns: 150px"] {
            grid-template-columns: 1fr !important;
        }
        
        #message-form label[style*="text-align: right"] {
            text-align: left !important;
            padding-top: 0 !important;
        }
        
        /* 媒体上传区响应式 */
        #message-form > div[style*="flex-wrap: wrap"] > div[style*="min-width: 200px"] {
            min-width: 100% !important;
        }
        
        #message-form > div[style*="flex-wrap: wrap"] > div[style*="width: 2px"] {
            display: none !important;
        }
        
        #message-form input[type="text"] {
            padding: 0.6rem;
        }
        
        #message-form textarea {
            min-height: 100px;
            padding: 0.6rem;
        }
        
        #message-form button[type="submit"] {
            padding: 0.7rem 2rem;
            font-size: 1rem;
            width: 100%;
        }
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
        .recruitment-card {
            max-width: 750px;
        }
    }
    
    @media (min-width: 1025px) {
        .recruitment-card {
            max-width: 850px;
        }
    }
    
    /* 催更按钮样式 */
    #update-btn {
        background-color: #9E2A2B;
        color: white;
        padding: 0.75rem 2rem;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1.1rem;
        font-family: 'Ma Shan Zheng', cursive;
        font-weight: bold;
        transition: all 0.3s ease;
        position: relative;
        z-index: 10;
    }
    
    #update-btn:hover {
        background-color: #8A1F20;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    /* 模态框样式 - 与index.html保持一致 */
    .modal {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0);
        backdrop-filter: blur(0px);
        opacity: 0;
        pointer-events: none;
        transition: background-color 0.3s ease, backdrop-filter 0.3s ease, opacity 0.3s ease;
    }
    
    .modal.show {
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        opacity: 1;
        pointer-events: auto;
    }
    
    .modal-content {
        background: linear-gradient(135deg, rgba(245, 245, 220, 0.95), rgba(47, 79, 79, 0.1));
        border: 3px solid var(--gold);
        border-radius: 18px;
        padding: 3rem;
        text-align: center;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3),
                    0 0 20px rgba(212, 175, 55, 0.5);
        position: relative;
        max-width: 600px;
        width: 90%;
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
        transition: opacity 0.3s ease, transform 0.3s ease;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        direction: ltr !important;
    }
    
    .modal.show .modal-content {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    
    .close-modal {
        color: var(--gold);
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        position: absolute;
        top: 10px;
        right: 20px;
        transition: all 0.3s ease;
    }
    
    .close-modal:hover {
        color: var(--cinnabar-red);
        transform: scale(1.2);
    }
    
    .modal-content h3 {
        font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
        font-size: 2.2rem;
        color: var(--gold);
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .modal-content p {
        font-size: 1.8rem;
        color: var(--gold);
        font-weight: bold;
        text-shadow:
            0 0 10px rgba(158, 42, 43, 0.8),
            1px 1px 2px rgba(0, 0, 0, 0.9),
            0 0 20px rgba(212, 175, 55, 0.6),
            0 0 30px rgba(212, 175, 55, 0.3);
        font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .modal-content {
            padding: 1.5rem;
            width: 95%;
        }
        
        .modal-content h3 {
            font-size: 1.5rem;
        }
        
        .modal-content p {
            font-size: 1rem;
        }
    }

/* ========================================
   飞鸽传书弹窗 V2 - 重设计版
   ======================================== */
.urge-modal-v2 {
    padding: 0 !important;
    max-width: 440px !important;
    width: 92% !important;
    border: none !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: #fffdf8 !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.2) !important;
}
.urge-v2-header {
    background: linear-gradient(135deg, #9E2A2B 0%, #B83A3B 40%, #D4AF37 100%);
    padding: 28px 24px 22px;
    text-align: center;
    position: relative;
}
.urge-v2-icon {
    font-size: 36px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    animation: urgeFloat 3s ease-in-out infinite;
}
@keyframes urgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.urge-v2-title {
    font-family: 'Ma Shan Zheng', cursive;
    color: #FFF5D4 !important;
    font-size: 1.6rem;
    margin: 0;
    letter-spacing: 3px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3), 0 0 12px rgba(212,175,55,0.3);
}
.urge-v2-subtitle {
    font-family: 'Ma Shan Zheng', cursive;
    color: rgba(255,245,212,0.8);
    font-size: 0.95rem;
    margin: 8px 0 0;
    font-weight: normal;
    letter-spacing: 1px;
}
.urge-v2-body {
    padding: 24px 28px 28px;
}
.urge-v2-textarea {
    width: 100%;
    box-sizing: border-box;
    min-height: 110px;
    padding: 14px 16px;
    border: 1.5px solid rgba(212,175,55,0.35);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    resize: vertical;
    background: #fff;
    color: #3E2C00;
    outline: none;
    transition: all 0.3s ease;
    line-height: 1.6;
}
.urge-v2-textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12), inset 0 1px 4px rgba(212,175,55,0.08);
}
.urge-v2-textarea::placeholder {
    color: #bba87a;
    font-style: italic;
}
.urge-v2-counter {
    text-align: right;
    margin-top: 6px;
    font-size: 0.82rem;
    font-family: 'Ma Shan Zheng', cursive;
    color: #D4AF37;
}
.urge-v2-counter-sep {
    color: #D4AF37;
    margin: 0 2px;
}
.urge-v2-counter-max {
    color: #9E2A2B;
    font-weight: bold;
}
.urge-v2-btn {
    width: 100%;
    margin-top: 16px;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #9E2A2B, #C0392B);
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Ma Shan Zheng', cursive;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(158,42,43,0.3);
}
.urge-v2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(158,42,43,0.4);
    background: linear-gradient(135deg, #B83A3B, #D44040);
}
.urge-v2-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(158,42,43,0.3);
}
@media (max-width: 480px) {
    .urge-modal-v2 { width: 96% !important; }
    .urge-v2-body { padding: 18px 20px 22px; }
    .urge-v2-header { padding: 22px 18px 18px; }
}

/* 密码眼睛切换 */
.pwd-eye-wrapper { position: relative; }
.pwd-eye-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #B8A080;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.2s;
    user-select: none;
}
.pwd-eye-toggle:hover { color: #9E2A2B; background: rgba(158,42,43,0.08); }
.pwd-eye-toggle.active { color: #9E2A2B; }
.pwd-eye-toggle svg { pointer-events: none; }
