/* 蓝奏云下载本地化 · 按钮样式（跟随主题变量，含暗色回退） */
.lz-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin: 6px 0;
    background: var(--card, #ffffff);
    color: var(--ink, #1a1a1a);
    border: 1px solid var(--line, #e6e6e3);
    border-radius: var(--r, 12px);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.lz-dl-btn:hover {
    border-color: var(--ink, #1a1a1a);
    transform: translateY(-1px);
    box-shadow: var(--shadow-h, 0 8px 22px rgba(0, 0, 0, .10));
}
.lz-dl-btn:active {
    transform: translateY(0);
}
.lz-dl-btn svg {
    width: 18px;
    height: 18px;
    flex: none;
    stroke: currentColor;
}
.lz-dl-btn span {
    white-space: nowrap;
}
