.wechat-hidden-container {
    position: relative;
    margin: 20px 0;
}

.wechat-hidden-mask {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wechat-hidden-content {
    color: #fff;
}

.wechat-qrcode {
    margin-bottom: 20px;
}

.wechat-qrcode img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: #fff;
    padding: 10px;
}

.wechat-hint {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
}

.wechat-input-group {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.wechat-password-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.wechat-password-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.wechat-verify-btn {
    padding: 12px 25px;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wechat-verify-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wechat-verify-btn:active {
    transform: translateY(0);
}

.wechat-message {
    margin-top: 15px;
    font-size: 14px;
    min-height: 20px;
}

.wechat-message.success {
    color: #a8ff78;
}

.wechat-message.error {
    color: #ff6b6b;
}

.wechat-hidden-real-content {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    color: #000102;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .wechat-hidden-mask {
        padding: 30px 20px;
    }
    
    .wechat-qrcode img {
        max-width: 150px;
    }
    
    .wechat-hint {
        font-size: 14px;
    }
    
    .wechat-input-group {
        flex-direction: column;
    }
    
    .wechat-verify-btn {
        width: 100%;
    }
}
