.header-account-link,
.header-logout-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    padding: 7px 20px 9px !important; /* Asymmetrical padding: pushes text physically UP by 1-2px to counter Chinese font baseline weight */
    border-radius: 999px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important; /* Slightly smaller to match menu better */
    line-height: 1 !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, border-color 0.3s ease;
}

/* 主要按钮（我的资料 / 登录/注册）：使用主题中的 Cyber Blue 渐变 */
.header-account-link {
    background: var(--wp--preset--gradient--cyber-blue, linear-gradient(135deg, #2563EB 0%, #06B6D4 100%));
    color: var(--wp--preset--color--base, #ffffff) !important;
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.header-account-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
    filter: brightness(1.1);
}

/* 退出按钮（次要操作）：使用淡色的 Light Grid 渐变以突出主次关系 */
.header-logout-link {
    background: var(--wp--preset--gradient--light-grid, linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%));
    color: var(--wp--preset--color--main, #0F172A) !important;
    border: 1px solid var(--wp--preset--color--border-light, #E2E8F0);
}

.header-logout-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    border-color: var(--wp--preset--color--border-dark, #334155);
}

.header-account-wrap {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    margin: 0 !important;
    gap: 12px;
}